Skip to content

llGetExperienceErrorMessage

Requires Experience
string llGetExperienceErrorMessage(integer Error)

Returns a string describing the error code passed or the string corresponding with XP_ERROR_UNKNOWN_ERROR if the value is not a valid Experience error code.

Parameters
Error (integer)
An Experience error code to translate.
default
{
state_entry()
{
llOwnerSay(llGetExperienceErrorMessage(XP_ERROR_NONE));
}
}