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/2-1/knight.txt | |
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/2-1/knight.txt')
-rw-r--r-- | npc/jobs/2-1/knight.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/jobs/2-1/knight.txt b/npc/jobs/2-1/knight.txt index 7e62d4415..d0308d771 100644 --- a/npc/jobs/2-1/knight.txt +++ b/npc/jobs/2-1/knight.txt @@ -435,7 +435,7 @@ prt_in,88,101,4 script Chivalry Captain#knt 1_M_KNIGHTMASTER,{ mes "Protect the weak and"; mes "live with honor."; next; - getitem 656,7; //Awakening_Potion + getitem Awakening_Potion,7; mes "[Captain Herman]"; mes "Oh..."; mes "We have prepared a small gift to congratulate you on your job change. Please use it when you are in battle as you honorably protect others."; @@ -2032,7 +2032,7 @@ prt_in,87,92,4 script Sir Gray#knt 2_M_SWORDMASTER,{ close; } else { - if ((Zeny > 73999) && (countitem(999) > 0) && (BaseJob == Job_Knight)) { + if ((Zeny > 73999) && (countitem(Steel) > 0) && (BaseJob == Job_Knight)) { mes "[Sir Gray]"; mes "You are ready!"; mes "You must know the"; @@ -2055,9 +2055,9 @@ prt_in,87,92,4 script Sir Gray#knt 2_M_SWORDMASTER,{ mes "a fine ^3355FFClaymore^000000."; mes "You attained a reliable item."; mes "It'll be a good companion on your adventures."; - delitem 999,1; //Steel + delitem Steel,1; Zeny -= 74000; - getitem 1163,1; //Claymore + getitem Claymore,1; close; } mes "[Sir Gray]"; |