SetResourceDefaultSetting: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
{{Needs Checking|Is this function still incomplete? --[[User:Winky-|Winky-]] 16:33, 23 December 2011 (CET)}}
{{Needs Example}}
__NOTOC__  
__NOTOC__  
{{Server function}}
{{Server function}}
This function is used to set a default setting for a specified [[resource]].
This function is used to set a default setting for a specified [[resource]].
<!-- What are default settings? -->
<!-- What are default settings? -->
[[Category:Incomplete]] <!-- Do not remove unless you finish the documentation. -->


==Syntax==  
==Syntax==  
Line 21: Line 18:


==Example==
==Example==
<syntaxhighlight lang="lua">
This example checks to see if the server has the freeroam server then sets "spawnmaponstart" to "false".
--TODO
<syntaxhighlight lang="lua">addEventHandler("onResourceStart",resourceRoot,function()
local freeroamRes = getResourceFromName("Freeroam")
if(freeroamRes)then
setResourceDefaultSetting(freeroamRes,"spawnmaponstart","false")
end
end)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Resource_functions}}
{{Resource_functions}}

Revision as of 03:08, 27 June 2012

This function is used to set a default setting for a specified resource.

Syntax

bool setResourceDefaultSetting ( resource theResource, string settingName, string/int/float settingValue )

Required Arguments

  • theResource: the resource where the setting is located
  • settingName: the name of the default setting
  • settingValue: the new value of the setting

Returns

Returns true if the default setting was successfully set, false otherwise.

Example

This example checks to see if the server has the freeroam server then sets "spawnmaponstart" to "false".

addEventHandler("onResourceStart",resourceRoot,function()
	local freeroamRes = getResourceFromName("Freeroam")
	if(freeroamRes)then
		setResourceDefaultSetting(freeroamRes,"spawnmaponstart","false")
	end
end)

See Also