nVault
Content:
Notes
nVault is a binary vault implementation. It allows you to open named vaults (which are stored in data\vault) and read/write to them at any time.

The vault is implemented with a simple hash lookup, and the binary file format is primitive. However, it should be much faster than AMX Mod X's built-in vault for most things. Each entry is also timestamped, so you can prune for old entries.

Furthermore, the vault attempts to be journaled. That is, it keeps a log of everything it does, so if the server crashes, it can "replay" the journal and recover damage. The journal is erased on synchronization to the vault binary, which occurs on vault close/mapchange.
Functions
nvault_close - Closes a vault.
nvault_get - Gets a vault value by returning an int setting a byref float or setting a string & maxlength.
nvault_lookup - Looks up a vault value for full information.
nvault_open - Opens a vault by name (such as "myvault").
nvault_prune - Prunes the vault for entries that are within the given timestamps.
nvault_pset - Sets a permanent vault value with no timestamp.
nvault_set - Sets a vault value with current timestamp.
User Contributed Notes
tfrcclan at yahoo dot com Sep-18-05 13:28:33
im wondering how can i make the server say stuff by its elf? like say its own csay and tsay because my friend server does it but his server is gizmos and its hekping him so he doesnt know how its doing it...do you guys know how to do it?