diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-28 18:53:51 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-28 18:53:51 +0000 |
commit | e4ed82286f5f549101a577b455b7584b6fc20270 (patch) | |
tree | 0c250a30e3aee02bab056b573de750e3634da65d /src/map/atcommand.c | |
parent | f1adeec83d5b250f91001064aad6d9c650414ac9 (diff) | |
download | hercules-e4ed82286f5f549101a577b455b7584b6fc20270.tar.gz hercules-e4ed82286f5f549101a577b455b7584b6fc20270.tar.bz2 hercules-e4ed82286f5f549101a577b455b7584b6fc20270.tar.xz hercules-e4ed82286f5f549101a577b455b7584b6fc20270.zip |
Some more txt/sql login server synchronization:
- removed the option to specify multiple IPs/subnets for 'ladminallowip'
- removed the @gm command and all associated management code
- removed the 'save unknown packets' code
- removed the lengthy TXT ipban code (which was essentially a copy of what's already handled by the socket layer/packet_athena.conf)
- implemented 'start_limited_time' in SQL (expiration for new accounts)
- applied some missing TXT changes from the last update
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12446 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 38de48e57..8cdaab7c1 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -1902,30 +1902,6 @@ int atcommand_help2(const int fd, struct map_session_data* sd, const char* comma } -/*========================================== - * @gm - *------------------------------------------*/ -int atcommand_gm(const int fd, struct map_session_data* sd, const char* command, const char* message) -{ - char password[100]; - nullpo_retr(-1, sd); - - memset(password, '\0', sizeof(password)); - - if (!message || !*message || sscanf(message, "%99[^\n]", password) < 1) { - clif_displaymessage(fd, "Please, enter a password (usage: @gm <password>)."); - return -1; - } - - if (pc_isGM(sd)) { // a GM can not use this function. only a normal player (become gm is not for gm!) - clif_displaymessage(fd, msg_txt(50)); // You already have some GM powers. - return -1; - } else - chrif_changegm(sd->status.account_id, password, strlen(password) + 1); - - return 0; -} - // helper function, used in foreach calls to stop auto-attack timers // parameter: '0' - everyone, 'id' - only those attacking someone with that id static int atcommand_stopattack(struct block_list *bl,va_list ap) @@ -8333,7 +8309,6 @@ AtCommandInfo atcommand_info[] = { { "help", 20, atcommand_help }, { "h2", 20, atcommand_help2 }, { "help2", 20, atcommand_help2 }, - { "gm", 100, atcommand_gm }, { "pvpoff", 40, atcommand_pvpoff }, { "pvpon", 40, atcommand_pvpon }, { "gvgoff", 40, atcommand_gvgoff }, |