AddCommand: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
Line 9: Line 9:
{{FuncParam|LuaFunction|The function name.}}
{{FuncParam|LuaFunction|The function name.}}


{{FuncReturnValue|None.}}
{{FuncReturnValue|Returns '''true''' on success.}}


== Example ==
== Example ==

Latest revision as of 21:29, 6 October 2020

AddCommand

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

Description

Adds a command that can be executed with the prefix /.

Syntax

AddCommand(CommandName, LuaFunction)

Parameters

  • CommandName
    The specified command name. Command names are always lower case.
  • LuaFunction
    The function name.

Return Value

  • Returns true on success.

Example

function cmd_commands(playerid)
	AddPlayerChat(playerid, "You just executed a command!")
	return
end
AddCommand("commands", cmd_commands)
AddCommand("cmds", cmd_commands)

See also