textdraw help (+rep)
#7

Alright,

here is my td code,

Код:
	RadioInfo[playerid] = TextDrawCreate(520.000000, 108.000000, "~b~Radio Info");
	TextDrawBackgroundColor(RadioInfo[playerid],0x000000ff);
	TextDrawFont(RadioInfo[playerid], 3);
	TextDrawLetterSize(RadioInfo[playerid], 0.40, 1.0);
	TextDrawColor(RadioInfo[playerid],0xffffffff);
	TextDrawSetShadow(RadioInfo[playerid], 1);

	ChannelInfo[playerid] = TextDrawCreate(520.000000, 117.000000, "~b~Chan =");
	TextDrawBackgroundColor(ChannelInfo[playerid],0x000000ff);
	TextDrawFont(ChannelInfo[playerid], 3);
	TextDrawLetterSize(ChannelInfo[playerid], 0.40, 1.0);
	TextDrawColor(ChannelInfo[playerid],0xffffffff);
	TextDrawSetShadow(ChannelInfo[playerid], 1);
	
	SlotInfo[playerid] = TextDrawCreate(520.000000, 126.000000, "~b~Slot =");
	TextDrawBackgroundColor(SlotInfo[playerid],0x000000ff);
	TextDrawFont(SlotInfo[playerid], 3);
	TextDrawLetterSize(SlotInfo[playerid], 0.40, 1.0);
	TextDrawColor(SlotInfo[playerid],0xffffffff);
	TextDrawSetShadow(SlotInfo[playerid], 1);
Got my creates
Код:
new Text:RadioInfo[MAX_PLAYERS];
new Text:ChannelInfo[MAX_PLAYERS];
new Text:SlotInfo[MAX_PLAYERS];
then on my custom PlayerLogin function i have
Код:
public LoginPlayer(playerid)
{
	new rows, fields;
	cache_get_data(rows, fields);
	if(rows)
	{
		new slot = GetPlayerSlot(playerid);
		new channel = GetChannelFromSlot(playerid, slot);
 		new string[20];
 		new string2[20];
    	format(string, sizeof(string), "~b~Chan = ~w~%d", channel);
    	TextDrawSetString(playerid, ChannelInfo[playerid], string);
    	format(string2, sizeof(string2), "~b~Slot = ~w~%d",  slot);
    	TextDrawSetString(playerid, SlotInfo[playerid], string2);
		KillTimer(LoginTimer{playerid});
		format(msg, sizeof(msg), "Welcome %s.", GetNameEx(playerid));
		ServerMSG(playerid, msg);
		OnAccountLoad(playerid);
		/*ShowHudTextDraws(playerid, 1);*/
		ShowTextDraw(playerid, RadioInfo[playerid]);
		ShowTextDraw(playerid, ServerDraw[playerid]);
		ShowTextDraw(playerid, ChannelInfo[playerid]);
		ShowTextDraw(playerid, SlotInfo[playerid]);
Reply


Messages In This Thread
textdraw help (+rep) - by NickMirra - 18.08.2015, 03:23
Re: textdraw help (+rep) - by Variable™ - 18.08.2015, 03:30
Re: textdraw help (+rep) - by NickMirra - 18.08.2015, 03:35
Re: textdraw help (+rep) - by Variable™ - 18.08.2015, 03:36
Re: textdraw help (+rep) - by NickMirra - 18.08.2015, 03:38
Re: textdraw help (+rep) - by Variable™ - 18.08.2015, 03:40
Re: textdraw help (+rep) - by NickMirra - 18.08.2015, 04:13
Re: textdraw help (+rep) - by NickMirra - 18.08.2015, 04:50
Re: textdraw help (+rep) - by Variable™ - 18.08.2015, 14:26
Re: textdraw help (+rep) - by NickMirra - 18.08.2015, 15:32

Forum Jump:


Users browsing this thread: 1 Guest(s)