OnPlayerSpawn, check player team and spam the SendClientMessage if there is
#1

Код:
public OnPlayerSpawn ( playerid ) {
    for(new i = 0; i < GetMaxPlayers(); i++)
      {
        if (gTeam[playerid] == TEAM_POLICE){
        new vR = random(sizeof(Vrand));
    	SetPlayerPos(playerid, Vrand[vR][0], Vrand[vR][1], Vrand[vR][2]);
    	SendClientMessage(playerid, 0xFFFFFFFF, "Police!");
        }
        else if (gTeam[playerid] == TEAM_SWAT){
        new vR = random(sizeof(Vrand));
    	SetPlayerPos(playerid, Vrand[vR][0], Vrand[vR][1], Vrand[vR][2]);
    	SendClientMessage(playerid, 0xFFFFFFFF, "SWAT!");
        }
        else if (gTeam[playerid] == TEAM_TERRORISTS){
        new vR = random(sizeof(Vrand));
    	SetPlayerPos(playerid, Vrand[vR][0], Vrand[vR][1], Vrand[vR][2]);
    	SendClientMessage(playerid, 0xFFFFFFFF, "Terrorists!");
        }
        else if (gTeam[playerid] == TEAM_HUNTERS){
        new vR = random(sizeof(Vrand));
    	SetPlayerPos(playerid, Vrand[vR][0], Vrand[vR][1], Vrand[vR][2]);
    	SendClientMessage(playerid, 0xFFFFFFFF, "Hunters!");
        }
      }
}
So this is the code, if i choose team and spawn with it the text EX:
Quote:

SendClientMessage(playerid, 0xFFFFFFFF, "Hunters!");

many times,
Код:
new vR = random(sizeof(Vrand));
    	SetPlayerPos(playerid, Vrand[vR][0], Vrand[vR][1], Vrand[vR][2]);
this code i took from one random spawn tutorial from here.... I don't know why this happening but i need help

// I think is cause of loop
Код:
for(new i = 0; i < GetMaxPlayers(); i++)
It's spammed 30 times = max slots in my server... So.. IDK from here

THx.. for help , i shall rep you (and sorry for bad english)...
Reply


Messages In This Thread
OnPlayerSpawn, check player team and spam the SendClientMessage if there is - by [LvZ]Free - 16.05.2012, 14:49
Re: OnPlayerSpawn, check player team and spam the SendClientMessage if there is - by ViniBorn - 16.05.2012, 14:50
Re: OnPlayerSpawn, check player team and spam the SendClientMessage if there is - by Vince - 16.05.2012, 14:51
Re: OnPlayerSpawn, check player team and spam the SendClientMessage if there is - by [LvZ]Free - 16.05.2012, 15:01

Forum Jump:


Users browsing this thread: 1 Guest(s)