Files
dsrc/sku.0/sys.server/compiled/game/script/working/jfreeman/movetest.script
T
2013-09-10 23:17:15 -07:00

11 lines
199 B
Plaintext

trigger OnAttach()
{
debugSpeakMsg( self, "attached" );
location destLoc = new location( getLocation( self ));
destLoc.x = 0;
destLoc.z = 0;
pathTo( self, destLoc );
return SCRIPT_CONTINUE;
}