Wiki's arent that helpful. You can learn more by surfing the includes located in amxmodx/scripting/include folder.
Some forwards from amxmodx.inc :
PHP Code:
/* Function is called just after server activation.
* Good place for configuration loading, commands and cvars registration. */
forward plugin_init();
/* Called when the plugin is paused. */
forward plugin_pause();
/* Called when the plugin is unpaused. */
forward plugin_unpause();
/* Called when the mod tries to change the map. */
forward server_changelevel(map[]);
/* Function is called when all plugin_init from plugins
* were called, so all commmands and cvars should be already registered. */
forward plugin_cfg();
/* Function called before plugin unloading (server deactivation) */
forward plugin_end();
/* Called on log message. */
forward plugin_log();
/* Use here model_precache() and sound_precache() functions. */
forward plugin_precache();
/* Whenever player info is changed, this function is called. */
forward client_infochanged(id);
/* Called on client connection. */
forward client_connect(id);
/* Called when client gets valid STEAM id (usually
* between client_connect() and client_putinserver()). */
forward client_authorized(id);
/* Called when client is disconnecting from server. */
forward client_disconnect(id);
/* Called when client is sending command. */
forward client_command(id);
/* Called when client is entering to a game. */
forward client_putinserver(id);
By the way:
Native - A function that executes another function (Change users speed, health, model, damage etc..)
Forward - A function that gets called on a specific event (When you move, take damage, die etc..)
__________________