I need a script to make an npc start walking around randomly and copied this one from the tutorial about making npcs walk the waypoints and there is a syntax error at "}", can somebody please correct this.
void main()
{
AssignCommand(OBJECT_SELF,ActionRandomWalk())
}
I need a script to make an npc start walking around randomly and copied this one from the tutorial about making npcs walk the waypoints and there is a syntax error at "}", can somebody please correct this.
Just add ; to the end of assign command line :)
void main()
{
AssignCommand(OBJECT_SELF,ActionRandomWalk());
}
Damn that makes me mad. That was something I should have seen.
Thanks Stoney