diff options
Diffstat (limited to 'npc/jobs/2-1/knight.txt')
-rw-r--r-- | npc/jobs/2-1/knight.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/jobs/2-1/knight.txt b/npc/jobs/2-1/knight.txt index 6700dd85f..bd4771e25 100644 --- a/npc/jobs/2-1/knight.txt +++ b/npc/jobs/2-1/knight.txt @@ -2204,7 +2204,7 @@ prt_in,87,92,4 script Sir Gray#knt 119,{ close; } else { - if (Zeny > 73999 && countitem(999) > 0 && BaseJob == Job_Knight) { + if ((Zeny > 73999) && (countitem(999) > 0) && (BaseJob == Job_Knight)) { mes "[Sir Gray]"; mes "You are ready!"; mes "You must know the"; @@ -2228,7 +2228,7 @@ prt_in,87,92,4 script Sir Gray#knt 119,{ mes "You attained a reliable item."; mes "It'll be a good companion on your adventures."; delitem 999,1; //Steel - set zeny,zeny-74000; + set Zeny, Zeny - 74000; getitem 1163,1; //Claymore close; } |