GetResourceInfo: Difference between revisions
Jump to navigation
Jump to search
Black Dragon (talk | contribs) mNo edit summary |
Black Dragon (talk | contribs) mNo edit summary |
||
Line 1: | Line 1: | ||
{{Needs_Checking|may return a string, bool or nil (?) --[[User:Jbeta|jbeta]]}} | {{Needs_Checking|may return a string, bool or nil (?) --[[User:Jbeta|jbeta]]}} | ||
__NOTOC__ | __NOTOC__ | ||
{{server function}} | |||
This function retrieves the value of any attribute in a resource info tag. | This function retrieves the value of any attribute in a resource info tag. | ||
Revision as of 11:29, 11 August 2007
This article needs checking. | |
Reason(s): may return a string, bool or nil (?) --jbeta |
This function retrieves the value of any attribute in a resource info tag.
Syntax
string getResourceInfo ( resource theResource, string attribute )
Required Arguments
- theResource: the resource we are getting the info from.
- attribute: the name of the attribute we want info about.
Returns
Returns a string with the attribute value if it exists, false otherwise.
Example
This function tells the server who's the author who made the currently running resource.
function outputAuthor() 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 outputChatBox( "I've no idea who made this script." ) --apologize. end end
See Also
- abortRemoteRequest
- call
- fetchRemote
- getResourceConfig
- getResourceDynamicElementRoot
- getResourceExportedFunctions
- getResourceFromName
- getResourceName
- getResourceRootElement
- getResourceState
- getThisResource
- getRemoteRequests
- getRemoteRequestInfo