generated from Jaysyn/ModuleTemplate
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:
40
_mod/_module/nss/npcactdlltx.nss
Normal file
40
_mod/_module/nss/npcactdlltx.nss
Normal 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
|
||||
/////////////////////////////////////
|
||||
Reference in New Issue
Block a user