diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-29 10:39:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-29 10:39:01 -0300 |
commit | 2220bc9d33d948db3fe695ff7c4f12cabaf1f3b8 (patch) | |
tree | 695fec0e87dcae2ef1e0ebb94e217101a98029b7 /npc/003-2 | |
parent | b524e1d096ffa8f05c7fea873d7f55eb82e99875 (diff) | |
download | serverdata-2220bc9d33d948db3fe695ff7c4f12cabaf1f3b8.tar.gz serverdata-2220bc9d33d948db3fe695ff7c4f12cabaf1f3b8.tar.bz2 serverdata-2220bc9d33d948db3fe695ff7c4f12cabaf1f3b8.tar.xz serverdata-2220bc9d33d948db3fe695ff7c4f12cabaf1f3b8.zip |
Sanitize quest log [skip ci]
Diffstat (limited to 'npc/003-2')
-rw-r--r-- | npc/003-2/estard.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/003-2/estard.txt b/npc/003-2/estard.txt index 71dab35cc..bedd577c2 100644 --- a/npc/003-2/estard.txt +++ b/npc/003-2/estard.txt @@ -3,7 +3,7 @@ // Jesusalva // Description: // Manages party and guild. -// General_Janus +// General_Guild // 0 - Allows Party Creation // 1 - Allows Guild Creation, Party is already allowed @@ -28,7 +28,7 @@ speech S_FIRST_BLANK_LINE | S_LAST_NEXT, l("You don't have enough money, bring me @@ GP.", .@party_price); } else { Zeny = Zeny - .@party_price; - setq General_Janus, 1; + setq General_Guild, 1; skill NV_BASIC, 7, 0; speech S_FIRST_BLANK_LINE | S_LAST_NEXT, l("Awesome, come back if you ever want to create a larger group!"); @@ -85,15 +85,15 @@ do { // Beta users by-pass check. - if (getskilllv(NV_BASIC) > 6 && !getq(General_Janus)) { - setq General_Janus, 1; + if (getskilllv(NV_BASIC) > 6 && !getq(General_Guild)) { + setq General_Guild, 1; } select l("What service do you offer?"), - rif(!getq(General_Janus), l("I would like to create a party.")), - rif(getq(General_Janus) && getcharid(2) <= 0 && countitem(Emperium) == 0, l("I would like to create a guild.")), - rif(getq(General_Janus) && getcharid(2) > 0, l("I would like to open Guild Storage.")), + rif(!getq(General_Guild), l("I would like to create a party.")), + rif(getq(General_Guild) && getcharid(2) <= 0 && countitem(Emperium) == 0, l("I would like to create a guild.")), + rif(getq(General_Guild) && getcharid(2) > 0, l("I would like to open Guild Storage.")), menuaction(l("Quit")); switch (@menu) |