OnLoginAttempt

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

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