diff options
Diffstat (limited to 'npc/001-1/bgmaster.txt')
-rw-r--r-- | npc/001-1/bgmaster.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/npc/001-1/bgmaster.txt b/npc/001-1/bgmaster.txt index dbac830c3..74084dd02 100644 --- a/npc/001-1/bgmaster.txt +++ b/npc/001-1/bgmaster.txt @@ -1,13 +1,13 @@ // TMW2 Scripts. // Author: // Jesusalva - -// Original File +// Description +// Cassia and her lieutenants manages Aeros Battlegrounds 001-1,96,37,0 script Cassia NPC_FEMALE,{ mesn; - if (getgmlevel()) goto L_Control; + if (is_gm()) goto L_Control; if ($@BGMaster1) goto L_Busy; L_Intro: @@ -36,7 +36,7 @@ L_Busy: L_Control: menu l("Introduce"), L_Intro, - rif($@BGMaster1 != 1 && getgmlevel() >= 99,l("Enable BG")), L_On, + rif($@BGMaster1 != 1 && is_gm(),l("Enable BG")), L_On, l("Disable BG"), L_Off; L_On: @@ -56,6 +56,8 @@ L_On: close; L_Off: + delwaitingroom("Lt. Randy"); + delwaitingroom("Lt. Gerry"); disablenpc "Lt. Randy"; disablenpc "Lt. Gerry"; mes "Event disabled."; |