10 lines
245 B
Plaintext
10 lines
245 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oChair = GetObjectByTag("Vorbas_sit");
|
||
|
object oNPC = GetObjectByTag("Vorbas");
|
||
|
|
||
|
AssignCommand(oNPC, ActionWait(2.0));
|
||
|
AssignCommand(oNPC, ActionForceMoveToObject(oChair));
|
||
|
AssignCommand(oNPC, ActionSit(oChair));
|
||
|
}
|