Jump to content

Home

Why do scripts hate me? :'(


Recommended Posts

Well I have a walk random script that won't compile woo hooo. I copied and pasted this right from tk102's post and is says sytanx error at line 4. Also no I dont want waypoints I want walk random.

 

void main() 
{ 
AssignCommand(OBJECT_SELF,ActionRandomWalk())
}

 

Thanks- Supreme Kotor

Link to comment
Share on other sites

Well I have a walk random script that won't compile woo hooo. I copied and pasted this right from tk102's post and is says sytanx error at line 4. Also no I dont want waypoints I want walk random.

 

void main() 
{ 
AssignCommand(OBJECT_SELF,ActionRandomWalk())
}

 

Thanks- Supreme Kotor

you missed a semicolon dude :p ... try this:

 

void main()

{

AssignCommand(OBJECT_SELF, ActionRandomWalk());

}

 

hope that helps :cool:

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...