Weird Error with a little line
#2

Missing a bracket.
pawn Код:
public PaintballEnded()
{
    new string[256];
    new name[MAX_PLAYER_NAME];
    for(new i = 0; i < PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if(PlayerPaintballing[i] != 0)
            {
                if(IsPlayerConnected(PaintballWinner))
                {
                    GetPlayerName(PaintballWinner, name, sizeof(name));
                    format(string,sizeof(string), "** %s won the Paintball Match with %d kills **",name,PaintballWinnerKills);
                    SendClientMessage(i, COLOR_WHITE, string);
                }
                AC_ResetPlayerWeapons(i);
                PlayerPaintballing[i] = 0;
                SetPlayerPos(i, SBizzInfo[10][sbEntranceX],SBizzInfo[10][sbEntranceY],SBizzInfo[10][sbEntranceZ]);
            }
        }
    }
    AnnouncedPaintballRound = 0;
    PaintballRound = 0;
    return 1;
}
Reply


Messages In This Thread
Weird Error with a little line - by Th3b3ast5 - 07.05.2013, 03:35
Re: Weird Error with a little line - by willsuckformoney - 07.05.2013, 04:32

Forum Jump:


Users browsing this thread: 5 Guest(s)