diff options
author | wushin <pasekei@gmail.com> | 2015-01-19 09:00:40 -0600 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2015-01-19 09:00:40 -0600 |
commit | 2da537a4341c4851e9c5c99a2487a1a8d370a7e8 (patch) | |
tree | 731886861c32975a53a5c0beeaa32f0d0f6a9712 /world | |
parent | 3d7fd218c50a39c643245d3520e4bbd314e4f3fa (diff) | |
download | serverdata-2da537a4341c4851e9c5c99a2487a1a8d370a7e8.tar.gz serverdata-2da537a4341c4851e9c5c99a2487a1a8d370a7e8.tar.bz2 serverdata-2da537a4341c4851e9c5c99a2487a1a8d370a7e8.tar.xz serverdata-2da537a4341c4851e9c5c99a2487a1a8d370a7e8.zip |
Update Fight Club so GMs can access it
Move Wiki page live
Remove player specific debug
Diffstat (limited to 'world')
-rw-r--r-- | world/map/npc/009-7/rouge.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/world/map/npc/009-7/rouge.txt b/world/map/npc/009-7/rouge.txt index 78491431..dd86679c 100644 --- a/world/map/npc/009-7/rouge.txt +++ b/world/map/npc/009-7/rouge.txt @@ -1,14 +1,13 @@ 009-7.gat,32,45,0|script|Rouge#Duels|181 { -if (getgmlevel() >= 40 && getequipid(equip_head) == 647) goto L_CallDebug; -if (!debug && (strcharinfo(0) == "meko") && (getequipid(equip_head) < 1)) goto L_CallDebug; // allow meko to debug (has no dev cap) +if (getgmlevel() >= 40 && (getequipid(equip_head) == 647 || getequipid(equip_head) == 725)) goto L_CallDebug; goto L_Main; L_CallDebug: mes "You are wearing a dev cap: calling debug menu..."; - mes "For the documentation, @@https://wiki.themanaworld.org/index.php/User:Meko/FightClub/debug|click here@@##0"; + mes "For the documentation, @@https://wiki.themanaworld.org/index.php/FightClub|click here@@##0"; callfunc "fightclub_Debug"; - goto L_Main; + goto L_End; L_Main: set @requests, 0; |