13.07.2009, 14:42
How i can make that a player from Croatia can use just skin id 0, 1, 2 or if he is from serbia just 3, 4, 5.
if(GetPlayerIp(playerid) == and the ip of someone who lives in Croatia)
public SetPlayerTeamFromClass(playerid, classid)
{
if (classid == 0 || classid == 1 || classid == 2 )
{
gTeam[playerid] = TEAM_CRO;
}
else if GetPlayerIp(playerid) == and the ip of someone who lives in Serbia)
{
else if (classid == 3 || classid == 4 || classid == 5 )
{
gTeam[playerid] = TEAM_SERBIA;
}
return 1;
}
if(GetPlayerIp(playerid) == and the ip of someone who lives in Croatia)
public SetPlayerTeamFromClass(playerid, classid)
{
if (classid == 0 || classid == 1 || classid == 2 )
{
gTeam[playerid] = TEAM_CRO;
}
else if GetPlayerIp(playerid) == and the ip of someone who lives in Serbia)
{
else if (classid == 3 || classid == 4 || classid == 5 )
{
gTeam[playerid] = TEAM_SERBIA;
}
return 1;
}