[Half-Life AMXX] / testsuite / nvault_test.sma Repository:
ViewVC logotype

View of /testsuite/nvault_test.sma

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (download) (annotate)
Tue Oct 30 09:08:11 2007 UTC (16 years, 5 months ago) by ian
File size: 364 byte(s)
#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)
	}
}

Contact
ViewVC Help
Powered by ViewVC 1.0.4