generated from Jaysyn/ModuleTemplate
19 lines
566 B
Plaintext
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;
|
|
}
|
|
}
|