Jump to content
  • 0

3rd class breeder


karazu

Question


  • Group:  Members
  • Topic Count:  57
  • Topics Per Day:  0.01
  • Content Count:  374
  • Reputation:   5
  • Joined:  03/09/12
  • Last Seen:  

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?

Link to comment
Share on other sites

8 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  210
  • Reputation:   10
  • Joined:  11/20/11
  • Last Seen:  

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
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  210
  • Reputation:   10
  • Joined:  11/20/11
  • Last Seen:  

//===== 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
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  57
  • Topics Per Day:  0.01
  • Content Count:  374
  • Reputation:   5
  • Joined:  03/09/12
  • Last Seen:  

testing

the scrips is very ok but Iam still having problem with the Rune Knight, it doesn't mount the dragon! however the gryphon is fine!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  57
  • Topics Per Day:  0.01
  • Content Count:  374
  • Reputation:   5
  • Joined:  03/09/12
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  210
  • Reputation:   10
  • Joined:  11/20/11
  • Last Seen:  

i have updated the script above. please try it again. /no1

i have tested it again. and it should work flawlessly.

Edited by quesoph
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  57
  • Topics Per Day:  0.01
  • Content Count:  374
  • Reputation:   5
  • Joined:  03/09/12
  • Last Seen:  

flawlessly work man! thank yo very much for helping!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  210
  • Reputation:   10
  • Joined:  11/20/11
  • Last Seen:  

Glad it worked for you. hehe.. goodluck.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  04/01/12
  • Last Seen:  

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

Link to comment
Share on other sites

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.

×
×
  • Create New...