Squirrel/Server/Functions/Ini/ReadIniString

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
m
(Removed 'name' from the OnPlayerJoin function)
Line 16: Line 16:
  
 
<code lang="squirrel">
 
<code lang="squirrel">
function OnPlayerJoin( player, name )
+
function OnPlayerJoin( player )
 
{
 
{
     if ( ReadIniString( "IPs.ini", "IP", name ) == GetPlayerIP( player ) )
+
     if ( ReadIniString( "IPs.ini", "IP", GetPlayerName( player ) ) == GetPlayerIP( player ) )
 
     {
 
     {
 
           /* some nice autologin stuff here */
 
           /* some nice autologin stuff here */

Revision as of 15:17, 4 March 2009

This function reads a string saved to an .ini file.

Syntax

  1. string ReadIniString( string filename, string section, string var )

Arguments

  • filename This is the name of the file
  • section The section that contains the value you want to read
  • var The name of the variable

Example

This example will check whether the player connects from the same IP than earlier and auto-logs them in.

  1.  
  2. function OnPlayerJoin( player )
  3. {
  4. if ( ReadIniString( "IPs.ini", "IP", GetPlayerName( player ) ) == GetPlayerIP( player ) )
  5. {
  6. /* some nice autologin stuff here */
  7. MessagePlayer( "You have auto-logged in successfully!", player );
  8. }
  9. }
  10.  

Notes

The functions GetPlayerIP, MessagePlayer and call OnPlayerJoin were also used in in this example. More info about them in corresponding pages.

Related Functions

Template:Squirrel/Functions/Ini

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox