diff options
-rw-r--r-- | db/re/item_db.conf | 2 | ||||
-rw-r--r-- | npc/005-1/ayasha.txt | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 2bac38022..c73bd600e 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -9951,7 +9951,7 @@ item_db: ( Buy: 140000 Sell: 20000 Weight: 1000 - Atk: 100 + Atk: 480 Matk: 25 Def: 0 Range: 1 diff --git a/npc/005-1/ayasha.txt b/npc/005-1/ayasha.txt index a55d3bee7..cb839490d 100644 --- a/npc/005-1/ayasha.txt +++ b/npc/005-1/ayasha.txt @@ -99,10 +99,10 @@ L_Rent: next; mesq l("The children are safe, aren't they...?"); next; - mesq l("I can rent it to you for 500 GP, during 15 minutes. Deal?"); + mesq l("I can rent it to you for 300 GP, during 15 minutes. Deal?"); next; menu - rif(Zeny >= 500 && gettimetick(2) > .RENT_TIME, l("Deal!")), L_DoRent, + rif(Zeny >= 300 && gettimetick(2) > .RENT_TIME, l("Deal!")), L_DoRent, l("Maybe later."), -; close; @@ -110,7 +110,7 @@ L_DoRent: if (gettimetick(2) <= .RENT_TIME) mesq l("Sorry, you was taking too long to decide and I've rented my sword to somebody else."); if (gettimetick(2) <= .RENT_TIME) close; .RENT_TIME=gettimetick(2)+(15*60); - set Zeny, Zeny - 500; + set Zeny, Zeny - 300; // Here must use item ID rentitem 3518, (15*60); mes ""; |