Need to show kills
#2

pawn Код:
public OnGameModeInit()
{
SetTimer("MapKill1", 1000, 1);
SetTimer("MapKill2", 1000, 1);
return 1;
}

forward MapKill1();
public MapKill1()
{
TextDrawHideForAll(Textdraw12);
new string[16];
format(string, sizeof string, "%d", MapKillsSoldiers);
TextDrawSetString(Textdraw12, string);
TextDrawShowForAll(Textdraw12);
return 1;
}

forward MapKill2();
public MapKill2()
{
TextDrawHideForAll(Textdraw13);
new string[16];
format(string, sizeof string, "%d", MapKillsTerrorists);
TextDrawSetString(Textdraw13, string);
TextDrawShowForAll(Textdraw13);
return 1;
}
Reply


Messages In This Thread
Need to show kills - by Phyzic - 18.08.2014, 10:19
Re: Need to show kills - by jidavid - 18.08.2014, 10:28
Re: Need to show kills - by Stinged - 18.08.2014, 10:32
Re: Need to show kills - by Phyzic - 18.08.2014, 10:42
Re: Need to show kills - by Threshold - 18.08.2014, 11:05

Forum Jump:


Users browsing this thread: 1 Guest(s)