SA-MP Forums Archive
textdraw help (+rep) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: textdraw help (+rep) (/showthread.php?tid=585961)



textdraw help (+rep) - NickMirra - 18.08.2015

Aight yo. thanks to anyone to attempts to help as soon as possible. i have made some tds, and added a new slot = GetPlayerSlot because we have a Channel and a Slot System, here is the code for my tds, im trying to get it so it reads what channel you're in.

Screenshot of what the tds look like ig.


Код:
	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);
	
	new slot = GetPlayerSlot(playerid);
	new channel = GetChannelFromSlot(playerid, slot);
	ChannelInfo[playerid] = TextDrawCreate(520.000000, 117.000000, "~b~Chan = ~w~%d", channel);
	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 = ~w~%d", slot);
	TextDrawBackgroundColor(SlotInfo[playerid],0x000000ff);
	TextDrawFont(SlotInfo[playerid], 3);
	TextDrawLetterSize(SlotInfo[playerid], 0.40, 1.0);
	TextDrawColor(SlotInfo[playerid],0xffffffff);
	TextDrawSetShadow(SlotInfo[playerid], 1);



Re: textdraw help (+rep) - Variable™ - 18.08.2015

Код:
    new string[20];
    format(string, sizeof(string), "Chan = ~w~%d", channel);
    TextDrawSetString(slot, string);
This is for the " slot " textdraw.
Код:
    new string2[20];
    format(string2, sizeof(string2), "Slot = ~w~%d",  slot);
    TextDrawSetString(playerid, SlotInfo[playerid], string2);
This is for the " SlotInfo[playerid] " textdraw.


Re: textdraw help (+rep) - NickMirra - 18.08.2015

Quote:
Originally Posted by 1Deagle1
Посмотреть сообщение
Код:
    new string[20];
    format(string, sizeof(string), "Chan = ~w~%d", channel);
    TextDrawSetString(slot, string);
This is for the " slot " textdraw.
Код:
    new string2[20];
    format(string, sizeof(string), "Slot = ~w~%d",  slot);
    TextDrawSetString(playerid, SlotInfo[playerid], string);
This is for the " SlotInfo[playerid] " textdraw.
I do not get it, you sent alittle bit of both channel and slot, where do i put this right above the slot td?


Re: textdraw help (+rep) - Variable™ - 18.08.2015

Deleted.


Re: textdraw help (+rep) - NickMirra - 18.08.2015

Quote:
Originally Posted by 1Deagle1
Посмотреть сообщение
Updated** I did a small mistake but fixed it D:

Put this under "OnPlayerConnect"
Alright and do i want to empty the textdraw box or keep it the same?


Re: textdraw help (+rep) - Variable™ - 18.08.2015

Keep everything as it is, it will be automatically changed.


Re: textdraw help (+rep) - NickMirra - 18.08.2015

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]);



Re: textdraw help (+rep) - NickMirra - 18.08.2015

bump


Re: textdraw help (+rep) - Variable™ - 18.08.2015

Deleted.


Re: textdraw help (+rep) - NickMirra - 18.08.2015

Quote:
Originally Posted by 1Deagle1
Посмотреть сообщение
Код:
    TextDrawSetString(slot, string);
    TextDrawSetString(playerid, SlotInfo[playerid], string2);
Now fixed.
// put this under " public LoginPlayer(playerid) "

Note always make "new's" at the top.
Example:
Код:
public LoginPlayer(playerid)
{
    new string[20], string2[20];
    // The other code(s)
Thank you very much. repped good sir.