24.10.2011, 18:02
Well, it shouldn't be:
?
pawn Код:
if(killerid == player1 && playerid == player2)
{
new string[256];
player1score++;
format(string,256,"%i",player1score);
TextDrawSetString(Textdraw0,string);
}
if(killerid == player2 && playerid == player1)
{
new string[256];
player2score++;
format(string,256,"%i",player2score); // Player2score
TextDrawSetString(Textdraw1,string);
}