diff options
Diffstat (limited to 'npc/custom/eAAC_Scripts')
-rw-r--r-- | npc/custom/eAAC_Scripts/kafraExpress/ke_main.txt | 4 | ||||
-rw-r--r-- | npc/custom/eAAC_Scripts/messageboards.txt | 4 | ||||
-rw-r--r-- | npc/custom/eAAC_Scripts/quest_warper.txt | 8 |
3 files changed, 8 insertions, 8 deletions
diff --git a/npc/custom/eAAC_Scripts/kafraExpress/ke_main.txt b/npc/custom/eAAC_Scripts/kafraExpress/ke_main.txt index 5aa2d3dd4..eb5c3567b 100644 --- a/npc/custom/eAAC_Scripts/kafraExpress/ke_main.txt +++ b/npc/custom/eAAC_Scripts/kafraExpress/ke_main.txt @@ -300,7 +300,7 @@ L_HEAL_ALL: //Function storage: allows access to the storage facility //The sent argument is the displaying image, so we can clear it afterwards. function script F_keStorage { - if(basicskillcheck(0) > 0 && getskilllv(1) < 6) { + if(basicskillcheck() > 0 && getskilllv(1) < 6) { callfunc "F_keIntro", -1, "I am sorry, but you beed basic skill level 6 to use the storage."; return; } @@ -318,7 +318,7 @@ function script F_keStorage { //Function G Storage: Allows access to the Guild Storage function script F_keGuildStorage { - if(basicskillcheck(0) > 0 && getskilllv(1) < 6) { + if(basicskillcheck() > 0 && getskilllv(1) < 6) { callfunc "F_keIntro", -1, "I am sorry, but you beed basic skill level 6 to use the storage."; return; } diff --git a/npc/custom/eAAC_Scripts/messageboards.txt b/npc/custom/eAAC_Scripts/messageboards.txt index 331e42385..3c03289f8 100644 --- a/npc/custom/eAAC_Scripts/messageboards.txt +++ b/npc/custom/eAAC_Scripts/messageboards.txt @@ -326,8 +326,8 @@ mes "Posted By: "+$messageboardpostname$[@tempview]+"."; mes "On: "+$messageboardpostdate$[@tempview]+"."; mes $messageboardpost$[@tempview]+"."; next; -if(($mymessage[@tempview] == 5) && (getgmlevel(99)>0)) menu "Next Message",L_top2,"Delete My Message",L_delmy,"Edit my message",L_editmy,"Delete This message",L_Del; -if((getgmlevel(99)>0)) menu "Next Message",L_top2,"Delete This message",L_Del; +if(($mymessage[@tempview] == 5) && (getgmlevel()>=99)) menu "Next Message",L_top2,"Delete My Message",L_delmy,"Edit my message",L_editmy,"Delete This message",L_Del; +if((getgmlevel()>=99)) menu "Next Message",L_top2,"Delete This message",L_Del; if(($mymessage[@tempview] == 5)) menu "Next Message",L_top2,"Delete My Message",L_delmy,"Edit my message",L_editmy; menu "Next message",L_top2; close; diff --git a/npc/custom/eAAC_Scripts/quest_warper.txt b/npc/custom/eAAC_Scripts/quest_warper.txt index bfd876060..78857c74b 100644 --- a/npc/custom/eAAC_Scripts/quest_warper.txt +++ b/npc/custom/eAAC_Scripts/quest_warper.txt @@ -578,7 +578,7 @@ Zeny_short_SP: L_Storage: next; - if(basicskillcheck(0) > 0 && getskilllv(1) < 6) goto L_StorageJBlow; + if(basicskillcheck() > 0 && getskilllv(1) < 6) goto L_StorageJBlow; set @fee, $QW_S_PRICE; if ($QW_S_PRICE == 60 && BaseJob == Job_Novice) set @fee, 30; if(Zeny<@fee) callsub L_Short_on_zeny,2; @@ -732,9 +732,9 @@ function script QWS_MMarray { set @Mi,0; // That's our loop counter. set @Mj,0; // That's the menu lines counter. //----------------GameMaster-Menu - if (getgmlevel(80)) set @Mmenulist$[@Mj],@pMmenuitems$[@Mi]; - if (getgmlevel(80)) set @Mmenuref[@Mj],@Mi; - if (getgmlevel(80)) set @Mj,@Mj+1; + if (getgmlevel()>=80) set @Mmenulist$[@Mj],@pMmenuitems$[@Mi]; + if (getgmlevel()>=80) set @Mmenuref[@Mj],@Mi; + if (getgmlevel()>=80) set @Mj,@Mj+1; set @Mi,@Mi+1; //----------------Special-Warp callfunc "QWS_TownStamps"; |