diff options
Diffstat (limited to 'npc/custom')
-rw-r--r-- | npc/custom/WoE_Setter.txt | 6 | ||||
-rw-r--r-- | npc/custom/eAAC_Scripts/kafraExpress/ke_warp_woe.txt | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/npc/custom/WoE_Setter.txt b/npc/custom/WoE_Setter.txt index 8a842dec7..9fafa0233 100644 --- a/npc/custom/WoE_Setter.txt +++ b/npc/custom/WoE_Setter.txt @@ -120,7 +120,7 @@ L_Reset: mes "Are you sure?"; next; menu "No, what was I thinking",L_No,"Yes I really want to do it",-; - if(agitcheck(0)==1) goto L_WoEOn; + if(agitcheck()) goto L_WoEOn; deletearray $sday[0],200; deletearray $eday[0],200; deletearray $woetime[0],200; @@ -173,14 +173,14 @@ L_StartLoop: // Stop WoE L_End: - if(agitcheck(0)==0) end; + if(!agitcheck()) end; Announce "The War Of Emperium is over!",8; AgitEnd; end; // Start WoE L_Start: - if(agitcheck(0)==1) end; + if(agitcheck()) end; Announce "The War Of Emperium has begun!",8; AgitStart; end; diff --git a/npc/custom/eAAC_Scripts/kafraExpress/ke_warp_woe.txt b/npc/custom/eAAC_Scripts/kafraExpress/ke_warp_woe.txt index 2adce07a0..f9aefbb49 100644 --- a/npc/custom/eAAC_Scripts/kafraExpress/ke_warp_woe.txt +++ b/npc/custom/eAAC_Scripts/kafraExpress/ke_warp_woe.txt @@ -25,7 +25,7 @@ function script F_keWarpWOE { callfunc "F_keIntro", e_srt, "Sorry, these warps are only available to people who belong to a Guild."; return; } - if ($@kewg_checkAgit && agitcheck(0) == 0) { + if ($@kewg_checkAgit && !agitcheck()) { callfunc "F_keIntro", e_srt, "Sorry, these warps are only enabled during the Guild Wars."; return; } |