Rune_PRC8/_removed/hif_onunaquireit.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

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));
}
}