Procházet zdrojové kódy

Inn now costs 5k at every level

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6526 54d463be-8e91-2dee-dedb-b68131a5f0ec
Playtester před 19 roky
rodič
revize
394fdac7f8
2 změnil soubory, kde provedl 7 přidání a 5 odebrání
  1. 2 0
      npc/Changelog.txt
  2. 5 5
      npc/merchants/inn.txt

+ 2 - 0
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]

+ 5 - 5
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.";