mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-07-31 01:15:55 -04:00
13 lines
232 B
Plaintext
13 lines
232 B
Plaintext
//inlcudes
|
|
include library.utils;
|
|
include library.npe;
|
|
|
|
trigger OnReceivedItem(obj_id srcContainer, obj_id transferer, obj_id item)
|
|
{
|
|
if(isPlayer(item))
|
|
{
|
|
attachScript(item, "npe.trigger_journal");
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|