blacklisted
New Member
- Joined
- Jan 15, 2010
- Messages
- 224
- Reaction score
- 1
I have this method to call my White Wolf Hound pet, However the pet never gets called.
Am I calling the pet correctly? If I change " UseItem(23695); " to " UseItem(8506);" it will eat the food no problems so I guess my logic is working ok, Is there a specific way of calling pets?
Am I calling the pet correctly? If I change " UseItem(23695); " to " UseItem(8506);" it will eat the food no problems so I guess my logic is working ok, Is there a specific way of calling pets?
Code:
[FONT=Consolas]public void CallPet()
{
if(isMounted() == true && skillCooldown("Run!") == 0)
{
UseSkill("Run!");
return;
}
if(!isMounted())
{[/FONT][FONT=Consolas]
[/FONT]
[FONT=Consolas][FONT=Consolas][COLOR=#000000] [FONT=Consolas]//UseItem([/FONT][/COLOR][/FONT][FONT=Consolas][COLOR=#000000][FONT=Consolas]8506);[/FONT][/COLOR][/FONT]
UseItem(23695);
[/FONT][FONT=Consolas] return;
}
}[/FONT]