* Fixed a bug in Thanatos Tower Quest, which didn't allow you to get rewards.
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10582 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
711d01a128
commit
e57d54aa00
@ -1,6 +1,7 @@
|
|||||||
Date Added
|
Date Added
|
||||||
======
|
======
|
||||||
2007/05/18
|
2007/05/18
|
||||||
|
* Fixed a bug in Thanatos Tower Quest, which didn't allow you to get rewards. [SinSloth]
|
||||||
* Rev 10569 Kiel Hyre quest update, moved delitems to the proper NPC. [L0ne_W0lf]
|
* Rev 10569 Kiel Hyre quest update, moved delitems to the proper NPC. [L0ne_W0lf]
|
||||||
* Updated Thanatos Tower quest to official. [SinSloth]
|
* Updated Thanatos Tower quest to official. [SinSloth]
|
||||||
- Moved some NPC in proper quest file and updated warps.
|
- Moved some NPC in proper quest file and updated warps.
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
//===== Additional Comments: =================================
|
//===== Additional Comments: =================================
|
||||||
//= 1.0 - First Release [Ishizu-chan]
|
//= 1.0 - First Release [Ishizu-chan]
|
||||||
//= 1.1 - Updated Thanatos Tower Quest to official. [SinSloth]
|
//= 1.1 - Updated Thanatos Tower Quest to official. [SinSloth]
|
||||||
|
//= 1.2 - Fixed a bug where Reward NPC didn't give you Zeny and Exp. [SinSloth]
|
||||||
//============================================================
|
//============================================================
|
||||||
|
|
||||||
hu_fild01,140,163,5 script Tower Keeper 852,3,3,{
|
hu_fild01,140,163,5 script Tower Keeper 852,3,3,{
|
||||||
@ -524,9 +525,9 @@ function script Func_Thana {
|
|||||||
mes ""+ countitem(getarg(0)) * 2000 +" EXP. Thank you,";
|
mes ""+ countitem(getarg(0)) * 2000 +" EXP. Thank you,";
|
||||||
mes "and please keep up";
|
mes "and please keep up";
|
||||||
mes "the good work~";
|
mes "the good work~";
|
||||||
delitem getarg(0),countitem(getarg(0));
|
|
||||||
set Zeny,Zeny + countitem(getarg(0)) * 1000;
|
set Zeny,Zeny + countitem(getarg(0)) * 1000;
|
||||||
set BaseExp,BaseExp + countitem(getarg(0)) * 2000;
|
set BaseExp,BaseExp + countitem(getarg(0)) * 2000;
|
||||||
|
delitem getarg(0),countitem(getarg(0));
|
||||||
close;
|
close;
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user