How to make a autotext
#7

TextDrawn:
pawn Код:
#include <a_samp>

new Text:Textdraw0;

public OnFilterScriptInit()
{
    SetTimer("Announcement",300000,true);
   
    Textdraw0 = TextDrawCreate(10.000000, 320.000000, "~g~~h~Visit My WebSite~w~ : example~g~~h~.~w~com~g~~h~.~w~br");
    TextDrawBackgroundColor(Textdraw0, 255);
    TextDrawFont(Textdraw0, 1);
    TextDrawLetterSize(Textdraw0, 0.310000, 1.899999);
    TextDrawColor(Textdraw0, -1);
    TextDrawSetOutline(Textdraw0, 1);
    TextDrawSetProportional(Textdraw0, 1);

    return 1;
}

forward Announcement(playerid);
public Announcement(playerid)
{
    TextDrawShowForPlayer(playerid, Textdraw0);
    SetTimerEx("ExitText", 5000, false, "d", playerid); // 5 Seconds.
    return 1;
}

forward ExitText(playerid);
public ExitText(playerid){TextDrawHideForPlayer(playerid, Textdraw0);}
Reply


Messages In This Thread
How to make a autotext - by Gogeta - 06.07.2012, 13:16
Re: How to make a autotext - by Gamer_007 - 06.07.2012, 13:19
Re: How to make a autotext - by Gogeta - 06.07.2012, 14:01
Re: How to make a autotext - by clarencecuzz - 06.07.2012, 14:05
Re: How to make a autotext - by Gogeta - 06.07.2012, 14:10
Re: How to make a autotext - by milanosie - 06.07.2012, 14:15
Re: How to make a autotext - by cJMaster_ - 06.07.2012, 14:15
Re: How to make a autotext - by clarencecuzz - 06.07.2012, 14:15
Re: How to make a autotext - by kaloqn54 - 06.07.2012, 14:16
Re: How to make a autotext - by cJMaster_ - 06.07.2012, 14:18

Forum Jump:


Users browsing this thread: 2 Guest(s)