All public logs
Combined display of all available logs of RAGE Multiplayer Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 01:39, 27 November 2019 Muphy talk contribs created page NAPI.Data.SetWorldData (Created page with "This function sets world data but the data is only accessible by the server. It is not synced to any client. ==Syntax== <syntaxhighlight lang="C#" >void NAPI.Data.SetWorldDat...")
- 01:39, 27 November 2019 Muphy talk contribs created page NAPI.Data.SetEntityData (Created page with "Sets the given data value on the entity. This does not synchronize the data to clients. Use SetEntitySharedData if you want this value to synchronize to clients. ==Syntax== <...")
- 01:38, 27 November 2019 Muphy talk contribs created page NAPI.Data.ResetWorldData (Created page with "==Syntax== <syntaxhighlight lang="C#" >void NAPI.Data.ResetWorldData(string key);</syntaxhighlight> '''Required Arguments''' *'''key:''' parameter input should be in '''strin...")
- 01:38, 27 November 2019 Muphy talk contribs created page NAPI.Data.ResetEntityData (Created page with "==Syntax== <syntaxhighlight lang="C#" >void NAPI.Data.ResetEntityData(NetHandle entity, string key);</syntaxhighlight> '''Required Arguments''' *'''entity:''' parameter input...")
- 01:38, 27 November 2019 Muphy talk contribs created page NAPI.Data.HasWorldData (Created page with "==Syntax== <syntaxhighlight lang="C#" >bool NAPI.Data.HasWorldData(string key);</syntaxhighlight> '''Required Arguments''' *'''key:''' parameter input should be in '''string'...")
- 01:37, 27 November 2019 Muphy talk contribs created page NAPI.Data.HasEntityData (Created page with "==Syntax== <syntaxhighlight lang="C#" >bool NAPI.Data.HasEntityData(NetHandle entity, string key);</syntaxhighlight> '''Required Arguments''' *'''entity:''' parameter input s...")
- 01:37, 27 November 2019 Muphy talk contribs created page NAPI.Data.GetWorldData (Created page with "==Syntax== <syntaxhighlight lang="C#" >dynamic NAPI.Data.GetWorldData(string key);</syntaxhighlight> '''Required Arguments''' *'''key:''' parameter input should be in '''stri...")
- 01:36, 27 November 2019 Muphy talk contribs created page NAPI.Data.GetEntityData (Created page with "Gets entity data that was set with SetEntityData. Note that this data is in a different state than synced data that you set with SetEntitySharedData. To get synced da...")
- 01:35, 27 November 2019 Muphy talk contribs created page NAPI.Data.SetWorldSyncedData (Created page with "This function sets world data that syncs to all clients. ==Syntax== <syntaxhighlight lang="C#" >void NAPI.Data.SetWorldSharedData(string key, object value);</syntaxhighlight>...")
- 01:34, 27 November 2019 Muphy talk contribs created page NAPI.Data.SetEntitySyncedData (Created page with "Sets the given data value for the given entity and synchronizes this value to clients. Use SetEntityData if the data should only exist on the server and shouldn't be synch...")
- 01:34, 27 November 2019 Muphy talk contribs created page NAPI.Data.ResetWorldSyncedData (Created page with "==Syntax== <syntaxhighlight lang="C#" >void NAPI.Data.ResetWorldSharedData(string key);</syntaxhighlight> '''Required Arguments''' *'''key:''' parameter input should be in ''...")
- 01:34, 27 November 2019 Muphy talk contribs created page NAPI.Data.ResetEntitySyncedData (Created page with "==Syntax== <syntaxhighlight lang="C#" >void NAPI.Data.ResetEntitySharedData(NetHandle entity, string key);</syntaxhighlight> '''Required Arguments''' *'''entity:''' parameter...")
- 01:33, 27 November 2019 Muphy talk contribs created page NAPI.Data.HasWorldSyncedData (Created page with "==Syntax== <syntaxhighlight lang="C#" >bool NAPI.Data.HasWorldSharedData(string key);</syntaxhighlight> '''Required Arguments''' *'''key:''' parameter input should be in '''s...")
- 01:33, 27 November 2019 Muphy talk contribs created page NAPI.Data.HasEntitySyncedData (Created page with "==Syntax== <syntaxhighlight lang="C#" >bool NAPI.Data.HasEntitySharedData(NetHandle entity, string key);</syntaxhighlight> '''Required Arguments''' *'''entity:''' parameter i...")
- 01:32, 27 November 2019 Muphy talk contribs created page NAPI.Data.GetWorldSyncedData (Created page with "==Syntax== <syntaxhighlight lang="C#" >dynamic NAPI.Data.GetWorldSharedData(string key);</syntaxhighlight> '''Required Arguments''' *'''key:''' parameter input should be in '...")
- 01:30, 27 November 2019 Muphy talk contribs created page NAPI.Data.GetEntitySyncedData (Created page with "Gets entity data that was set via SetEntitySharedData. Note that this data is in a different state than non-synced data that you set with SetEntityData (which is only...")
- 01:29, 27 November 2019 Muphy talk contribs created page NAPI.Command.Block (Created page with "Blocks command parsing for a client. ==Syntax== <syntaxhighlight lang="C#" >void NAPI.Command.Block(Client sender, bool value);</syntaxhighlight> '''Required Arguments''' *'...")
- 01:29, 27 November 2019 Muphy talk contribs created page NAPI.Command.Unregister (Created page with "Unregisters an injected command at runtime. ==Syntax== <syntaxhighlight lang="C#" >bool NAPI.Command.Unregister(string commandName);</syntaxhighlight> '''NOTE:''' This funct...")
- 01:28, 27 November 2019 Muphy talk contribs created page NAPI.Command.Register (Created page with "Registers a command at runtime. ==Syntax== <syntaxhighlight lang="C#" >bool NAPI.Command.Register(MethodInfo method, CommandArgs = null);</syntaxhighlight> '''Optional Argum...")
- 01:27, 27 November 2019 Muphy talk contribs created page NAPI.Command.Invoke (Created page with "Invokes a command at run-time. ==Syntax== <syntaxhighlight lang="C#" >void NAPI.Command.Invoke(Client sender, string command, params object[] args);</syntaxhighlight> '''Req...")
- 01:27, 27 November 2019 Muphy talk contribs created page NAPI.ColShape.DeleteColShape (Created page with "Deletes a collision shape. ==Syntax== <syntaxhighlight lang="C#" >void NAPI.ColShape.DeleteColShape(ColShape shape);</syntaxhighlight> '''Required Arguments''' *'''shape:'''...")
- 01:26, 27 November 2019 Muphy talk contribs created page NAPI.ColShape.CreateSphereColShape (Created page with "Creates a spherical collision shape which checks whether an entity is inside of the spherical area. ==Syntax== <syntaxhighlight lang="C#" >ColShape NAPI.ColShape.CreateSphere...")
- 01:26, 27 November 2019 Muphy talk contribs created page NAPI.ColShape.CreateCircleColShape (Created page with "Creates a circle shaped colshape object. ==Syntax== <syntaxhighlight lang="C#" >ColShape NAPI.ColShape.CreateCircleColShape(float x, float y, float range, uint dimension = NA...")
- 01:25, 27 November 2019 Muphy talk contribs created page NAPI.ColShape.Create3DColShape (Created page with "Creates a 3D collision shape which checks whether an entity is inside of a rectangular area. If you don't care about the height, you can use Create2DColShape instead. ==S...")
- 01:25, 27 November 2019 Muphy talk contribs created page NAPI.ColShape.Create2DColShape (Created page with "Creates a 2D collision shape which checks whether an entity is inside of a rectangular area, where height does not count. ==Syntax== <syntaxhighlight lang="C#" >ColShape NAPI...")
- 01:23, 27 November 2019 Muphy talk contribs created page NAPI.ClientEvent.TriggerClientEventInDimension (Created page with "Triggers a client-side script event call from server-side to all players in a given dimension. To trigger an event for a single player, use TriggerClientEvent. ==Syntax==...")
- 01:23, 27 November 2019 Muphy talk contribs created page NAPI.ClientEvent.TriggerClientEventInRange (Created page with "Triggers a client-side script event call from server-side to all players in a range. To trigger an event for a single player, use TriggerClientEvent. ==Syntax== <syntaxhi...")
- 01:22, 27 November 2019 Muphy talk contribs created page NAPI.ClientEvent.TriggerClientEventToPlayers (Created page with "Triggers a client-side script event call from server-side to a given players list. To trigger an event for a single player, use TriggerClientEvent. ==Syntax== <syntaxhigh...")
- 01:21, 27 November 2019 Muphy talk contribs created page NAPI.ClientEvent.TriggerClientEventForAll (Created page with "Triggers a client-side script event call from server-side to all players. To trigger an event for a single player, use TriggerClientEvent. ==Syntax== <syntaxhighlight lan...")
- 01:20, 27 November 2019 Muphy talk contribs created page NAPI.ClientEvent.TriggerClientEvent (Created page with "Triggers a client-side script event call from server-side to a Player. For the inverse method of this (client to server), you will have to use '''mp.events.callRemote("MyEvent...")
- 01:19, 27 November 2019 Muphy talk contribs created page NAPI.Checkpoint.SetCheckpointScale (Created page with "Sets a checkpoint scale ==Syntax== <syntaxhighlight lang="C#" >void NAPI.Checkpoint.SetCheckpointScale(Checkpoint checkpoint, float scale);</syntaxhighlight> '''Required Arg...")
- 01:18, 27 November 2019 Muphy talk contribs created page NAPI.Checkpoint.SetCheckpointDirection (Created page with "Sets a checkpoint direction ==Syntax== <syntaxhighlight lang="C#" >void NAPI.Checkpoint.SetCheckpointDirection(Checkpoint checkpoint, Vector3 dir);</syntaxhighlight> '''Requ...")
- 01:18, 27 November 2019 Muphy talk contribs created page NAPI.Checkpoint.SetCheckpointColor (Created page with "Sets a checkpoint color ==Syntax== <syntaxhighlight lang="C#" >void NAPI.Checkpoint.SetCheckpointColor(Checkpoint checkpoint, int alpha, int red, int green, int blue);</synta...")
- 01:17, 27 November 2019 Muphy talk contribs created page NAPI.Checkpoint.GetCheckpointScale (Created page with "Gets a checkpoint scale ==Syntax== <syntaxhighlight lang="C#" >float NAPI.Checkpoint.GetCheckpointScale(Checkpoint checkpoint);</syntaxhighlight> '''Required Arguments''' *'...")
- 01:17, 27 November 2019 Muphy talk contribs created page NAPI.Checkpoint.GetCheckpointDirection (Created page with "Gets a checkpoint direction ==Syntax== <syntaxhighlight lang="C#" >Vector3 NAPI.Checkpoint.GetCheckpointDirection(Checkpoint checkpoint);</syntaxhighlight> '''Required Argum...")
- 01:16, 27 November 2019 Muphy talk contribs created page NAPI.Checkpoint.GetCheckpointColor (Created page with "Gets a checkpoint color '''Required Arguments''' *'''checkpoint:''' parameter input should be in '''Checkpoint''' type. ==Syntax== <syntaxhighlight lang="C#" >Color NAPI.Che...")
- 01:15, 27 November 2019 Muphy talk contribs created page NAPI.Checkpoint.CreateCheckpoint (Created page with "__NOTOC____NOEDITSECTION__{{Template:Server_side_csharp}} Create a checkpoint ==Syntax== <syntaxhighlight lang="C#" >Checkpoint NAPI.Checkpoint.CreateCheckpoint(uint/int/Chec...")
- 01:14, 27 November 2019 Muphy talk contribs created page NAPI.Chat.SendChatMessageToPlayer (Created page with "Sends a message to the targeted player. '''2 overloads''' ==Syntax== <syntaxhighlight lang="C#" >void NAPI.Chat.SendChatMessageToPlayer(Client player, string message, bool o...")
- 01:12, 27 November 2019 Muphy talk contribs created page NAPI.Chat.SendChatMessageToAll (Created page with "__NOTOC____NOEDITSECTION__{{Template:Server_side_csharp}} Sends a message to the targeted player. '''2 overloads''' ==Syntax== <syntaxhighlight lang="C#" >void NAPI.Chat.Sen...")
- 15:31, 26 November 2019 Muphy talk contribs created page NAPI.Blip.SetBlipScale (Created page with "Method allows the increase/decrease the size of a blip. ==Syntax== <pre>void NAPI.Blip.SetBlipScale(Blip blip, float scale);</pre> === Required Arguments === *'''blip''': pa...")
- 15:29, 26 November 2019 Muphy talk contribs created page NAPI.Blip.SetBlipPosition (Created page with "Sets the position of a blip. ==Syntax== <pre>void NAPI.Blip.SetBlipPosition(Blip blip, Vector3 newPos);</pre> === Required Arguments === *'''blip''': The blip to set the pos...")
- 15:27, 26 November 2019 Muphy talk contribs created page NAPI.Blip.SetBlipName (Created page with "Sets the name of a blip. A blip's name is a title which can be viewed through the game map. ==Syntax== <pre>void NAPI.Blip.SetBlipName(Blip blip, string name);</pre> === Req...")
- 15:23, 26 November 2019 Muphy talk contribs created page NAPI.Blip.SetBlipColor (Created page with "Sets the color of a blip. ==Syntax== <pre>void NAPI.Blip.SetBlipColor(Blip blip, int color);</pre> === Required Arguments === *'''blip:''' The blip to get the color from. Pa...")
- 15:17, 26 November 2019 Muphy talk contribs created page NAPI.Blip.GetBlipTransparency (Created page with "Gets the transparency (alpha) of a blip. ==Syntax== <pre>int NAPI.Blip.GetBlipTransparency(Blip blip);</pre> === Required Arguments === *'''blip:''' The blip to get the tran...")
- 15:16, 26 November 2019 Muphy talk contribs created page NAPI.Blip.GetBlipSprite (Created page with "Gets the sprite (icon type) of a blip. ==Syntax== <pre>uint NAPI.Blip.GetBlipSprite(Blip blip);</pre> === Required Arguments === *'''blip:''' The blip to get the sprite from...")
- 15:15, 26 November 2019 Muphy talk contribs created page NAPI.Blip.GetBlipShortRange (Created page with "Gets the range status of a blip. ==Syntax== <pre>bool NAPI.Blip.GetBlipShortRange(Blip blip);</pre> === Required Arguments === *'''blip:''' The blip to get the range status...")
- 15:13, 26 November 2019 Muphy talk contribs created page NAPI.BlipGetBlipShortRange (Created page with "Gets the range status of a blip. ==Syntax== <pre>bool NAPI.Blip.GetBlipShortRange(Blip blip);</pre> === Required Arguments === *'''blip:''' The blip to get the range status...")
- 15:09, 26 November 2019 Muphy talk contribs created page NAPI.Blip.GetBlipScale (Created page with "==Syntax== <pre>Vector3 NAPI.Blip.GetBlipScale(Blip blip);</pre> === Required Arguments === *'''blip:''' The blip to get the scale from. Parameter input should be in '''Blip'...")
- 15:01, 26 November 2019 Muphy talk contribs created page NAPI.Blip.GetBlipPosition (Created page with "==Syntax== <pre>Vector3 NAPI.Blip.GetBlipPosition(Blip blip);</pre> === Required Arguments === *'''blip:''' The blip to get the position from. Parameter input should be in ''...")
- 10:45, 26 November 2019 User account Muphy talk contribs was created