AMX Mod X API Documentation

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

Unpauses a plugin so it will resume execution if it was previously paused.

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

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

  • Without specifying flag "c" this function will do nothing, as a plugin

    is incapable of unpausing itself. This is a relict of the deprecated

    functionality.

Parameters
  • flag Pause flags

    "a" - pause plugin

    "c" - search for other plugins using param1

  • 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.

Назад
Верх