Textdraw help
#4

Okay here is a simple example using zcmd for the command:

pawn Код:
new numberdraw[500];

CMD:addnumber(playerid, params[])
{
    if(!params[0]) return SendClientMessage(playerid, color, "Usage: /addnumber [number]");
    strcat(numberdraw, params);
    SendClientMessage(playerid, color, "The number has been added");
    return 1;
}
Then you can simply display the string using a textdraw as usual, does that help?

The only problem is that you'll need quite a big array to handle all of the data.
Reply


Messages In This Thread
Textdraw help - by idgl3on - 16.08.2011, 08:38
Re: Textdraw help - by JaTochNietDan - 16.08.2011, 09:23
Re: Textdraw help - by idgl3on - 16.08.2011, 09:25
Re: Textdraw help - by JaTochNietDan - 16.08.2011, 09:32
Re: Textdraw help - by idgl3on - 16.08.2011, 09:34
Re: Textdraw help - by JaTochNietDan - 16.08.2011, 09:36
Re: Textdraw help - by idgl3on - 16.08.2011, 09:40
Re: Textdraw help - by [HiC]TheKiller - 16.08.2011, 09:41
Re: Textdraw help - by JaTochNietDan - 16.08.2011, 09:52
Re: Textdraw help - by [HiC]TheKiller - 16.08.2011, 10:08

Forum Jump:


Users browsing this thread: 1 Guest(s)