OnPlayerConnect: Difference between revisions

From GTA Connected
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{ScriptItem
{{ScriptItem2
|endpoint = shared
|name = onPlayerConnect
|side = shared
|type = event
|type = event
|name = onPlayerConnect
|games = iii vc sa iv
|usage = player starts connecting to the server. This event is a low-level event, which is invoked before the player's name is sent to the server
|desc = player starts connecting to the server. This event is a low-level event, which is invoked before the player's name is sent to the server
|callbackParameters = Event event, string IP
|arg1 = string IP The IP address for the player.
|cancellable = false
|note = {{Shared/PlayerConnectionEvents}}
|parameter1 = string IP The IP address for the player.
|cancel = false
|notes = {{Shared/PlayerConnectionEvents}}
}}
}}

Revision as of 20:28, 19 November 2022

Event Server and Client GTAIII Logo.png icon-vc.png icon-sa.png icon-iv.png Online and Offline Not Cancellable

Available since Server 1.0.0, Client 1.0.0
onPlayerConnect(Event event, string IP)
The onPlayerConnect event is invoked when player starts connecting to the server. This event is a low-level event, which is invoked before the player's name is sent to the server.

Parameters

1) Event event The event object for this event.
2) string IP The IP address for the player.

Attributes

const This event cannot be cancelled.

Notes

  • The chronological order of player connection events are:
  1. OnPlayerConnect
  2. OnPlayerJoin
  3. OnPlayerJoined
    .

Examples

There aren't any examples for this event.

Compatibility

There isn't any compatibility information for this event.

Related

Server Related

GTAIII Logo.png icon-vc.png icon-sa.png icon-iv.png OnPlayerChat
GTAIII Logo.png icon-vc.png icon-sa.png icon-iv.png OnPlayerCommand
GTAIII Logo.png icon-vc.png icon-sa.png icon-iv.png OnPlayerConnect
GTAIII Logo.png icon-vc.png icon-sa.png icon-iv.png OnPlayerJoin
GTAIII Logo.png icon-vc.png icon-sa.png icon-iv.png OnPlayerJoined
GTAIII Logo.png icon-vc.png icon-sa.png icon-iv.png OnPlayerQuit


Client Related

OnPlayerJoin