Scripting/Squirrel/Functions/GetSkinID: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
Line 11: Line 11:


== Example ==
== Example ==
 
<source lang=squirrel>
function onPlayerCommand(player,cmd,text)
function onPlayerCommand(player,cmd,text)
{
{
Line 23: Line 23:
     }
     }
}
}
</source>

Revision as of 09:07, 2 March 2015

Syntax

GetSkinID(string)


Arguments

string - Any string such as "hilary", "tommy", etc


Example

function onPlayerCommand(player,cmd,text)
{
    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.
            }
     }
}