Jump to content
  • 0
Sign in to follow this  
Yume

Rental npc

Question

When I try to use my rental npc to get a peco peco it says you do not meet the requirements... I am job lvl 50 on a knight with the riding skill. Here is the code any ideas?

 
 
} else if (checkmount() != MOUNT_PECO && getskilllv(KN_RIDING)) {
setmount;
} else {
message strcharinfo(0),"You do not meet requirements to rent.";
end;

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0

can i share this for you, its Working 100% for me with all jobs, include 3rd Job.

 

 

Y7Lv86g.png

 

 

prontera,124,201,1	script	Universal Rental NPC	726,{	if (ismounting()) {		message strcharinfo(0),"You must first remove your mount.";		end;	} else if ((eaclass()&EAJ_THIRDMASK==EAJ_RANGER) && !countitem(6124)) {		if (!checkfalcon() && getskilllv("HT_FALCON") && !checkwug()) {			if(select(" ~ Falcon: ~ Warg")==1) setfalcon;			else getitem 6124,1; //Wolf's_Flute		} else getitem 6124,1; //Wolf's_Flute	} else if ((eaclass()&EAJ_THIRDMASK==EAJ_MECHANIC) && !checkcart() && getskilllv("MC_PUSHCART")) {		if (!checkmadogear() && getskilllv("NC_MADOLICENCE")) {			if(select(" ~ Cart: ~ Mado")==1) setcart;			else setmadogear;		} else setcart;	} else if (!checkcart() && getskilllv("MC_PUSHCART")) setcart;	else if (!checkfalcon() && getskilllv("HT_FALCON") && !checkwug()) setfalcon;	else if (!checkriding() && !checkdragon() && getskilllv("KN_RIDING")) {		if (eaclass()&EAJ_THIRDMASK==EAJ_RUNE_KNIGHT) setdragon;		else setriding;	} else if (!checkmadogear() && getskilllv("NC_MADOLICENCE")) setmadogear;	else {		message strcharinfo(0),"You do not meet requirements to rent.";		end;	}	specialeffect2 EF_TEIHIT3;	end;}
Edited by exchisu

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.