Jump to content
  • 0

3rd class breeder


Question

Posted

Can anyone give me a 3rd class breeder? like warg, mado, gryphon

I already used the search button but i cannot find any.

Hello!!

Or can someone just provide me script that will let you mount, MADO, GRYPHON, DRAGON and if you click the WARG nstead it will mount you it will just give you a Flute?

8 answers to this question

Recommended Posts

Posted (edited)

i dunno why setriding doesn't work with that script.. hmm..

try to use this.. /no1

//===== rAthena Script =======================================
//= Universal Rental NPC
//===== By: ==================================================
//= rAthena Dev Team
//===== Current Version: =====================================
//= 1.3a
//===== Compatible With: =====================================
//= rAthena SVN
//===== Description: =========================================
//= A Free PecoPeco and Falcon Breeder
//===== Additional Comments: =================================
//= 1.1 FIXED checkriding/cart/falcon funcs [Lupus]
//= 1.2 Added Rebirth/Advanced Class support [Mass Zero]
//= 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,124,201,1    script    Universal Rental Npc    726,{
   mes "[universal Rental Npc]";
   mes "Hi, here you can rent Carts, Falcons or Pecopecos.";
   next;
   switch(select("Cart:Falcon:Peco:Warg:Mado")) {
       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 (checkriding() == 0 && getskilllv("KN_RIDING")>0 && Class == 4060 || Class == 4054 || Class == 4066 || Class == 4073) {
               atcommand "@mount";
               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 4: //ward
           if (BaseJob != Job_Archer && BaseClass == Job_Archer && countitem(6124) == 0) {
               getitem 6124,1;
               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 5: // mado
           if (BaseJob != Job_Merchant && BaseClass == Job_Merchant && checkriding() == 0 && getskilllv("NC_MADOLICENCE")>0 && Class == 4064 || Class == 4058) {
               atcommand "@mount";
               close;
           } else {
               mes "[universal Rental Npc]";
               mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill.";
               close;
       }
   }
}

Edited by quesoph
Posted (edited)

//===== rAthena Script =======================================
//= Universal Rental NPC
//===== By: ==================================================
//= rAthena Dev Team
//===== Current Version: =====================================
//= 1.3a
//===== Compatible With: =====================================
//= rAthena SVN
//===== Description: =========================================
//= A Free PecoPeco and Falcon Breeder
//===== Additional Comments: =================================
//= 1.1 FIXED checkriding/cart/falcon funcs [Lupus]
//= 1.2 Added Rebirth/Advanced Class support [Mass Zero]
//= 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,124,201,1	script	Universal Rental Npc	726,{
mes "[universal Rental Npc]";
mes "Hi, here you can rent Carts, Falcons or Pecopecos.";
next;
switch(select("Cart:Falcon:Peco:Warg:Mado")) {
	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;
		}
	case 4: //ward
		if (BaseJob != Job_Archer && BaseClass == Job_Archer && countitem(6124) == 0) {
			getitem 6124,1;
			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 5: // mado
		if (BaseJob != Job_Merchant && BaseClass == Job_Merchant && checkriding() == 0 && getskilllv("NC_MADOLICENCE")>0 && Class == 4064 || Class == 4058) {
			atcommand "@mount";
			close;
		} else {
			mes "[universal Rental Npc]";
			mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill.";
			close;
	}
}
}

Tested no errors found.

Edited by quesoph
Posted

Still doesn't work! I had notice that every time I Mount a MADO or GRYPHON it says "You had mount a mado" but when a DRAGON nothing happens but just a PECOPECO Logo at the right side.

Posted

Hello, I tried this script but when I try to equip a cart it doesn't allow it. Says Please make sure you are the required job and have the required skill. I am a blacksmith with push cart lvl 10. Running rAthena svn r15996

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...