Necesito ayuda con un textdraw
#1

public OnPlayerConnect(playerid)
{
new Text:TCJ;
TCJ = TextDrawCreate(20.0, 325.0, "THE CRAZY JUMPS");
TextDrawColor(TCJ, 0x0033FF);
TextDrawShowForAll(TCJ);
}
Tengo esto pero no me va bien ya que me aparece doble el texto......GrAcIaS::::::::::
Reply
#2

estб mal creado ese textdraw, deberнas crearlo en OnGameModeInit y mostrarlo a cada jugador cuando se conecte... asн:

pawn Код:
new Text:TCJ;

public OnGameModeInit()
{
    TCJ = TextDrawCreate(20.0, 325.0, "THE CRAZY JUMPS");
    TextDrawColor(TCJ, 0x0033FF);
    return 1;
}

public OnPlayerConnect(playerid)
{
    TextDrawShowForPlayer(playerid,TCJ);
    return 1;
}
Sale asн doble porque tiene sombra, colуcale la sombra a 0 en OnGameModeInit...

pawn Код:
TextDrawSetShadow(TCJ,0);
Reply
#3

MUCHAS gracias, controlo bastante de scripts, pero en esto si que me pillas que no lo entiendo mucho, lo del texdraw
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)