OnScriptError: Difference between revisions

From Onset Developer Wiki
(Created page with "{{Info|Event|Client|1.0}} {{FuncDescription|Called when a script error occurs. This is only called when the game was started with the '''-dev''' switch.}} {{FuncSyntax|OnScr...")
 
No edit summary
Line 17: Line 17:


{{RelatedFunctions}}
{{RelatedFunctions}}
{{ClientEvents}}
*[[ClientEvents]]

Revision as of 07:23, 20 December 2019

OnScriptError

Type: Event
Context: Client
Introduced: v1.0

Description

Called when a script error occurs. This is only called when the game was started with the -dev switch.

Syntax

OnScriptError(message)

Parameters

  • message
    The script error message.

Example

function OnScriptError(message)
	AddPlayerChat('<span color="#ff0000bb" style="bold" size="10">'..message..'</>')
end
AddEvent("OnScriptError", OnScriptError)

See also