GM-X Cache

reapi module gmx GM-X Cache 0.1.83-alpha

Нет прав для скачивания
Установка
  1. Скопируйте gmx_cache.sma в папку scripting
  2. Cкомпилируйте плагин (инструкция).
  3. Скопируйте скомпилированный gmx_cache.amxx в директорию "/amxmodx/plugins".
  4. Пропишите gmx_cache.amxx в /amxmodx/configs/plugins-gmx.ini
Настройки
Отсутствуют
API
Код:
#if defined _gmx_cache_included
    #endinput
#endif

#define _gmx_cache_included

#include <grip>

/**
* Loads saved cache by name.
*
* @param name     JSON name
* @param data     JSON handle
*
* @return         true on success, false otherwise
* @error          If an invalid number of arguments is set, an error will be thrown.
*/
native bool:GMX_CacheLoad(const name[], &GripJSONValue:data);

/**
* Saves cache by name.
*
* @param name     JSON name
* @param data     JSON handle
*
* @return         true on success, false otherwise
* @error          If an invalid number of arguments is set, an error will be thrown.
*/
native bool:GMX_CacheSave(const name[], const GripJSONValue:data);
Сверху Снизу