Squirrel/Server/Functions/HashTables/Load

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(Notes)
 
Line 1: Line 1:
__NOTOC__
+
{{Squirrel/Title|HashTable.Load}}
  
 
== Syntax ==
 
== Syntax ==
  
<code>HashTable.Save( location )</code>
+
<code>HashTable.Load( location )</code>
  
 
== Arguments ==
 
== Arguments ==

Latest revision as of 10:26, 11 October 2010

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


[edit] Syntax

  1. HashTable.Load( location )

[edit] Arguments

  • location - The file path and name of the file to load the hash table from.

[edit] Example

  1.  
  2. function onScriptLoad( )
  3. {
  4. pDataHash.Load( "Scripts/LUScript/Hashes/DataHash.hsh" );
  5. }
  6.  

This example will load the data from this file into the DataHash that is stored within the servers memory.

[edit] Notes

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

You must make sure that the Scripts/LUScript/Hashes directory exists before attempting to save/load from it.

[edit] Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox