frotek Posted June 10, 2012 Posted June 10, 2012 i want to request a all in one one click mount NPC. Quote
Euphy Posted June 10, 2012 Posted June 10, 2012 (edited) This is a great idea, actually... if you don't mind, I'm stealing it for my own scripts. ;3 <header> { if (ismounting()) { message strcharinfo(0),"You must first remove your mount."; close; } else if ((eaclass()&EAJ_THIRDMASK==EAJ_RANGER) && !countitem(6124)) { if (!checkfalcon() && getskilllv(127) && !checkwug()) { if(select(" ~ Falcon: ~ Warg")==1) setfalcon; else getitem 6124,1; } else getitem 6124,1; } else if ((eaclass()&EAJ_THIRDMASK==EAJ_MECHANIC) && !checkcart()) { if (!checkmadogear() && getskilllv(2255)) { if(select(" ~ Cart: ~ Mado")==1) setcart; else setmadogear; } else setcart; } else if (!checkcart() && getskilllv(39)) setcart; else if (!checkfalcon() && getskilllv(127) && !checkwug()) setfalcon; else if (!checkriding() && getskilllv(63)) { if (eaclass()&EAJ_THIRDMASK==EAJ_RUNE_KNIGHT) setdragon; else setriding; } else if (!checkmadogear() && getskilllv(2255)) setmadogear; else { message strcharinfo(0),"You do not meet requirements to rent."; close; } close; } Edited June 10, 2012 by Euphy Added warg check. Quote
Joseph Posted June 10, 2012 Posted June 10, 2012 What if there are 2 types of mount for that particular job? Quote
frotek Posted June 10, 2012 Author Posted June 10, 2012 then an option will pop like "what do you want?" Falcon Warg Quote
frotek Posted June 10, 2012 Author Posted June 10, 2012 This is a great idea, actually... if you don't mind, I'm stealing it for my own scripts. ;3 not at all Euphy but i got errors, Quote
Euphy Posted June 10, 2012 Posted June 10, 2012 ismounting() was added in r15009, which means you're waaay behind in updates~ (remove the line if you don't want to update, but... the other commands probably won't work either, then) Quote
frotek Posted June 10, 2012 Author Posted June 10, 2012 (edited) alright i guess i have to update >.< ismounting() was added in r15009, which means you're waaay behind in updates~ (remove the line if you don't want to update, but... the other commands probably won't work either, then) @Euphy any other solution other that updating? Edited June 10, 2012 by frotek Quote
Euphy Posted June 10, 2012 Posted June 10, 2012 New mounts aren't even working before ~r15000, are they? o.o; Quote
Rabbit Posted June 10, 2012 Posted June 10, 2012 (edited) Thanks ! But hey, i found some uncomfortable thing with that script. If you're in Ranger class, you can use Warg and Falcon as well ! How can i make Ranger class only can pickup 1 Pet instead of getting 2 of them? Say, if you already have Warg, you cannot pick Falcon. Thanks ! Edited June 10, 2012 by Rabbit Quote
Euphy Posted June 10, 2012 Posted June 10, 2012 @Rabbit: Done, thanks! Post above is edited. (I couldn't find a "checkwarg" command when I looked for it, but apparently it's "checkwug", lol...) 1 Quote
frotek Posted June 11, 2012 Author Posted June 11, 2012 @Euphy, i think yes mine is working >.< Quote
Question
frotek
i want to request a all in one one click mount NPC.
11 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.