Squirrel/Server/Functions/HashTables/FindHashTable

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(New page: __NOTOC__ == Syntax == <code>FindHashTable( name )</code> == Arguments == * ''' name ''' - The name of the hash table to find in memory. == Example == <code lang="squirrel"> function...)

Revision as of 02:17, 26 May 2010


Syntax

  1. FindHashTable( name )

Arguments

  • name - The name of the hash table to find in memory.

Example

  1.  
  2. function onPlayerJoin( pPlayer )
  3. {
  4. pHashTable <- FindHashTable( "DataHash" );
  5. }
  6.  

This example will set the pHashTable variable to be a pointer to the 'DataHash' hash table if it finds it.

Notes

The function onPlayerJoin was used in this example, more info about it in the corresponding page.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox