diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-09-09 20:47:29 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-09-09 20:47:29 +0000 |
commit | d4d501b3e5010950ac3e4521f20ec594e9757aa9 (patch) | |
tree | 0bc141fab99c3dd22d6256e13cae62967d7c316b /npc/merchants | |
parent | 1e720ea4015c89a5661c85a73a8b8381f140f675 (diff) | |
download | hercules-d4d501b3e5010950ac3e4521f20ec594e9757aa9.tar.gz hercules-d4d501b3e5010950ac3e4521f20ec594e9757aa9.tar.bz2 hercules-d4d501b3e5010950ac3e4521f20ec594e9757aa9.tar.xz hercules-d4d501b3e5010950ac3e4521f20ec594e9757aa9.zip |
- Fixed some 'getarg' that were switched in Magazine Dealer Kenny.
- Fixed a situation in Rogue Agent where NPC window doesn't close.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14051 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/merchants')
-rw-r--r-- | npc/merchants/ammo_boxes.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/merchants/ammo_boxes.txt b/npc/merchants/ammo_boxes.txt index 828569b46..5ea85dbea 100644 --- a/npc/merchants/ammo_boxes.txt +++ b/npc/merchants/ammo_boxes.txt @@ -63,14 +63,14 @@ que_ng,187,149,3 script Magazine Dealer Kenny 83,{ function script Func_Casing { mes "[Kenny]"; mes "Now, you can trade"; - mes "500 "+getitemname(getarg(1))+"s"; - mes "and 500 zeny for 1 "+getitemname(getarg(0))+", so make sure"; + mes "500 "+getitemname(getarg(0))+"s"; + mes "and 500 zeny for 1 "+getitemname(getarg(1))+", so make sure"; mes "you have sufficient bullets"; mes "and zeny for this exchange."; next; mes "[Kenny]"; - mes "You can exchange 500 "+getitemname(getarg(1))+"s and 500 zeny"; - mes "with 1 "+getitemname(getarg(0))+"."; + mes "You can exchange 500 "+getitemname(getarg(0))+"s and 500 zeny"; + mes "with 1 "+getitemname(getarg(1))+"."; next; mes "[Kenny]"; mes "Remember that I can't give"; @@ -89,7 +89,7 @@ function script Func_Casing { mes "greater than 50."; close; } - if (countitem(getarg(1)) >= (500*.@amount)) { + if (countitem(getarg(0)) >= (500*.@amount)) { if (Zeny >= (500*.@amount)) { if (checkweight(getarg(1),.@amount) == 0) { mes "[Kenny]"; |