[AJUDA] Textdraw que pisca na intrudoзгo
#1

Galera nгo consigo coloca o textdraw na intruduзгo pra pisca, ele aparece mais nгo pisca.
Se alguem puder me ajuda agradeзo
pawn Код:
#define TextDrawShow TextDrawShowForAll(texto1);
    texto1 = TextDrawCreate(215.0,352.0,"[BRASIL]Exelent_Games[BoS]");
    TextDrawAlignment(texto1,0);
    TextDrawUseBox(texto1, false);
    TextDrawTextSize(texto1,650.0,3.0);
    TextDrawFont(texto1,1);
    TextDrawSetProportional(texto1,1);
    TextDrawSetOutline(texto1,1);
    TextDrawLetterSize(texto1,0.359999,1.400000);
    TextDrawSetShadow(texto1,0);
    TextDrawShowForAll(texto1);
    pText = false;
    if(pText == 0)
    {

        TextDrawColor(texto1, COR_TEXT_1);
        TextDrawShow
        pText = 1;
    }
    else if(pText == 1)
    {

        TextDrawColor(texto1, COR_TEXT_2);
        TextDrawShow
        pText = 2;
    }
    else if(pText == 2)
    {

        TextDrawColor(texto1, COR_TEXT_3);
        TextDrawShow
        pText = 3;
    }
    else if(pText == 3)
    {

        TextDrawColor(texto1, COR_TEXT_4);
        TextDrawShow
        pText = 4;
    }
    else if(pText == 4)
    {

        TextDrawColor(texto1, COR_TEXT_5);
        TextDrawShow
        pText = 0;
    }
    else
{
        TextDrawShowForAll(texto1);
        pText = true;
        SetTimerEx("texto1", 1000, true, "i", -1);
}
tentei desse jeito, mais Fail.
Reply
#2

pText = false; ?
Muda pra pText ++;
e muda
pawn Код:
else
{
        TextDrawShowForAll(texto1);
        pText = true;
        SetTimerEx("texto1", 1000, true, "i", -1);
}
pra
pawn Код:
else
{
        TextDrawShowForAll(texto1);
        pText = 0;
        SetTimerEx("texto1", 1000, true, "i", -1);
}
Reply
#3

Quote:
Originally Posted by dMagnus
Посмотреть сообщение
pText = false; ?
Muda pra pText ++;
e muda
pawn Код:
else
{
        TextDrawShowForAll(texto1);
        pText = true;
        SetTimerEx("texto1", 1000, true, "i", -1);
}
pra
pawn Код:
else
{
        TextDrawShowForAll(texto1);
        pText = 0;
        SetTimerEx("texto1", 1000, true, "i", -1);
}
deu nгo, a cor tava vermelho, dps mudei pra isso ae e a cor ficou amarelo mais nгo chegou a piscar.
Reply
#4

Alguem ai pode dar um empurrгozinho, ja tentei de diversas formas mais nгo consigo resolver esse problema.
Grato!
Reply
#5

Caso, Nгo funcione. Crie uma Bool, pois tou com preguiзa.. xD
pawn Код:
#define TextDrawShow TextDrawShowForAll(texto1);
    texto1 = TextDrawCreate(215.0,352.0,"[BRASIL]Exelent_Games[BoS]");
    TextDrawAlignment(texto1,0);
    TextDrawUseBox(texto1, false);
    TextDrawTextSize(texto1,650.0,3.0);
    TextDrawFont(texto1,1);
    TextDrawSetProportional(texto1,1);
    TextDrawSetOutline(texto1,1);
    TextDrawLetterSize(texto1,0.359999,1.400000);
    TextDrawSetShadow(texto1,0);
    TextDrawShowForAll(texto1);
    pText = false;
    if(pText == 0)
    {
        TextDrawShowForPlayer(playerid, texto1);
        TextDrawColor(texto1, COR_TEXT_1);
        TextDrawShow
        pText = 1;
    }
    if(pText == 1)
    {
        TextDrawShowForPlayer(playerid, texto1);
        TextDrawColor(texto1, COR_TEXT_2);
        TextDrawShow
        pText = 2;
    }
    if(pText == 2)
    {
        TextDrawShowForPlayer(playerid, texto1);
        TextDrawColor(texto1, COR_TEXT_3);
        TextDrawShow
        pText = 3;
    }
    if (pText == 3)
    {
        TextDrawShowForPlayer(playerid, texto1);
        TextDrawColor(texto1, COR_TEXT_4);
        TextDrawShow
        pText = 4;
    }
    if (pText == 4)
    {
        TextDrawShowForPlayer(playerid, texto1);
        TextDrawColor(texto1, COR_TEXT_5);
        TextDrawShow
        pText = 0;
    }
    do
{
        TextDrawShowForAll(texto1);
        pText = 0;
        SetTimerEx("texto1", 1000, true, "i", -1);
}
#endif
Reply
#6

Quote:
Originally Posted by leonardo1434
Посмотреть сообщение
Caso, Nгo funcione. Crie uma Bool, pois tou com preguiзa.. xD
pawn Код:
#define TextDrawShow TextDrawShowForAll(texto1);
    texto1 = TextDrawCreate(215.0,352.0,"[BRASIL]Exelent_Games[BoS]");
    TextDrawAlignment(texto1,0);
    TextDrawUseBox(texto1, false);
    TextDrawTextSize(texto1,650.0,3.0);
    TextDrawFont(texto1,1);
    TextDrawSetProportional(texto1,1);
    TextDrawSetOutline(texto1,1);
    TextDrawLetterSize(texto1,0.359999,1.400000);
    TextDrawSetShadow(texto1,0);
    TextDrawShowForAll(texto1);
    pText = false;
    if(pText == 0)
    {
        TextDrawShowForPlayer(playerid, texto1);
        TextDrawColor(texto1, COR_TEXT_1);
        TextDrawShow
        pText = 1;
    }
    if(pText == 1)
    {
        TextDrawShowForPlayer(playerid, texto1);
        TextDrawColor(texto1, COR_TEXT_2);
        TextDrawShow
        pText = 2;
    }
    if(pText == 2)
    {
        TextDrawShowForPlayer(playerid, texto1);
        TextDrawColor(texto1, COR_TEXT_3);
        TextDrawShow
        pText = 3;
    }
    if (pText == 3)
    {
        TextDrawShowForPlayer(playerid, texto1);
        TextDrawColor(texto1, COR_TEXT_4);
        TextDrawShow
        pText = 4;
    }
    if (pText == 4)
    {
        TextDrawShowForPlayer(playerid, texto1);
        TextDrawColor(texto1, COR_TEXT_5);
        TextDrawShow
        pText = 0;
    }
    do
{
        TextDrawShowForAll(texto1);
        pText = 0;
        SetTimerEx("texto1", 1000, true, "i", -1);
}
#endif
deu os seguintes erros
Код:
D:\PASTA SERVER EXELENT GAMES\SERVER Exelent 3e\gamemodes\JAMAICA.pwn(755) : error 017: undefined symbol "playerid"
D:\PASTA SERVER EXELENT GAMES\SERVER Exelent 3e\gamemodes\JAMAICA.pwn(762) : error 017: undefined symbol "playerid"
D:\PASTA SERVER EXELENT GAMES\SERVER Exelent 3e\gamemodes\JAMAICA.pwn(769) : error 017: undefined symbol "playerid"
D:\PASTA SERVER EXELENT GAMES\SERVER Exelent 3e\gamemodes\JAMAICA.pwn(776) : error 017: undefined symbol "playerid"
D:\PASTA SERVER EXELENT GAMES\SERVER Exelent 3e\gamemodes\JAMAICA.pwn(783) : error 017: undefined symbol "playerid"
D:\PASTA SERVER EXELENT GAMES\SERVER Exelent 3e\gamemodes\JAMAICA.pwn(794) : error 026: no matching "#if..."
D:\PASTA SERVER EXELENT GAMES\SERVER Exelent 3e\gamemodes\JAMAICA.pwn(796) : error 001: expected token: "while", but found "-identifier-"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


7 Errors.
e o pior q eu sou burro nгo sei nem coloca esse text e imagina cria Bool...
vlw pelo esforзo ae man...
vo tentando resolver aki, vlw
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)