mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-08-01 02:16:04 -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;
|
|
}
|
|
|