OnNPCScriptLoad: Difference between revisions

From NPC for VCMP 0.4 Servers
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 19: Line 19:


<source lang="lua">
<source lang="lua">
function OnNPCScriptLoad(params)
function OnNPCScriptLoad( params )
{
{
timer<- null;
print("params array length is "+params.len()+"\n");
print( "params array length is " + params.len() + "\n" );
print("arguments passed to script are:\n");
foreach( arg in params)
print( "arguments passed to script are:\n" );
print(arg+"\n");
foreach( arg in params )
print( arg + "\n" );
}
}
</source>
</source>
</big>
</big>

Latest revision as of 07:56, 30 November 2022

Note: The argument params was added in v1.5 only

Description:
This function is called when a NPC script is loaded.


Parameters:

params
params : An array containing string values which was passed to the npcscripts via ConnectNPCEx or npcclient.exe with the usage of -w parameter.


Return Values:
This callback does not handle returns


function OnNPCScriptLoad( params )
{
	
	print( "params array length is " + params.len() + "\n" );
	
	print( "arguments passed to script are:\n" );
	
	foreach( arg in params )
		print( arg + "\n" );
	
}