summaryrefslogtreecommitdiff
path: root/npc/005-1
diff options
context:
space:
mode:
Diffstat (limited to 'npc/005-1')
-rw-r--r--npc/005-1/ayasha.txt6
1 files changed, 3 insertions, 3 deletions
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 "";