mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
11 lines
199 B
Plaintext
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;
|
|
}
|
|
|