Squirrel/Server/Functions/Ini/WriteIniFloat

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(New page: __NOTOC__ This function writes a float value to an .ini file. If the file does not exist, the function will create it. == Syntax == <code>bool WriteIniFloat( string filename, string sect...)
 

Revision as of 00:59, 27 November 2009

This function writes a float value to an .ini file. If the file does not exist, the function will create it.

Syntax

  1. bool WriteIniFloat( string filename, string section, string var, float value )

Arguments

  • filename This is the name of the file
  • section The section that contains the value you want to create/edit
  • var The name of the variable
  • value The float value for the variable

Example

This example will save a location to a file 'Locations.ini' when a player types '/saveloc LocationName'.

  1.  
  2. function OnPlayerCommand( player, command, text )
  3. {
  4. if ( command = "saveloc" )
  5. {
  6. local pos = GetPlayerPos( player );
  7.  
  8. WriteIniFloat( "Locations.ini", text, "x", pos.x );
  9. WriteIniFloat( "Locations.ini", text, "y", pos.y );
  10. WriteIniFloat( "Locations.ini", text, "z", pos.z );
  11.  
  12. MessagePlayer( "Saved location " +text+ ".", player );
  13. }
  14. }
  15.  

Notes

The functions GetPlayerPos, MessagePlayer and call OnPlayerCommand were also used in in this example. More info about them in the corresponding pages.

Related Functions

Template:Squirrel/Functions/Ini

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox