Scripting/Squirrel/Functions/GetSkinID: Difference between revisions
Jump to navigation
Jump to search

This wiki is using an old backup from 2020
Some information may be old/missing
(This function returns skin id of name of a skin) |
(No difference)
|
Revision as of 08:57, 2 March 2015
Syntax
GetSkinID(string)
Arguments
string - Any string such as "hilary", "tommy", etc
Example
function onPlayerCommand(player,cmd) {
if(cmd=="skinID") { if(!text) MessagePlayer("Syntax: /skinID <text>"); else { MessagePlayer(GetSkinID(text).tostring(),player); //This command returns the skin id of the name of skin. } }
}