Files
dsrc/sku.0/sys.server/compiled/game/script/npe/npe_notify_journal.java
T
2018-06-07 00:32:29 +01:00

19 lines
440 B
Java
Executable File

package script.npe;
import script.obj_id;
public class npe_notify_journal extends script.base_script
{
public npe_notify_journal()
{
}
public int OnReceivedItem(obj_id self, obj_id srcContainer, obj_id transferer, obj_id item) throws InterruptedException
{
if (isPlayer(item))
{
attachScript(item, "npe.trigger_journal");
}
return SCRIPT_CONTINUE;
}
}