diff options
author | rikimaru17 <rikimaru17@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-19 18:44:05 +0000 |
---|---|---|
committer | rikimaru17 <rikimaru17@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-19 18:44:05 +0000 |
commit | a359f1f247f8614a05874a36417852c30d54c733 (patch) | |
tree | 52121bc87a65ee7b89bdd64fb9f5441f8fdf08dc /npc | |
parent | 03e84de8f771a6aaef956531adbaed28b6f4fce6 (diff) | |
download | hercules-a359f1f247f8614a05874a36417852c30d54c733.tar.gz hercules-a359f1f247f8614a05874a36417852c30d54c733.tar.bz2 hercules-a359f1f247f8614a05874a36417852c30d54c733.tar.xz hercules-a359f1f247f8614a05874a36417852c30d54c733.zip |
Fixed bugreport:6063 in the thana_quest ,because it was giving the wrong exp amount and fixed bugreport:6064 ,where Bone Plate was giving a wrong def amount
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16320 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/quests/thana_quest.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/quests/thana_quest.txt b/npc/quests/thana_quest.txt index ca61941b8..dadc32996 100644 --- a/npc/quests/thana_quest.txt +++ b/npc/quests/thana_quest.txt @@ -606,7 +606,7 @@ tha_t01,140,78,4 script Guide#reward 831,{ mes "2,000 EXP"; next; set .@zeny_tt,(countitem(.@Items[.@i]) * 1000); - set .@exp_tt,(countitem(.@Items[.@i]) * 200); + set .@exp_tt,(countitem(.@Items[.@i]) * 2000); mes "[Liei]"; mes "If you turn in your"; mes countitem(.@Items[.@i])+" "+getitemname(.@Items[.@i])+"s, then"; |