mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
23 lines
584 B
Java
Executable File
23 lines
584 B
Java
Executable File
package script.systems.movement;
|
|
|
|
import script.obj_id;
|
|
|
|
public class manager extends script.base_script
|
|
{
|
|
public manager()
|
|
{
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int OnAttribModDone(obj_id self, String buffName, boolean isDead) throws InterruptedException
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int OnTransferred(obj_id self, obj_id src, obj_id dest, obj_id transferer) throws InterruptedException
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|