2
0
mirror of https://github.com/alliedmodders/amxmodx.git synced 2025-02-17 09:18:51 +03:00

21 lines
364 B
Plaintext
Raw Normal View History

#include <amxmodx>
#include <nvault>
public plugin_init()
{
register_plugin("nVault Test", "1.0", "BAILOPAN")
register_srvcmd("test_nvault", "Command_TestNvault")
}
public Command_TestNvault()
{
new v = nvault_open("://:/1/R!?#@41345$%:$")
server_print("Vault value: %d (expected: %d)", v, -1)
if (v != -1)
{
nvault_close(v)
}
}