diff options
author | mekolat <mekolat@users.noreply.github.com> | 2016-01-07 13:48:00 -0500 |
---|---|---|
committer | mekolat <mekolat@users.noreply.github.com> | 2016-02-08 21:04:29 -0500 |
commit | 5ee9d4a5523a792de751ec547a6f8d11740770e7 (patch) | |
tree | 593970bd6fd0d304b55d7f79acda4f524ef8e70b /world/map/npc/functions/gm_island.txt | |
parent | 401ff146cbd56e214007c1a298194fdef66d5a96 (diff) | |
download | serverdata-5ee9d4a5523a792de751ec547a6f8d11740770e7.tar.gz serverdata-5ee9d4a5523a792de751ec547a6f8d11740770e7.tar.bz2 serverdata-5ee9d4a5523a792de751ec547a6f8d11740770e7.tar.xz serverdata-5ee9d4a5523a792de751ec547a6f8d11740770e7.zip |
add disguise function to gm debug
Diffstat (limited to 'world/map/npc/functions/gm_island.txt')
-rw-r--r-- | world/map/npc/functions/gm_island.txt | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/world/map/npc/functions/gm_island.txt b/world/map/npc/functions/gm_island.txt index 89c0790a..1bd7b5e9 100644 --- a/world/map/npc/functions/gm_island.txt +++ b/world/map/npc/functions/gm_island.txt @@ -16,11 +16,12 @@ function|script|GmWarp } function|script|GmDebug { - mes "[Gm Debug]"; + mes "[GM Debug]"; mes "What do you want to do?"; menu - "Start Event.", L_GmStart, - "Stop Event.", L_GmStop; + "Open Event Portals.", L_GmStart, + "Close Event Portals.", L_GmStop, + "Disguise.", L_Disguise; L_GmStart: enablenpc "Gm Event#1"; @@ -33,6 +34,32 @@ L_GmStop: disablenpc "Gm Event#2"; disablenpc "Gm Event#3"; return; + +L_Disguise: + npcaction 9; + mes "[GM Debug - Disguise]"; + mes "The Disguise function allows GMs to disguise themselves as mobs or npcs."; + mes "---"; + mes "Mob IDs: [@@https://www.themanaworld.org/index.php/Monster_Reference|Monster Reference@@]"; + mes "You can either logout or use id ##B0##b to reset."; + mes "---"; + mes "Please input the mob ID:"; + input @disguise_id; + if (@disguise_id < 1000 || @disguise_id > 32767) + goto L_ResetClass; + mes "Your disguise has been changed."; + if (Class <= 5) + set @old_class, Class; + set Class, @disguise_id; + mes ""; + mes "For technical reasons, you are not able to see your own disguise, but other players will see it."; + return; + +L_ResetClass: + mes "Your appearance has been reset."; + set Class, if_then_else(@old_class, @old_class, 1); + callfunc "fixHeadStyles"; + return; } 001-1,49,68,0|script|Gm Event#1|368,0,0 { |