Re: the bots always dynamite but never repair or consruct!! -
13-07-2006
The delivery action doesn't need an entity number. Also it's best to toggle the delivery action on\off in the aiscript when the objective is grabbed or returned.
Here's an example...
action 6 // docs
{
// toggle the deliver action
if_obj_home_false 6
activateAction 7
if_obj_home_true 6
deactivateAction 7
}
|