SA-MP Forums Archive
[AJUDA] Problema tosco! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Problema tosco! (/showthread.php?tid=283868)



[AJUDA] Problema tosco! - StrondA_ - 17.09.2011

Bom, o bug й o seguinte, й uma coisa fбcil de fazer, porйm se tornou complicado. Fiz um sistema de aviso/erro, o jogador digita o comando aparece o TextDraw, no caso usei " TextDrawSetString " porйm quando outro jogador usa o comando, o textdraw se atualiza com os dados do outro comando ou seja, й a mesma coisa que usar " TextDrawShowForAll " й estranho, mais nгo vejo erro algum no code.

pawn Код:
new String[256];
format(String, sizeof(String), "* Olб emilio *");
TextDrawSetString(TextAvisos, String), TextDrawShowForPlayer(playerid, TextAvisos), SetTimerEx("DeletarAviso",6000,false,"i",playerid);
Se alguйm sabe o porque desse problema ocorrer, fico grato!


Re: [AJUDA] Problema tosco! - [O.z]Caroline - 17.09.2011

jб tive este poblema.

use assim:

Topo bote [MAX_PLAYERS].
pawn Код:
new Text:TextAvisos[MAX_PLAYERS];
quando erra o comando, bote [playerid].
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    new String[128];
    format(String, sizeof(String), "* Olб emilio *");
    return TextDrawSetString(TextAvisos[playerid], String), TextDrawShowForPlayer(playerid, TextAvisos[playerid]), SetTimerEx("DeletarAviso",6000,false,"i",playerid);
}
No OnGameModeInit adicione [i] ao lado de todos TextAvisos,
ficando TextAvisos[i].
pawn Код:
public OnGameModeInit()
{
    for(new i; i < MAX_PLAYERS; ++i)
    {
        TextAvisos[i] = TextDrawCreate( ... ).
        // vai botando em todas as funзхes ...
    }
    return 1;
}

Espero ter ajudado *-*


\/


Re: [AJUDA] Problema tosco! - StrondA_ - 17.09.2011

Engraзado Caroline, pois jб tentei criando Loop e continua, mesmo assim obrigado !
Nгo intendo como uma coisa tгo fбcil estб me dando trabalho :@



Re: [AJUDA] Problema tosco! - [O.z]Caroline - 17.09.2011

impossнvel!,
poste como vocк estб usando que eu arrumarei.


Re: [AJUDA] Problema tosco! - StrondA_ - 17.09.2011

Tambйm achei esse problema muito escroto, atй cheguei a abrir um tуpico --' !
Veja, nгo existe problema, jб tentei de vбrias formas :\

pawn Код:
new Text:TextAvisos[MAX_PLAYERS];

new String[256];
format(String, sizeof(String), "* Olб emilio *");
TextDrawSetString(TextAvisos[playerid], String), TextDrawShowForPlayer(playerid, TextAvisos[playerid]), SetTimerEx("DeletarAviso",6000,false,"i",playerid);

public OnGameModeInit()
{
    for(new i; i < MAX_PLAYERS; ++i)
    {
        TextAvisos[i] = TextDrawCreate(...,"_");
        TextDrawAlignment(TextAvisos[i],...);
        TextDrawBackgroundColor(TextAvisos[i],...);
        TextDrawFont(TextAvisos[i],...);
        TextDrawLetterSize(TextAvisos[i],...);
        TextDrawColor(TextAvisos[i],...);
        TextDrawSetOutline(TextAvisos[i],...);
        TextDrawSetProportional(TextAvisos[i],...);
        TextDrawSetShadow(TextAvisos[i],...);
        TextDrawUseBox(TextAvisos[i], ...);
        TextDrawBoxColor(TextAvisos[i], ...);
        TextDrawTextSize(TextAvisos[i], ...);
    }
    return true;
}



Re: [AJUDA] Problema tosco! - [O.z]Caroline - 17.09.2011

tenta:
pawn Код:
public OnPlayerConnect(playerid)
{
        TextAvisos[playerid] = TextDrawCreate(...,"_");
        TextDrawAlignment(TextAvisos[playerid],...);
        TextDrawBackgroundColor(TextAvisos[playerid],...);
        TextDrawFont(TextAvisos[playerid],...);
        TextDrawLetterSize(TextAvisos[playerid],...);
        TextDrawColor(TextAvisos[playerid],...);
        TextDrawSetOutline(TextAvisos[playerid],...);
        TextDrawSetProportional(TextAvisos[playerid],...);
        TextDrawSetShadow(TextAvisos[playerid],...);
        TextDrawUseBox(TextAvisos[playerid], ...);
        TextDrawBoxColor(TextAvisos[playerid], ...);
        TextDrawTextSize(TextAvisos[playerid], ...);
        return 1;
}



Re: [AJUDA] Problema tosco! - StrondA_ - 17.09.2011

Jб tentei tambйm, ainda nгo funciona da forma correta, simplesmente nгo existe conflito!
oq me deixa puto й que isso й uma coisa fбcil de fazer, nгo era para acontecer esse problema!



Re: [AJUDA] Problema tosco! - [O.z]Caroline - 17.09.2011

me tira uma dъvida, aonde vocк estб botanando isto
pawn Код:
new String[256];
format(String, sizeof(String), "* Olб emilio *");
TextDrawSetString(TextAvisos[playerid], String), TextDrawShowForPlayer(playerid, TextAvisos[playerid]), SetTimerEx("DeletarAviso",6000,false,"i",playerid);



Re: [AJUDA] Problema tosco! - StrondA_ - 17.09.2011

Num comando normal caroline!
Nгo sei o motivo disso!
@EDIT, EXEMPLO, PARA VOCК VER QUE NГO ESTOU LOKO!

pawn Код:
if(strcmp(cmdtext, "/oidaniela", true)== 0)
{
    new String[256];
    format(String, sizeof(String), "* Olб emilio *");
    TextDrawSetString(TextAvisos[playerid], String), TextDrawShowForPlayer(playerid, TextAvisos[playerid]), SetTimerEx("DeletarAviso",6000,false,"i",playerid);
    return true;
}



Re: [AJUDA] Problema tosco! - [O.z]Caroline - 17.09.2011

mande a public deletaraviso ...