summaryrefslogtreecommitdiff
path: root/npc/custom/breeder.txt
diff options
context:
space:
mode:
authorKisuka <Kisuka@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-09-14 18:27:59 +0000
committerKisuka <Kisuka@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-09-14 18:27:59 +0000
commit525cd1232a289562e866eeb4eac8d5772c1d573c (patch)
tree84950d0ce9d3a131aa0dc2cc505b763df3ed59a4 /npc/custom/breeder.txt
parent9a82b154f03e2feb39d166069e3d35cfd7d399d5 (diff)
downloadhercules-525cd1232a289562e866eeb4eac8d5772c1d573c.tar.gz
hercules-525cd1232a289562e866eeb4eac8d5772c1d573c.tar.bz2
hercules-525cd1232a289562e866eeb4eac8d5772c1d573c.tar.xz
hercules-525cd1232a289562e866eeb4eac8d5772c1d573c.zip
- More optimization of custom folder.
- Removed Fredzilla's duping auction script (no need for it since we have official auction system). - Removed 'Temp Gefenia Warper' because we have 'The Sign Quest'. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13213 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/breeder.txt')
-rw-r--r--npc/custom/breeder.txt99
1 files changed, 32 insertions, 67 deletions
diff --git a/npc/custom/breeder.txt b/npc/custom/breeder.txt
index 798d81585..098665054 100644
--- a/npc/custom/breeder.txt
+++ b/npc/custom/breeder.txt
@@ -14,75 +14,40 @@
//= 1.3 Simplified the checks of job [Silentdragon]
//= 1.3a Fixed a Typo Error. [Samuray22]
// -Thanks to ~AnnieRuru~.
+//= 1.4 Optimized Script. No need for 50 million Labels. [Spre]
//============================================================
-
-
-prontera,122,200,1 script Universal Rental Npc 726,{
+
+prontera,124,201,1 script Universal Rental Npc 726,{
mes "[Universal Rental Npc]";
mes "Hi, here you can rent Carts, Falcons or Pecopecos.";
next;
-
-L_Menu:
- menu "Rent a Cart",L_Cart,"Rent a Falcon",L_Falcon,"Rent a Pecopeco",L_Peco,"Quit",L_Quit;
- close;
-
-L_Cart:
- if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice) && checkcart() == 0) goto L_Cart_Ok;
- mes "[Universal Rental Npc]";
- mes "Sorry " + strcharinfo(0) + ", but I only rent carts to people with the Merchant job root, who have enough skills to handle a cart.";
- close;
-
-L_Cart_Ok:
- if(getskilllv("MC_PUSHCART")<1) goto L_Need_Skill;
- setcart;
- goto L_Quit2;
-
-L_Need_Skill:
- mes "[Universal Rental Npc]";
- mes "Sorry you don't have the required skill to rent a cart.";
- close;
-
-L_Falcon:
- if(BaseJob != Job_Archer && BaseClass == Job_Archer && checkfalcon() == 0) goto L_Falc;
- if(getskilllv("HT_FALCON")<1) goto L_Need_Skill2;
-
- mes "[Universal Rental Npc]";
- mes "Sorry " + strcharinfo(0) + ", but I only rent falcons to Hunters and Snipers who the ability to handle 'em.";
- close;
-
-L_Falc:
- setfalcon;
- goto L_Quit2;
-
-L_Need_Skill2:
- mes "[Universal Rental Npc]";
- mes "Sorry you don't have the required skill to own a Falcon.";
- close;
-
-L_Peco:
- if (BaseJob != Job_Swordman && BaseClass == Job_Swordman && checkriding() == 0) goto L_Peco_Ok;
- if(getskilllv("KN_RIDING")<1) goto L_Need_Skill3;
-
- mes "[Universal Rental Npc]";
- mes "Sorry " + strcharinfo(0) + ", but I only rent Pecopecos to Knights and Crusaders who have the ability to handle 'em.";
- close;
-
-L_Peco_Ok:
- setriding;
- goto L_Quit2;
-
-L_Need_Skill3:
- mes "[Universal Rental Npc]";
- mes "Sorry you don't have the required skill to ride a Peco Peco.";
- close;
-
-L_Quit:
- mes "[Universal Rental Npc]";
- mes strcharinfo(0) + ", please come back when you are ready to rent something.";
- close;
-
-L_Quit2:
- mes "[Universal Rental Npc]";
- mes strcharinfo(0) + ", please come again when you want another...";
- close;
+ switch(select("Cart:Falcon:Peco")) {
+ case 1:
+ if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice) && checkcart() == 0 && getskilllv("MC_PUSHCART")>0) {
+ setcart;
+ close;
+ }else{
+ mes "[Universal Rental Npc]";
+ mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill.";
+ close;
+ }
+ case 2:
+ if(BaseJob != Job_Archer && BaseClass == Job_Archer && checkfalcon() == 0 && getskilllv("HT_FALCON")>0) {
+ setfalcon;
+ close;
+ }else{
+ mes "[Universal Rental Npc]";
+ mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill.";
+ close;
+ }
+ case 3:
+ if (BaseJob != Job_Swordman && BaseClass == Job_Swordman && checkriding() == 0 && getskilllv("KN_RIDING")>0) {
+ setriding;
+ close;
+ }else{
+ mes "[Universal Rental Npc]";
+ mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill.";
+ close;
+ }
+ }
} \ No newline at end of file