AMX Mod X API Documentation

Signature
native pause(const flag[], const param1[] = "", const param2[] = "");
Description

Pauses a plugin so it will not be executed until it is unpaused.

Notes
  • This used to be able to pause specific functions, but this functionality

    (along with the flags "b" and "e") has been deprecated.

  • If used without flag "c" this will pause the calling plugin.
Parameters
  • flag Pause flags

    "a" - pause plugin

    "c" - search for other plugins using param1

    "d" - stop plugin, making it unavailable to unpause

  • param1 Plugin filename
  • param2 Unused and ignored
Returns

1 on success, 0 otherwise

Errors
  • If it is attempted to use the deprecated functionality,

    an error is thrown.

Назад
Верх