diff options
author | Emistry Haoyan <equinox1991@gmail.com> | 2019-08-26 22:38:08 +0800 |
---|---|---|
committer | Emistry Haoyan <equinox1991@gmail.com> | 2019-08-26 22:38:08 +0800 |
commit | abe63ded30c8ee91c33cd53918edaf83cc1ce3ba (patch) | |
tree | 592aa8191d556ed89a1563170ca411f930e62217 /npc/battleground | |
parent | 307248a5eefca196660c75e06cb6d4d0b84e2c43 (diff) | |
download | hercules-abe63ded30c8ee91c33cd53918edaf83cc1ce3ba.tar.gz hercules-abe63ded30c8ee91c33cd53918edaf83cc1ce3ba.tar.bz2 hercules-abe63ded30c8ee91c33cd53918edaf83cc1ce3ba.tar.xz hercules-abe63ded30c8ee91c33cd53918edaf83cc1ce3ba.zip |
Corrected KVM Logistic Officer item ID
* The npc traded the wrong item to point
Diffstat (limited to 'npc/battleground')
-rw-r--r-- | npc/battleground/kvm/kvm_item_pay.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/battleground/kvm/kvm_item_pay.txt b/npc/battleground/kvm/kvm_item_pay.txt index f9dac0766..e6ef623b5 100644 --- a/npc/battleground/kvm/kvm_item_pay.txt +++ b/npc/battleground/kvm/kvm_item_pay.txt @@ -37,15 +37,15 @@ //========================================================================= bat_room,151,144,3 script KVM Logistic Officer#a 4_M_JOB_KNIGHT2,{ - if (countitem(War_Badge)) { - .@pointstoadd = countitem(War_Badge); - delitem 7773,.@pointstoadd; + if (countitem(KVM_Badge)) { + .@pointstoadd = countitem(KVM_Badge); + delitem KVM_Badge,.@pointstoadd; kvm_point += .@pointstoadd; mes("[Logistics]"); - mesf("Are those %ss I see?", getitemname(7773)); + mesf("Are those %ss I see?", getitemname(KVM_Badge)); mes("We no longer accept that currency,\r" "but I can exchange those for you."); - mesf("So you have %d %ss?", .@pointstoadd, getitemname(7773)); + mesf("So you have %d %ss?", .@pointstoadd, getitemname(KVM_Badge)); mesf("Alright, all set, you now have ^580080%d^000000 KVM Points.", kvm_point); next; } |