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

Clipper not considered as slave

Raigar Amarthalion

New Member
Joined
Apr 29, 2015
Messages
45
Reaction score
0
I don't know if it is intended or if it is a bug, but you cannot use BindSlave() on a clipper
Instead, your char will bind to the clipper harpoon

I've tryed to get the wheel use skills and to use the first one to bind, but it doesnt works either
I guess it is not possible to do it programatically ?
 
Last edited:
you will have to use doodadobject. Here you have code snippet that worked pre 1.7.

public void grabwheel()
{
List<DoodadObject> doods = getDoodads();
foreach(DoodadObject dood in doods)
{
if(dood.uniqOwnerId ==me.uniqId )
{
if(dood.name == "Steering Wheel")
{

bool check =UseDoodadSkill(13312,dood,0,true,3.5);
Thread.Sleep(1000);

}

}

}

}
 
Back
Top