AddRemoteEvent

From Onset Developer Wiki
Revision as of 15:16, 17 November 2019 by 28days (talk | contribs)
AddRemoteEvent

Type: Function
Context: Server & Client
Introduced: v1.0

Description

The remote event to call from either server to client or vice versa.

Syntax

AddRemoteEvent(player, RemoteEventName, LuaFunction)
Client Syntax
AddRemoteEvent(RemoteEventName, LuaFunction)

Parameters

  • player
    The player identifier.
  • RemoteEventName
    The remote event name.
  • LuaFunction
    The lua function.

Return Value

  • This function has no specific return value.

Example

-- Client side
AddRemoteEvent("SetWeather", function(weatherid)
    SetWeather(weatherid)
end)

-- Server side
AddCommand("we", function(playerid, weatherid)
    CallRemoteEvent(playerid, "SetWeather", weatherid)
end)

See also