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,40 @@
////////////////////////////////////////////////////////////////////////////////
// NPC ACTIVITIES 6.1 - Transition movement library
// Version: 1.0
// Library name: TX
//=======================================================================
// Author: Deva Bryson Winblood
// Date : 2/4/2006
//=======================================================================
// This library provides a way to make an NPC use a specific transition instead
// of relying upon Accurate Pathing in NPC ACTIVITIES. With this library results
// are guaranteed and require less CPU time to produce the results.
////////////////////////////////////////////////////////////////////////////////
#include "npcactlibtoolh"
#include "npcact_h_moving"
////////////////////////////////////
// PROTOTYPES
////////////////////////////////////
///////////////////////////////////////////////////////////////// [ M A I N ]
void main()
{
string sParmIn=GetLocalString(OBJECT_SELF,"sLIBParm");
string sParm;
string sParm1;
string sParm2;
object oMe=OBJECT_SELF;
int nArgC;
DLL_TokenizeParameters(sParmIn);
nArgC=GetLocalInt(oMe,"nArgc");
if (nArgC>2)
{ // sufficient parameters passed
} // sufficient parameters passed
DLL_FreeParameters();
}
///////////////////////////////////////////////////////////////// [ M A I N ]
/////////////////////////////////////
// FUNCTIONS
/////////////////////////////////////