16 lines
262 B
Plaintext
16 lines
262 B
Plaintext
|
/*
|
||
|
Random wandering.
|
||
|
|
||
|
WWWWolf 2003-10
|
||
|
*/
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// Usual heartbeat stuff
|
||
|
ExecuteScript("nw_c2_default1",OBJECT_SELF);
|
||
|
|
||
|
// Walk wherever you want
|
||
|
if(!IsInConversation(OBJECT_SELF) && !GetIsInCombat())
|
||
|
ActionRandomWalk();
|
||
|
}
|