RenameResource

From Multi Theft Auto: Wiki
Revision as of 16:28, 17 October 2011 by Arran Fortuna (talk | contribs) (Created page with "{{New feature|3.0120|1.2| __NOTOC__ {{Server function}} This function renames a resource. ==Syntax== <syntaxhighlight lang="lua"> bool renameResource ( string resourceName, string newResourc...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function renames a resource.

Syntax

bool renameResource ( string resourceName, string newResourceName, [ string organizationalPath ] )

Required Arguments

  • resourceName: The name of resource to rename.
  • newResourceName: The name of what the resource should be renamed to.

Optional Arguments

  • organizationalPath: If you want to store the new resource inside a category.

Returns

Returns true if the resource has been renamed successfully, false otherwise. This could fail if the resource name already is in use, if a directory already exists with the name you've specified (but this isn't a valid resource) or if the name you specify isn't valid. It could also fail if the disk was full or for other similar reasons. Won't work on a started resource or if the resource is not loaded (not known by MTA (use /refresh))

Example

-- No example yet

See Also