textdraw don't work
#1

hi! i had made a textdraw but doesn't work ?

Код:
new Text:tutorial;

public OnPlayerConnect(playerid)
{
    TextDrawShowForPlayer(playerid, tutorial);

public OnGameModeInit()
{
	// TextDraw for Tutorial
    tutorial = TextDrawCreate(547 ,452 , "begamer");
    TextDrawFont(tutorial , 0);
    TextDrawLetterSize(tutorial , 0.5, 3.5);
    TextDrawColor(tutorial , 0xaeff00FF);
    TextDrawSetOutline(tutorial , true);
    TextDrawSetProportional(tutorial , true);
    TextDrawSetShadow(tutorial , 1);
Reply
#2

I hate bad grammar.

its doesn't not don't work...
Reply
#3

Try to use this one !

pawn Код:
public OnGameModeInit()
{
    // TextDraw for Tutorial
    tutorial = TextDrawCreate(547.000000 ,452.000000 , "begamer");
    TextDrawFont(tutorial , 0);
    TextDrawLetterSize(tutorial , 0.500000, 3.500000);
    TextDrawColor(tutorial , 0xaeff00FF);
    TextDrawSetOutline(tutorial , true);
    TextDrawSetProportional(tutorial , true);
    TextDrawSetShadow(tutorial , 1);

    return 1;
}

public OnPlayerConnect(playerid)
{
    TextDrawShowForPlayer(playerid, tutorial);
    return 1;
}
Reply
#4

doesnt work
Reply
#5

Quote:
Originally Posted by TuTh
Посмотреть сообщение
doesnt work
was your script compiled with out any erros ? If any error so post it here and impossible ":
Reply
#6

no errors
Reply
#7

make sure that you have named this filterscript in your "server.cfg" and then i dont think there might be any thing which we have missed up and we have forworded to show this textdraw on player conect :
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)