changed repo to lgsm-cs-funmaps

This commit is contained in:
zino
2023-11-20 16:30:06 +01:00
parent c1e5704385
commit 7639da7306
790 changed files with 0 additions and 14 deletions

View File

@@ -0,0 +1,20 @@
#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)
}
}