26 lines
737 B
Plaintext
26 lines
737 B
Plaintext
|
// x2_mod_def_unaqu,prc_onunaquire
|
||
|
/////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// This script has been auto-generated by HakInstaller to call
|
||
|
// multiple handlers for the onunaquireitem event.
|
||
|
//
|
||
|
/////////////////////////////////////////////////////////////////////
|
||
|
#include "f_vampire_idrop"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
VampireItemDrop();
|
||
|
|
||
|
|
||
|
|
||
|
{
|
||
|
ExecuteScript("x2_mod_def_unaqu", OBJECT_SELF);
|
||
|
ExecuteScript("prc_onunaquire", OBJECT_SELF);
|
||
|
object oItem = GetModuleItemLost();
|
||
|
object oPC = GetModuleItemLostBy();
|
||
|
SetLocalObject(oItem, "LastOwner", oPC);
|
||
|
SetLocalString(oItem, "LastOwnerName", GetName(oPC));
|
||
|
SetLocalString(oItem, "LastOwnerPlayerName", GetPCPlayerName(oPC));
|
||
|
}
|
||
|
}
|