I think this is all that you will need:
PHP Code:
new Trie:g_tTrieName
public plugin_init()
{
g_tTrieName = TrieCreate()
}
// ...
// set the value
TrieSetCell(g_tTrieName, szAuthID, 1)
// ...
// get the value
new currentvalue
if( TrieGetCell(g_tTrieName, szAuthID, currentvalue) )
{
SteamID found in Trie, currentvalue is . . . the current value :)
}
__________________