mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
17 lines
428 B
Java
Executable File
17 lines
428 B
Java
Executable File
package script.poi.dungeon;
|
|
|
|
import script.obj_id;
|
|
|
|
public class dungeon_mob extends script.base_script
|
|
{
|
|
public dungeon_mob()
|
|
{
|
|
}
|
|
public int OnDeath(obj_id self, obj_id killer, obj_id corpseId) throws InterruptedException
|
|
{
|
|
obj_id objParent = getObjIdObjVar(self, "objParent");
|
|
messageTo(objParent, "elementDestroyed", null, 0, true);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|