OnLoginAttempt: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "This is called when a player attempts to join the server. == Syntax == <pre>function onLoginAttempt( playerName, password, ipAddress )</pre> == Arguments == * '''playerNam...")
 
No edit summary
 
Line 27: Line 27:


{{Scripting/Squirrel/Events/Player_Events}}
{{Scripting/Squirrel/Events/Player_Events}}
[[Category:Scripting/Squirrel/Events/Player_Events]]

Latest revision as of 22:15, 30 January 2017

This is called when a player attempts to join the server.

Syntax

function onLoginAttempt( playerName, password, ipAddress )

Arguments

  • playerName - The name of the new player.
  • password - The password that the player used to login.
  • ipAddress - The IP address of the new player.

Example

function onLoginAttempt( playerName, password, ipAddress )
{
    if ( playerName == "blocked_name" )
        return false; // Reject
    return true; // Allow
}

Notes

Related Functions