Page 1 of 1
Unsummon Newbie Pet
Posted: Fri Aug 19, 2011 12:56 pm
by gloover
Hey guys,
anyone knows how to unsummon the Newbie Pet.
I've already tried with
Code: Select all
sendMacro("UseItemByName('Newbie Pet Egg');");
and
but nothing of them wanna work.
Rock, please help me again.
thx in advance.
Re: Unsummon Newbie Pet
Posted: Fri Aug 19, 2011 1:53 pm
by rock5
Both of those commands worked for me to summon and return the Newbie Pet.
What happend when you tried those commands?
Re: Unsummon Newbie Pet
Posted: Fri Aug 19, 2011 2:24 pm
by gloover
That is the clue: nothing happens!
I've added this in my waypoint file between 2 waypoints
Code: Select all
<!-- # 1 --><waypoint x="31841" z="3494" y="1">
setSpeed(59.0);
inventory:useItem(207051);
</waypoint>
but without any result.
Re: Unsummon Newbie Pet
Posted: Sat Aug 20, 2011 2:20 am
by lisa
well first thing, are you sure you actually go to waypoint #1, bot goes to closest by default so if you are closer to #2 it will start at #2.
Secondly the newbie pet doesn't usually appear as soon as you log in, So if you are using an autologin next char you will need a delay before trying to get rid of the newbie pet.
I personally use this code
Code: Select all
local pet = player:findNearestNameOrId(113199)
if pet then inventory:useItem(207051); end -- get rid of the annoying newbie pet
Works 100% for me but if you are in a public area it may detect other people's newbie pets.
Re: Unsummon Newbie Pet
Posted: Sun Aug 21, 2011 3:10 am
by gloover
Damn rookie mistake - U've right lisa, the bot has indeed skiped this waypoint from time to time, so I've include your suggestion to unsummon the pet on millers ranch. Now it works fine.
thank you very much.