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

26 lines
703 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
//
// Realistic Torches - OnUnequip
// torch_onunequip
// By:Don Anderson
// dandersonru@msn.com
//
// This is placed in the Module OnUnequip Event
//
////////////////////////////////////////////////////////////////////////////////
void main()
{
object oTorch = GetPCItemLastUnequipped();
string sTorch = GetTag(oTorch);
//This is for a Torch
if(sTorch == "torch") SetLocalInt(oTorch,"TORCHEQUIP",0);
//This is for an Open Lantern
if(sTorch == "openlantern") SetLocalInt(oTorch,"TORCHEQUIP",0);
//This is for a Lantern
if(sTorch == "lantern") SetLocalInt(oTorch,"TORCHEQUIP",0);
}