diff options
author | MasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-06 16:01:18 +0000 |
---|---|---|
committer | MasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-06 16:01:18 +0000 |
commit | d629c87627bc9a3148f0fdefb950e91ac6c39a6e (patch) | |
tree | 1977a2955ce243dfe47117dc52ac44334f9975a0 /npc | |
parent | ee469a9a6344ab37516a7435190826a51fcc4176 (diff) | |
download | hercules-d629c87627bc9a3148f0fdefb950e91ac6c39a6e.tar.gz hercules-d629c87627bc9a3148f0fdefb950e91ac6c39a6e.tar.bz2 hercules-d629c87627bc9a3148f0fdefb950e91ac6c39a6e.tar.xz hercules-d629c87627bc9a3148f0fdefb950e91ac6c39a6e.zip |
Added a missing feature to the donation NPC in Lighthalzen.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8655 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/cities/lighthalzen.txt | 17 |
2 files changed, 18 insertions, 1 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 7a7e2d07e..96234856e 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -32,6 +32,8 @@ Playtester Date Added
======
+09/06
+ * Added a missing feature to the donation NPC in Lighthalzen [MasterOfMuppets]
09/05
* More proper Valyrie dialogues [Lupus]
* eAAC Update to the banker. [erKURITA]
diff --git a/npc/cities/lighthalzen.txt b/npc/cities/lighthalzen.txt index 3564084d3..e64d84403 100644 --- a/npc/cities/lighthalzen.txt +++ b/npc/cities/lighthalzen.txt @@ -3,7 +3,7 @@ //===== By: ==================================================
//= erKURITA
//===== Current Version: =====================================
-//= 0.9
+//= 1.0
//===== Compatible With: =====================================
//= eAthena 1.0
//===== Description: =========================================
@@ -18,6 +18,7 @@ //= 0.7 Implemented some more crap NPCs and the second entrance to biolabs [MasterOfMuppets]
//= 0.8 Removed Duplicates [Silent]
//= 0.9 Removed Duplicates [Toms]
+//= 1.0 Added a missing feature to the donation NPC [MasterOfMuppets]
//=============================================================
lighthalzen.gat,198,285,5 script Jiwon 862,{
@@ -626,6 +627,20 @@ s_Sure: mes "donations. I'm glad to see";
mes "that there are still kinda and";
mes "generous people in the world.";
+ if($donatedzeny > 259999)
+ {
+ next;
+ mes "[Lucius]";
+ mes "This should be enough";
+ mes "to send to the Poor Relief";
+ mes "Organization. Please accpet";
+ mes "this small gift as a token of";
+ mes "my gratitude, adventurer. Bless";
+ mes "you, youngster and take care.";
+ getitem 603,1;
+ getitem 12016,1;
+ set $donatedzeny,0;
+ }
close;
s_Much:
|