13.11.2011, 16:43
As you have ready my post of the logo .. I have downloaded the Textdraw editor 1.0 and made one!! I have saved it as a
filterscript and when i load itz not coming ... i have made it.... if you want the code and if u think itz the code problem here it iz... Can u give me a tutorial or something how to make it in game?? I know how to make the textdraw but itz nt loading in the game...
here is code
Is there anything wid this?
filterscript and when i load itz not coming ... i have made it.... if you want the code and if u think itz the code problem here it iz... Can u give me a tutorial or something how to make it in game?? I know how to make the textdraw but itz nt loading in the game...
here is code
Код:
#include <a_samp>
new Text:Textdraw0;
public OnFilterScriptInit()
{
print("Textdraw file generated by");
print(" Zamaroht's textdraw editor was loaded.");
// Create the textdraws:
Textdraw0 = TextDrawCreate(466.000000, 315.000000, "Crazy Generations");
TextDrawBackgroundColor(Textdraw0, -1);
TextDrawFont(Textdraw0, 0);
TextDrawLetterSize(Textdraw0, 0.709999, 3.099998);
TextDrawColor(Textdraw0, -16776961);
TextDrawSetOutline(Textdraw0, 1);
TextDrawSetProportional(Textdraw0, 1);
for(new i; i < MAX_PLAYERS; i ++)
{
if(IsPlayerConnected(i))
{
TextDrawShowForPlayer(i, Textdraw0);
}
}
return 1;
}
public OnFilterScriptExit()
{
TextDrawHideForAll(Textdraw0);
TextDrawDestroy(Textdraw0);
return 1;
}
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid, Textdraw0);
return 1;
}


