SetResourceInfo: Difference between revisions
Jump to navigation
Jump to search
(add oop syntax) |
No edit summary |
||
Line 2: | Line 2: | ||
{{server function}} | {{server function}} | ||
This function sets the value of any attribute in a resource info tag. | This function sets the value of any attribute in a resource info tag. | ||
{{Note|This function requires the resource to have 'ModifyOtherObjects' [[ACL]] right.}} | |||
==Syntax== | ==Syntax== |
Revision as of 05:18, 11 August 2019
This function sets the value of any attribute in a resource info tag.
Syntax
bool setResourceInfo ( resource theResource, string attribute, string value )
OOP Syntax Help! I don't understand this!
- Method: resource:setInfo(...)
Required Arguments
- theResource: the resource we are setting info to.
- attribute: the name of the attribute that is to be set.
- value: the value of this attribute
Returns
Returns true if the info was successfully set, false otherwise
Example
This function sets the author of the current resource.
function outputAuthor(newAuthorName) author = getResourceInfo ( getThisResource(), "author" ) --Get the authors name if author then --if it exists outputChatBox( author .. " made this script." ) --tell the world his name else --if it doesn't setResourceInfo ( getThisResource(), "author", newAuthorName ) outputChatBox( "Author set to: "..newAuthorName ) --tell them that it was set end end
See Also
- abortRemoteRequest
- call
- fetchRemote
- getResourceConfig
- getResourceDynamicElementRoot
- getResourceExportedFunctions
- getResourceFromName
- getResourceName
- getResourceRootElement
- getResourceState
- getThisResource
- getRemoteRequests
- getRemoteRequestInfo