Alangara_PRC8/_module/nss/fb1_campkit.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

17 lines
537 B
Plaintext

// campfire kit
void main()
{
location lLoc=GetItemActivatedTargetLocation();
object oPC=GetItemActivator();
object oOutside=GetNearestObjectByTag("RTS_SURFACE",oPC);
if (oOutside!=OBJECT_INVALID)
{ // create
object oFire=CreateObject(OBJECT_TYPE_PLACEABLE,"fb1_campfire",lLoc);
float fTime=HoursToSeconds(4);
object oItem=GetItemActivated();
DelayCommand(fTime,DestroyObject(oFire));
DestroyObject(oItem);
} // create
else { SendMessageToPC(oPC,"This item may only be used outside."); }
}