diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:32:03 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:35 +0100 |
commit | a1d160ead032b63a0f696a34961df9e099154402 (patch) | |
tree | ff5b9b3eca3753c358667c4089fdb093b42bac28 /npc/jobs/novice | |
parent | bfc63570ef3f5c37eab9c84d62a382bd54c66ff4 (diff) | |
download | hercules-a1d160ead032b63a0f696a34961df9e099154402.tar.gz hercules-a1d160ead032b63a0f696a34961df9e099154402.tar.bz2 hercules-a1d160ead032b63a0f696a34961df9e099154402.tar.xz hercules-a1d160ead032b63a0f696a34961df9e099154402.zip |
ItemID to Constant: instances/jobs Folder
Diffstat (limited to 'npc/jobs/novice')
-rw-r--r-- | npc/jobs/novice/supernovice.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/jobs/novice/supernovice.txt b/npc/jobs/novice/supernovice.txt index 449a94f0c..19ed21325 100644 --- a/npc/jobs/novice/supernovice.txt +++ b/npc/jobs/novice/supernovice.txt @@ -54,9 +54,9 @@ aldeba_in,223,167,3 script Tzerero#sn 4_M_SEAMAN,{ mes "...and a master of none."; close; } - if (countitem(938) > 29 && countitem(907) > 29 && SUPNOV_Q == 1) { - delitem 938,30; //Sticky_Mucus - delitem 907,30; //Resin + if (countitem(Sticky_Mucus) > 29 && countitem(Resin) > 29 && SUPNOV_Q == 1) { + delitem Sticky_Mucus,30; + delitem Resin,30; mes "[Tzerero]"; mes "Ah, you've brought the"; mes "items I've requested!"; @@ -77,7 +77,7 @@ aldeba_in,223,167,3 script Tzerero#sn 4_M_SEAMAN,{ next; completequest 6010; callfunc "F_ClearJobVar"; - getitem 2339,1; //G_Strings + getitem G_Strings,1; if (Upper==0) jobchange Job_SuperNovice; if (Upper==2) jobchange Job_Super_Baby; mes "[Tzerero]"; |