diff options
author | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-01 14:13:56 +0000 |
---|---|---|
committer | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-01 14:13:56 +0000 |
commit | a22d29d0cb2f6cc74840caa61b812feca5eee590 (patch) | |
tree | ab7868ea55702e65da83e94010056f52a22068da /npc/jobs/2-1/knight.txt | |
parent | 9b89cabf520e19557b7b003ab8160f76027c9242 (diff) | |
download | hercules-a22d29d0cb2f6cc74840caa61b812feca5eee590.tar.gz hercules-a22d29d0cb2f6cc74840caa61b812feca5eee590.tar.bz2 hercules-a22d29d0cb2f6cc74840caa61b812feca5eee590.tar.xz hercules-a22d29d0cb2f6cc74840caa61b812feca5eee590.zip |
- Fixed a bug in Eden Group Quests where a variable was set which was supposed to be converted and give the player certain gears. bugreport:6143
- Fixed an Priest Quest cutin which would result in getting an missing file error of the MvP Mistress Card illustration. bugreport:6144
- Fixed EXP Values in Eden Group Quest Boards 86 - 90 and 91 - 99. Source: http://irowiki.org/wiki/Eden_Group_Leveling_Quests
* 3 Hours cooldown isn't added yet since some testing is needed. bugreport:6110
- Some minor paranthesis fix in Knight Jobchange Quest.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16362 54d463be-8e91-2dee-dedb-b68131a5f0ec
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; } |