key2name
From SmartBots Developers Docs
Jump to: navigation, search
...
...
Reference
This command accepts the following parameters:
| Variable | Required | Description
| |
|---|---|---|---|
| Input: | |||
| ... | yes | ... | |
| ... | yes | ... | |
| Output: | |||
| result | This function does not return anything | ||
Examples
var slname = "Glaznah Gassner";
Bot.name2key(slname)
.then(function(result) {
if(result.success) {
console.log("The UUID of " + slname + " is " + result.slkey);
} else {
console.log("Error executing name2key: " + result.error);
}
return Bot.key2name(result.slkey);
})
.then(function(result) {
console.log("Backward key2name check. Name: " + result.slname);
});
- key2name