20.01.2010, 17:20
I would like to do a command /dmv = it teleportes the player to the dmv test
Is correct?
Код:
if(!strcmp(cmdtext,"/dmv",true))
{
if(IsPlayerConnected(playerid))
{
if (PlayerInfo[playerid][pAdmin] >= 1 || PlayerInfo[playerid][pModerator] >= 1)
{
SetPlayerPos(playerid,1742.2769,-1861.6323,13.5773);
return 1;
}
return 0;
}

