What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Summon Dead Horse

Status
Not open for further replies.

czzplnm

Member
Joined
Jun 18, 2012
Messages
88
Reaction score
0
If my horse dies I would like to revive it. How?

if (aCreature.ownerUniqId == me.uniqId)
{
if (!aCreature.isAlive())
{
Log("Should heal my pet");
SetTarget(aCreature);
MoveTo(aCreature);
UsePortal(aCreature);
Thread.Sleep(timerDelay);
}
}

aCreature is my pet I believe. Don't know which method to use.
 
PHP:
if (aCreature.ownerUniqId == me.uniqId)
                    {
                        if (!aCreature.isAlive())
                        {
                            Log("Should heal my pet");
                            SetTarget(aCreature);
                            MoveTo(aCreature);
                            Thread.Sleep(timerDelay);

                            RessurectMount(false);

                            Thread.Sleep(timerDelay);
                             
                        }
                    }

Doesn't work either.
 
RessurectMount()
Resurrects mount. Need to be close to the Stable Keeper. Pet should be summoned, and be dead.

If u need to ressurect by skill - just check skillname and use through UseSkill ();
 
Status
Not open for further replies.
Back
Top