mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
31 lines
800 B
Java
Executable File
31 lines
800 B
Java
Executable File
package script.item;
|
|
|
|
import script.library.static_item;
|
|
import script.library.utils;
|
|
import script.obj_id;
|
|
|
|
public class static_item_owner extends script.base_script
|
|
{
|
|
public static_item_owner()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
obj_id player = utils.getContainingPlayer(self);
|
|
if (isIdValid(player))
|
|
{
|
|
static_item.origOwnerCheckStamp(self, player);
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
obj_id player = utils.getContainingPlayer(self);
|
|
if (isIdValid(player))
|
|
{
|
|
static_item.origOwnerCheckStamp(self, player);
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|