Rental npc

Yume

New member
Messages
42
Points
0
Github
Yume
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;
 
can i share this for you, its Working 100% for me with all jobs, include 3rd Job.

Y7Lv86g.png

Code:
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;}
 
Last edited by a moderator:
Back
Top