RemoveResourceDefaultSetting: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove issue from deprecated function)
 
Line 26: Line 26:
end)
end)
</syntaxhighlight>
</syntaxhighlight>
==Issues==
{{Issues|
{{Issue|5254|Does not work functions setResourceDefaultSetting and removeResourceDefaultSetting}}
}}


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

Latest revision as of 10:41, 30 January 2022

Dialog-warning.png Function has been disabled.

Reason/Note: This function doesn't work actually. See issues for more information.

This function is used to remove a default setting from specified resource.

Syntax

bool removeResourceDefaultSetting ( resource theResource, string settingName ) 

Required Arguments

  • theResource: the resource which setting is to be removed
  • settingName: name of the default setting which is to be removed

Returns

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

Example

This example would check if the server has the freeroam resource and removes the default settings called "spawnmaponstart".

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

See Also