AddRemoteEvent
From Onset Developer Wiki
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)