[Tutorial] Simple TextDraw with Players OnLine
#1

Hello, today i will show You, how to do a Simple TextDraw with Players Online

So Let's Start

First, we must put on the Top of the FilterScript/GameMode this:

Код:
new Text:players;
Now serach the Public OnGameModeInit/OnFilterScriptInit and put this

Код:
        // TextDraw for Players Online
	players = TextDrawCreate(54.000000, 326.000000, "_");
	TextDrawBackgroundColor(players, 255);
	TextDrawFont(players, 2);
	TextDrawLetterSize(players, 0.500000, 1.000000);
	TextDrawColor(players, -65281);
	TextDrawSetOutline(players, 1);
	TextDrawSetProportional(players, 1);
	
	for(new i; i < MAX_PLAYERS; i ++)
	{
		if(IsPlayerConnected(i))
		{
			TextDrawShowForPlayer(i, players);
		}
	}
OK, TextDraw Created But now we must show it for Players, so in public OnPlayerConnect put this:

Код:
        new strings[15];
	format(strings, 15, "%d/50",GetOnLinePlayers());
	TextDrawSetString(players, strings);
	TextDrawShowForPlayer(playerid, players);
In public OnGameModeExit/OnFilterScriptExit put this:

Код:
	TextDrawHideForAll(players);
	TextDrawDestroy(players);
And at the Finish of GM/FS put this:

Код:
stock GetOnLinePlayers()
{
	new OnLine;
	for(new i, g = GetMaxPlayers(); i < g; i++)
		if(IsPlayerConnected(i))
			OnLine++;
	return OnLine;
}
Now we are Ready, compile the GM/FS and have Fun

Result:



Sorry for my bad English :P
Reply


Messages In This Thread
Simple TextDraw with Players OnLine - by Djalo - 17.08.2010, 10:11
Re: Simple TextDraw with Players OnLine - by Retardedwolf - 17.08.2010, 10:32
Re: Simple TextDraw with Players OnLine - by Djalo - 17.08.2010, 14:11
Re: Simple TextDraw with Players OnLine - by pmk1 - 17.08.2010, 15:47
Re: Simple TextDraw with Players OnLine - by vital2k - 17.08.2010, 15:48
Respuesta: Simple TextDraw with Players OnLine - by DarkChildren - 17.08.2010, 18:32
Re: Simple TextDraw with Players OnLine - by Smokey619 - 17.08.2010, 21:34
Re: Simple TextDraw with Players OnLine - by Djalo - 18.08.2010, 06:44
Respuesta: Simple TextDraw with Players OnLine - by Cacoby - 21.08.2010, 02:52
Respuesta: Simple TextDraw with Players OnLine - by DarkChildren - 21.08.2010, 03:02

Forum Jump:


Users browsing this thread: 2 Guest(s)