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)
 
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 11: Line 11:


== Example ==
== Example ==
 
<source lang=squirrel>
function onPlayerCommand(player,cmd)
function onPlayerCommand(player,cmd,text)
{
{
     if(cmd=="skinID")
     if(cmd=="skinID")
Line 23: Line 23:
     }
     }
}
}
</source>
== Related Functions ==
{{Scripting/Squirrel/Functions/Server_Settings}}
[[Category:Scripting/Squirrel/Functions/Server_Settings _Functions]]

Latest revision as of 19:16, 30 January 2017

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.
            }
     }
}

Related Functions