Changed .amx in examples for pause() and callfunc_begin() to .amxx (as requested by XxAvalanchexX on the forums)

This commit is contained in:
Pavol Marko 2005-09-08 13:05:44 +00:00
parent 97b5391118
commit 3f9598fcbb

View File

@ -599,8 +599,8 @@ native get_pluginsnum();
* "d" - set "stopped" status when pausing whole plugin. * "d" - set "stopped" status when pausing whole plugin.
* "e" - set "locked" status when pausing whole plugin. * "e" - set "locked" status when pausing whole plugin.
* In this status plugin is unpauseable. * In this status plugin is unpauseable.
* Example: pause("ac","myplugin.amx") * Example: pause("ac","myplugin.amxx")
* pause("bc","myfunc","myplugin.amx") */ * pause("bc","myfunc","myplugin.amxx") */
native pause(flag[], const param1[]="",const param2[]=""); native pause(flag[], const param1[]="",const param2[]="");
/* Unpauses function or plugin. /* Unpauses function or plugin.
@ -613,7 +613,7 @@ native unpause(flag[], const param1[]="",const param2[]="");
/* Call a function in this / an another plugin by name. /* Call a function in this / an another plugin by name.
* Parameters: * Parameters:
* plugin - plugin filename; if "", the caller plugin is used. * plugin - plugin filename; if "", the caller plugin is used.
* If specified, it has to be the exact filename (for example stats.amx) * If specified, it has to be the exact filename (for example stats.amxx)
* func - function name * func - function name
* Return value: * Return value:
* 1 - Success * 1 - Success