20.08.2010, 18:03
I created Variable :
new Kills = 1;
When I write command /add , Variable doesn't incerace by 2.
I check with :
and it's still 1.
Maybe can anyone help or say how to incerace value of variable Kills ?
Please help, Thanx.
new Kills = 1;
When I write command /add , Variable doesn't incerace by 2.
Quote:
if (strcmp("/add", cmdtext, true, 10) == 0) { Kills += 2; return 1; } |
Quote:
new statistic[128]; format(statistic,sizeof(statistic), "Team 1 Score: %d",Kills ); SendClientMessage(playerid,COLOR,statistic); |
Maybe can anyone help or say how to incerace value of variable Kills ?
Please help, Thanx.