14 lines
254 B
Plaintext
14 lines
254 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
if (!IsInConversation(OBJECT_SELF) && (d12()<3))
|
||
|
|
||
|
{
|
||
|
object oWheel = GetNearestObjectByTag("ShipWheel");
|
||
|
|
||
|
AssignCommand(OBJECT_SELF,ActionForceMoveToObject(oWheel));
|
||
|
AssignCommand(OBJECT_SELF,ActionInteractObject(oWheel));
|
||
|
}
|
||
|
else return;
|
||
|
}
|