RemoveResourceFile: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 17: Line 17:


==Example==
==Example==
This example removes a .txt file from the resource sx_remanager(in-game script editor) when started.
This example removes a .txt file from the resource sx_remanager(in-game script editor) when started. (TESTED!)
<syntaxhighlight lang="lua">addEventHandler("onResourceStart",resourceRoot,function()
<syntaxhighlight lang="lua">addEventHandler("onResourceStart",resourceRoot,function()
resource = getResourceFromName("sx_resmanager")
resource = getResourceFromName("sx_resmanager")

Revision as of 22:02, 27 April 2012

This function removes a file from the resource.

Syntax

bool removeResourceFile ( resource theResource, string fileName )

Required Arguments

  • theResource: The resource element.
  • fileName: The filename what you wan't to delete.

Returns

Returns true if file was deleted, otherwise false if the resource is in use or the file doesn't exist.

Example

This example removes a .txt file from the resource sx_remanager(in-game script editor) when started. (TESTED!)

addEventHandler("onResourceStart",resourceRoot,function()
	resource = getResourceFromName("sx_resmanager")
	removeResourceFile(resource,"description.txt")
end)

See Also