GetRuleValue: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
m (Reverted edits by Antymed (talk) to last revision by Talidan)
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:Incomplete]]
{{Server function}}
[[Category:Need Syntax]]
__NOTOC__
 
This function gets a rule value. A rule value is a string that can be viewed by server browsers and used for filtering the server list.
__NOTOC__  
This function is for blahblah.. not defined yet


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
INSERT SYNTAX HERE              
string getRuleValue ( string key )              
</syntaxhighlight>  
</syntaxhighlight>  


===Required Arguments===  
===Required Arguments===  
*'''argumentName:''' description
*'''key:''' The name of the rule
 
===Optional Arguments===
{{OptionalArg}}
*'''argumentName2:''' descriptiona
*'''argumentName3:''' description


===Returns===
===Returns===
Returns ''true'' if blah, ''false'' otherwise.
Returns a string containing the value set for the specified ''key'', ''false'' if invalid arguments were specified.


==Example==  
==Example==  
This example does...
This example shows how you can check if a rule is set.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--This line does...
if getRuleValue ( "myScriptRunning" ) then
blabhalbalhb --abababa
    -- the value is set
--This line does this...
end
mooo
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{FunctionArea_Functions}}
{{Announce functions}}

Latest revision as of 22:22, 27 May 2017

This function gets a rule value. A rule value is a string that can be viewed by server browsers and used for filtering the server list.

Syntax

string getRuleValue ( string key )              

Required Arguments

  • key: The name of the rule

Returns

Returns a string containing the value set for the specified key, false if invalid arguments were specified.

Example

This example shows how you can check if a rule is set.

if getRuleValue ( "myScriptRunning" ) then
    -- the value is set
end

See Also