Template:Welcome: Difference between revisions

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


<big><poem>'''Description''':  
<big><poem>'''Description''':  
::{{{1}}}
::{{{description}}}
</poem>
</poem>




'''Parameters:'''
'''Parameters:'''
<syntaxhighlight lang="lua">{{{2}}}</syntaxhighlight>
<syntaxhighlight lang="lua">{{{params}}}</syntaxhighlight>


<poem>
<poem>


'''Return Values:'''
'''Return Values:'''
::{{{3}}}
::{{{retvals}}}
</poem>
</poem>


Line 21: Line 21:
print("NPC script loaded\n");
print("NPC script loaded\n");
}
}
</source>{{{4}}}
</source>{{{srctest}}}
</big>
</big>

Revision as of 09:50, 9 March 2022


Description:
{{{description}}}


Parameters:

{{{params}}}


Return Values:
{{{retvals}}}


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

{{{srctest}}}