diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-09 16:14:39 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-09 16:14:39 +0000 |
commit | 78c3ef3eee96f59282e699b3c7da7dad592ab5ea (patch) | |
tree | 2c0315120893e8421c010348602f1c3dcab830d4 | |
parent | 70504b28f2dace735aa48506edca6a8ccf44cf18 (diff) | |
download | hercules-78c3ef3eee96f59282e699b3c7da7dad592ab5ea.tar.gz hercules-78c3ef3eee96f59282e699b3c7da7dad592ab5ea.tar.bz2 hercules-78c3ef3eee96f59282e699b3c7da7dad592ab5ea.tar.xz hercules-78c3ef3eee96f59282e699b3c7da7dad592ab5ea.zip |
Inn now costs 5k at every level
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6526 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/merchants/inn.txt | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 7c38958b3..d9af06bc4 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -27,6 +27,8 @@ Nexon Date Added
======
+05/09
+ * Inn now costs 5k at every level [Playtester]
05/07
* Fixed some grammar errors in Thief Job, Kunai, and others [KillerBox]
* Fixed Sea Otter Quest thanks to nolider [Playtester]
diff --git a/npc/merchants/inn.txt b/npc/merchants/inn.txt index dfc0e7c3c..9d58d5712 100644 --- a/npc/merchants/inn.txt +++ b/npc/merchants/inn.txt @@ -141,11 +141,11 @@ function script F_InnMaid { savepoint getarg(2),getarg(3),getarg(4);
close;
Mrent:
- set @cost,50;
- if(BaseLevel > 15) set @cost,100;
- if(BaseLevel > 30) set @cost,200;
- if(BaseLevel > 50) set @cost,300;
- if(BaseLevel > 75) set @cost,400;
+ set @cost,5000;
+ //if(BaseLevel > 15) set @cost,100;
+ //if(BaseLevel > 30) set @cost,200;
+ //if(BaseLevel > 50) set @cost,300;
+ //if(BaseLevel > 75) set @cost,400;
mes getarg(0);
mes "It will cost " + @cost + " zeny to rent a room for 1 night.";
mes "In the morning your HP and SP will be fully recovered.";
|