Little Problem With kills/deaths Text Draw
#2

Seeing as how you are already adding to the deaths and kills here:
pawn Код:
Deaths[playerid]++;
   Kills[killerid]++;
   KillStreak[killerid]++;
Why are you adding again in the formatted string?
pawn Код:
format(kupdate,sizeof(kupdate),"Kills : %d",Kills[killerid]++);
Try
pawn Код:
format(kupdate,sizeof(kupdate),"Kills : %d",Kills[killerid]);
format(dupdate,sizeof(dupdate),"Deaths : %d",Deaths[playerid]);
Reply


Messages In This Thread
Little Problem With kills/deaths Text Draw - by Lazy_Duck - 18.07.2011, 14:07
Re: Little Problem With kills/deaths Text Draw - by Famalamalam - 18.07.2011, 15:31
Re: Little Problem With kills/deaths Text Draw - by Lazy_Duck - 18.07.2011, 15:43
Re: Little Problem With kills/deaths Text Draw - by Famalamalam - 18.07.2011, 15:48
Re: Little Problem With kills/deaths Text Draw - by Lazy_Duck - 18.07.2011, 19:15
Re: Little Problem With kills/deaths Text Draw - by Lazy_Duck - 18.07.2011, 21:40

Forum Jump:


Users browsing this thread: 1 Guest(s)