HoS_PRC8/_mod/_module/nss/npcact_use_oven.nss
Jaysyn904 e2f4ba74d5 Merged redundant hak files
Merged redundant hak files.  Moved hak scripts into module.  Updated gitignore.  Full Compile.  Added release folder & archive.
2024-12-12 15:02:17 -05:00

25 lines
941 B
Plaintext

/////////////////////////////////////////////
// Make oven Fire appear
/////////////////////////////////////////////
// By Deva Bryson Winblood
// Also used with NPC ACTIVITIES 6.0 but, did not require modification
/////////////////////////////////////////////
// Requires a waypoint labeled MAKE_OVENFIRE
// where you want the flames to appear for a
// moment.
/////////////////////////////////////////////
// SCRIPT: npcact_use_oven
/////////////////////////////////////////////
void main()
{
object oWP=GetNearestObjectByTag("MAKE_OVENFIRE",OBJECT_SELF,1);
effect eSmokePuff=EffectVisualEffect(VFX_FNF_SMOKE_PUFF);
if (oWP!=OBJECT_INVALID)
{ // it is present
ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY,eSmokePuff,GetLocation(oWP),3.0);
object oFire=CreateObject(OBJECT_TYPE_PLACEABLE,"plc_flamesmall",GetLocation(oWP));
DelayCommand(16.0,DestroyObject(oFire));
} // it is present
}