Scripting/Squirrel/Functions/ClearIni

From Vice City Multiplayer
Revision as of 03:58, 22 June 2016 by King (talk | contribs) (Created page with "__NOTOC__ This function clears the content of a ini file. Note: the ini file won't be deleted. == Syntax == <code>ClearIni( string FileName )</code> == Arguments == * '''F...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

This function clears the content of a ini file. Note: the ini file won't be deleted.

Syntax

ClearIni( string FileName )

Arguments

  • FileName - This is the file name

Example

In this example we will clear the ini file 'somespam.ini' when the server will be closed/scripts unloaded from the server

function onScriptUnload() {

    ClearIni( "somespam.ini" );
    print( "INI file cleared" );

}

Notes

The call onScriptUnload was used in in this example. More info about this in the corresponding page.