18.08.2015, 03:23
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.

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