Squirrel/Server/Functions/HashTables/Get

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(Arguments)
 
Line 7: Line 7:
 
== Arguments ==
 
== Arguments ==
  
* ''' data ''' - The info that you wish to remove from the hash table.
+
* ''' data ''' - The info that you wish to get from the hash table.
  
 
== Example ==
 
== Example ==

Latest revision as of 19:42, 4 July 2015

Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events


[edit] Syntax

  1. HashTable.Get( data )

[edit] Arguments

  • data - The info that you wish to get from the hash table.

[edit] Example

  1.  
  2. function onPlayerCommand( pPlayer, szCommand, szText )
  3. {
  4. if ( szCommand == "cash" ) Message( pPlayer.Name + " is currently holding $" + pDataHash.Get( pPlayer.Name + "Money" );
  5. }
  6.  

This example will fetch the reference (playnameMoney) to the players money value when they use /cash.

[edit] Notes

The function onPlayerCommand and Player.Name were used in this example, more info about them in the corresponding page.

[edit] Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox