06.01.2014, 18:38
(
Последний раз редактировалось boomerboom; 06.01.2014 в 20:26.
)
[FONT="Impact"]
Hello!Today I am gonna release my first Include!
I hope this helps you guys!
To make it work make this:
Take a look at the code:
Download:
Look up.
Hello!Today I am gonna release my first Include!
I hope this helps you guys!
To make it work make this:
Код:
#include <a_samp> #include <TXD> //.......
Код:
#include <a_samp>
stock C_TextDrawCreate(ID,posx,posy,string[],bgcolor,color,font,outline,proportionality,size1,size2)
{
ID = TextDrawCreate(posx, posy, string[]);
TextDrawBackgroundColor(ID, bgcolor);
TextDrawFont(ID, font);
TextDrawLetterSize(ID, size1, size2);
TextDrawColor(ID, color);
TextDrawSetOutline(ID, outline);
TextDrawSetProportional(ID, proportionality);
}
stock C_TextDrawShowForPlayer(playerid, ID)
{
TextDrawShowForPlayer(playerid, ID);
}
stock C_TextDrawShowForAll(ID)
{
TextDrawShowForAll(ID);
}
stock C_TextDrawHideForPlayer(playerid, ID)
{
TextDrawHideForPlayer(playerid, ID);
}
stock C_TextDrawHideForAll(ID)
{
TextDrawShowForAll(ID);
}
Look up.
