Files
dsrc/sku.0/sys.server/compiled/game/script/systems/beast/beast_stuffed.java
T

21 lines
438 B
Java
Executable File

package script.systems.beast;
import script.dictionary;
import script.obj_id;
public class beast_stuffed extends script.base_script
{
public beast_stuffed()
{
}
public int OnPack(obj_id self, dictionary params) throws InterruptedException
{
if (!isIdValid(self))
{
return SCRIPT_CONTINUE;
}
destroyObject(self);
return SCRIPT_CONTINUE;
}
}