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
(This function returns skin id of name of a skin)
 
Line 12: Line 12:
== Example ==
== Example ==


function onPlayerCommand(player,cmd)
function onPlayerCommand(player,cmd,text)
{
{
     if(cmd=="skinID")
     if(cmd=="skinID")

Revision as of 09:00, 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.
           }
    }

}