updated cmd_version information
[NeonServV5.git] / src / modules / global.mod / cmd_global_version.c
1 /* cmd_global_version.c - NeonServ v5.6
2  * Copyright (C) 2011-2012  Philipp Kreil (pk910)
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License 
15  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
16  */
17
18 #include "cmd_global.h"
19
20 /*
21 * no args
22 */
23
24 CMD_BIND(global_cmd_version) {
25     reply(textclient, user, "\002NeonServ %s.%d %s\002 (%s), written by pk910", NEONSERV_VERSION, get_patchlevel(), (is_stable_revision() ? "(stable)" : "(dev)"), (is_stable_revision() ? (strcmp(get_revision(), "") ? get_revision() : "-") : get_dev_revision()));
26     reply(textclient, user, "Build (#%s) %s (%s lines, " COMPILER ")", get_compilation(), get_creation(), get_codelines());
27     reply(textclient, user, "NeonServ can be found on: http://dev.pk910.de/NeonServ");
28     //helpers :D
29     reply(textclient, user, "special thanks to:");
30     reply(textclient, user, "  Testing and Ideas:");
31     reply(textclient, user, "    Zer0n, TeaTow, Phil, Stricted");
32     reply(textclient, user, "  Translations:");
33     reply(textclient, user, "    Buschman (de), Zer0n (de), Neon (de), TheFlie (nl), GodsWarriors (pt)");
34     reply(textclient, user, "  Others:");
35     reply(textclient, user, "    Patschi95, DerGrinch, Darkfly, Zer0n, Buschman  (testing and ideas older versions)");
36     reply(textclient, user, "    Buschman, Georg, richard  (translating older versions)");
37     reply(textclient, user, "and all the other users that reported all these nasty bugs :D");
38     reply(textclient, user, "\002If you found a bug or if you have a good idea report it on http://dev.pk910.de/BugTrack\002");
39     
40 }