IsValidDoor: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Server & Client|1.0}} {{FuncDescription|Checks whether a given door identifier is a valid door.}} {{FuncSyntax|IsValidDoor(door)}} {{FuncParameters}} {{Func..." |
No edit summary |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{Info|Function|Server | {{Info|Function|Client & Server|1.0}} | ||
{{FuncDescription|Checks whether a given door identifier is a valid door.}} | {{FuncDescription|Checks whether a given door identifier is a valid door.}} | ||
Line 8: | Line 8: | ||
{{FuncParam|door|The dooridentifier to check.}} | {{FuncParam|door|The dooridentifier to check.}} | ||
{{FuncReturnValue|Returns '''true''' on success | {{FuncReturnValue|Returns '''true''' on success.}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua> | |||
AddCommand("destroydoor", function(playerid, doorid) | |||
doorid = tonumber(doorid) | |||
if IsValidDoor(doorid) then | |||
return AddPlayerChat(playerid, "Invalid door Id specified.") | |||
end | |||
DestroyDoor(doorid) | |||
AddPlayerChat(playerid, "You destroyed the door ("..doorid..")") | |||
return | |||
end) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
* [[CreateDoor]] | |||
* [[DestroyDoor]] | |||
* [[IsValidDoor]] |
Latest revision as of 13:56, 10 November 2021
Description
Checks whether a given door identifier is a valid door.
Syntax
IsValidDoor(door)
Parameters
- door
The dooridentifier to check.
Return Value
- Returns true on success.
Example
AddCommand("destroydoor", function(playerid, doorid)
doorid = tonumber(doorid)
if IsValidDoor(doorid) then
return AddPlayerChat(playerid, "Invalid door Id specified.")
end
DestroyDoor(doorid)
AddPlayerChat(playerid, "You destroyed the door ("..doorid..")")
return
end)