RemoveResourceDefaultSetting

From Multi Theft Auto: Wiki
Revision as of 15:59, 24 December 2014 by Strix (talk | contribs)
Jump to navigation Jump to search

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)

Issues

Issue ID Description
#5254 Does not work functions setResourceDefaultSetting and removeResourceDefaultSetting

See Also