Bugfix pass.

Fixed onRespawn & onDying scripts.  Fixed XP awards.  Added temple hospital & library.
This commit is contained in:
Jaysyn904
2021-09-25 20:28:28 -04:00
parent 6195a6cf23
commit 3e3128ed1e
84 changed files with 64542 additions and 169 deletions

View File

@@ -0,0 +1,15 @@
/*
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();
}