diff options
Diffstat (limited to 'npc/merchants/renters.txt')
-rw-r--r-- | npc/merchants/renters.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/npc/merchants/renters.txt b/npc/merchants/renters.txt index 8f9410eda..ee9f70952 100644 --- a/npc/merchants/renters.txt +++ b/npc/merchants/renters.txt @@ -1,12 +1,12 @@ //===== Hercules Script ====================================== //= Renters -//===== By: ================================================== +//===== By: ================================================== //= kobra_k88, mod by Lupus -//===== Current Version: ===================================== +//===== Current Version: ===================================== //= 2.2 -//===== Description: ========================================= +//===== Description: ========================================= //= Knight and Crusader Peco Peco Breeders, Falcon Breeder scripts -//===== Additional Comments: ================================= +//===== Additional Comments: ================================= //= Fully working //= Added another Falcon Master into the Hunters Guild [Lupus] //= 1.2: replaced checkoption(x) with checkriding,checkfalcon [Lupus] @@ -22,7 +22,7 @@ //= 2.0 Fixed problems with third classes and new mounts. [Euphy] //= 2.1 Moved some renters to a separate renewal file. [Daegaladh] //= 2.2 Added warg checks. [Euphy] -//============================================================ +//============================================================ // PecoPeco Breeder (for Knights)------------------------------------------- prontera,55,350,5 script Peco Peco Breeder#knt 105,{ @@ -40,7 +40,7 @@ prontera,55,350,5 script Peco Peco Breeder#knt 105,{ next; switch(select("Rent Peco Peco:Cancel")) { case 1: - if (zeny < .@price) { + if (Zeny < .@price) { mes "[Peco Peco Breeder]"; mes "You do not"; mes "have enough zeny."; @@ -68,7 +68,7 @@ prontera,55,350,5 script Peco Peco Breeder#knt 105,{ mes "Please remove your cash mount."; close; } - set zeny,zeny-.@price; + set Zeny, Zeny-.@price; setriding; close; case 2: @@ -104,7 +104,7 @@ prontera,232,318,3 script Peco Peco Breeder#cru 105,{ next; switch(select("Rent a PecoPeco:Quit")) { case 1: - if (zeny < .@price) { + if (Zeny < .@price) { mes "[Peco Peco Breeder]"; mes "You do not"; mes "have enough zeny."; @@ -131,7 +131,7 @@ prontera,232,318,3 script Peco Peco Breeder#cru 105,{ mes "Please remove your cash mount."; close; } - set zeny,zeny-.@price; + set Zeny, Zeny-.@price; setriding; close; case 2: @@ -177,7 +177,7 @@ hu_in01,381,304,5 script Falcon Breeder#hnt 105,{ mes "until you dismiss your warg first!"; close; } - if (zeny < .@price) { + if (Zeny < .@price) { mes "[Falcon Breeder]"; mes "What is this?"; mes "You don't have"; @@ -205,7 +205,7 @@ hu_in01,381,304,5 script Falcon Breeder#hnt 105,{ mes "there, can't you see it?"; close; } - set zeny,zeny-.@price; + set Zeny, Zeny-.@price; setfalcon; close; case 2: @@ -224,4 +224,4 @@ hu_in01,381,304,5 script Falcon Breeder#hnt 105,{ mes "...Heh heh, jealous?"; close; } -} +}
\ No newline at end of file |