AMX Mod X API Documentation

Signature
native register_logevent(const function[], argsnum, ...);
Description

Registers a function to be called on a given log event.

Notes
  • Examples for log conditions:

    "0 = World triggered" "1 = Game_Commencing"

    "1 = say"

    "3 = Terrorists_Win"

    "1 = entered the game"

    "0 = Server cvar"

Parameters
  • function Name of callback function
  • argsnum Number of arguments of the log event
  • ... Any number of conditions used for filtering events

    A condition string is built as:

    ""

    Argument number is the argument position to be filtered

    The comparison operator may be:

    - "=" for equality comparison

    - "&" for substring comparison

    The argument is compared to the specified string accordingly

Returns

Log event handle

Errors
  • If an invalid callback function is provided, an error will

    be thrown.

Назад
Верх