18.08.2015, 04:13
Alright,
here is my td code,
Got my creates
then on my custom PlayerLogin function i have
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);
Код:
new Text:RadioInfo[MAX_PLAYERS]; new Text:ChannelInfo[MAX_PLAYERS]; new Text:SlotInfo[MAX_PLAYERS];
Код:
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]);