12.09.2010, 09:51
use
another version of what you want
pawn Код:
if (!strcmp("/breakout", cmdtext) )
pawn Код:
if(!strcmp("/breakout", cmdtext) )
{
if(!IsPlayerInRangeOfPoint(playerid, 2.0, 234.8687,1118.6041,1084.9922))return SendClientMessage(playerid, COLOR_WHITE,"You are not in /breakout checkpoint");
if (gTeam[playerid] == TEAM_BALLA)
{
SetPlayerPos(playerid,2482.2227,-1646.2852,18.3521);
SetPlayerInterior(playerid,0);
return 1;
}
if(gTeam[playerid] == OTHER_TEAM)
{
//other stuff for other teams
}
}

