OnNPCScriptLoad: Difference between revisions

From NPC for VCMP 0.4 Servers
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
<big><poem>'''Description''':  
<big>
<poem>'''Description''':  
This function is called when a NPC script is loaded.
This function is called when a NPC script is loaded.
 
</poem>


'''Parameters:'''
'''Parameters:'''
<source lang="lua">
<poem> </poem><source lang="lua">
This callback has no parameters.
This callback has no parameters.
</source>
</source>
Line 17: Line 18:
print("NPC script loaded\n");
print("NPC script loaded\n");
}
}
</source></poem>
</source>
</big>
</big>

Revision as of 09:24, 9 March 2022

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

Parameters:

This callback has no parameters.


Return Values: This callback does not handle returns

function OnNPCScriptLoad()
{
	print("NPC script loaded\n");
}