Merged redundant hak files

Merged redundant hak files.  Moved hak scripts into module.  Updated gitignore.  Full Compile.  Added release folder & archive.
This commit is contained in:
Jaysyn904
2024-12-12 15:02:17 -05:00
parent f58f9a29b4
commit e2f4ba74d5
3227 changed files with 52239 additions and 55 deletions

View File

@@ -0,0 +1,24 @@
/////////////////////////////////////////////
// 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
}