From 533cb165e0a9b4031f027c1ee193da52f962bdd2 Mon Sep 17 00:00:00 2001 From: mekolat Date: Sat, 18 Apr 2015 11:23:04 -0400 Subject: remove @gm atcommand --- src/map/atcommand.cpp | 22 ---------------------- src/map/chrif.cpp | 51 --------------------------------------------------- 2 files changed, 73 deletions(-) (limited to 'src/map') diff --git a/src/map/atcommand.cpp b/src/map/atcommand.cpp index cd51b70..ad810f5 100644 --- a/src/map/atcommand.cpp +++ b/src/map/atcommand.cpp @@ -1527,25 +1527,6 @@ ATCE atcommand_joblevelup(Session *s, dumb_ptr sd, return ATCE::OKAY; } -static -ATCE atcommand_gm(Session *s, dumb_ptr sd, - ZString message) -{ - if (!message) - return ATCE::USAGE; - - if (pc_isGM(sd)) - { - // a GM can not use this function. only a normal player (become gm is not for gm!) - clif_displaymessage(s, "You already have some GM powers."_s); - return ATCE::PERM; - } - else - chrif_changegm(sd->status_key.account_id, message); - - return ATCE::OKAY; -} - static ATCE atcommand_pvpoff(Session *s, dumb_ptr sd, ZString) @@ -5017,9 +4998,6 @@ Map atcommand_info = {"jlvl"_s, {""_s, 60, atcommand_joblevelup, "Adjust your job level"_s}}, - {"gm"_s, {""_s, - 100, atcommand_gm, - "Receive GM powers"_s}}, {"pvpoff"_s, {""_s, 60, atcommand_pvpoff, "Enable PvP on your map"_s}}, diff --git a/src/map/chrif.cpp b/src/map/chrif.cpp index bf4ae4e..24369ed 100644 --- a/src/map/chrif.cpp +++ b/src/map/chrif.cpp @@ -344,23 +344,6 @@ int chrif_charselectreq(dumb_ptr sd) return 0; } -/*========================================== - * GMに変化要求 - *------------------------------------------ - */ -void chrif_changegm(AccountId id, ZString pass) -{ - if (!char_session) - return; - - if (battle_config.etc_log) - PRINTF("chrif_changegm: account: %d, password: '%s'.\n"_fmt, id, pass); - - Packet_Head<0x2b0a> head_0a; - head_0a.account_id = id; - send_vpacket<0x2b0a, 8, 1>(char_session, head_0a, pass); -} - /*========================================== * Change Email *------------------------------------------ @@ -558,30 +541,6 @@ int chrif_char_ask_name_answer(Session *, const Packet_Fixed<0x2b0f>& fixed) return 0; } -/*========================================== - * End of GM change(@GM) (modified by Yor) - *------------------------------------------ - */ -static -void chrif_changedgm(Session *, const Packet_Fixed<0x2b0b>& fixed) -{ - AccountId acc = fixed.account_id; - GmLevel level = fixed.gm_level; - - dumb_ptr sd = map_id2sd(account_to_block(acc)); - - if (battle_config.etc_log) - PRINTF("chrif_changedgm: account: %d, GM level 0 -> %d.\n"_fmt, acc, - level); - if (sd != nullptr) - { - if (level) - clif_displaymessage(sd->sess, "GM modification success."_s); - else - clif_displaymessage(sd->sess, "Failure of GM modification."_s); - } -} - /*========================================== * 性別変化終了 (modified by Yor) *------------------------------------------ @@ -973,16 +932,6 @@ void chrif_parse(Session *s) chrif_changemapserverack(s, fixed); break; } - case 0x2b0b: - { - Packet_Fixed<0x2b0b> fixed; - rv = recv_fpacket<0x2b0b, 10>(s, fixed); - if (rv != RecvResult::Complete) - break; - - chrif_changedgm(s, fixed); - break; - } case 0x2b0d: { Packet_Fixed<0x2b0d> fixed; -- cgit v1.2.3-70-g09d2