mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-07-31 01:15:55 -04:00
18 lines
610 B
Plaintext
18 lines
610 B
Plaintext
trigger OnInitialize()
|
|
{
|
|
location sarlaccPit = new location ( -6173, 14, -3361, "tatooine", null);
|
|
obj_id sarlacc = createObject ( "object/mobile/sarlacc.iff", sarlaccPit );
|
|
setObjVar ( sarlacc, "creater", self);
|
|
attachScript ( sarlacc, "creature_spawner.death_msg");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
|
|
messageHandler creatureDied()
|
|
{
|
|
location sarlaccPit = new location ( -6173, 14, -3361, "tatooine", null);
|
|
obj_id sarlacc = createObject ( "object/mobile/sarlacc.iff", sarlaccPit );
|
|
setObjVar ( sarlacc, "creater", self);
|
|
attachScript ( sarlacc, "creature_spawner.death_msg");
|
|
return SCRIPT_CONTINUE;
|
|
} |