Files
HeroesStone_PRC8/_module/nss/cust_on_act_item.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

19 lines
566 B
Plaintext

//::///////////////////////////////////////////////
//:: OnActivateItem
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: 69_Jeremy_69
//:: Created On: April 25, 2003
//:://////////////////////////////////////////////
void main()
{
if(GetTag(GetItemActivated())=="ROGUE_GARROTE")
{
SetLocalInt(GetItemActivator(),"ROGUE_ITEM",1);
SetLocalObject(GetItemActivator(),"ROGUE_ITEM",GetItemActivatedTarget());
ExecuteScript("rogue_inc",GetItemActivator());
return;
}
}