[Ajuda] Problema TextDrawHideForPlayer
#1

Boas Tardes pessoal estou com dificuldade em esconder estas textdraws, visto que estгo num sistema de casas no qual so consigo usar a variбvel (i) e nгo consigo usar o playerid, o problema esta quando tento usar OnPlayerClickTextDraw para usar o botгo de "cancelar" ele nгo me deixa usar a variavel (i) logo ele nгo funciona quando tento fechar. Alguma sugestгo para solucionar o problema?

PHP код:
public PickupGametexts()
{
    new 
string[500];
    for(new 
0MAX_PLAYERSi++)
    {
        if(
gPlayerLogged[i])
        {
            
//=============================================[BUILDING GAMETEXTS]==========================================
        
            //=========================================================================================================
            //======================================[HOUSE GAMETEXTS]===================================================
            
for(new 0sizeof(Houses); n++)
            {
                if (
PlayerToPoint(1.0i,Houses[n][EnterX], Houses[n][EnterY], Houses[n][EnterZ]))
                {
                    if(
Houses[n][HousePrice] != 0//Only show the house if price is set
                    
{
                        if(
Houses[n][Owned] == 0)
                        {
                       new 
casaaid[60];
                        new 
caguistos[60];
                        
                        new 
estadocasa[70];
                            new 
houselocation[MAX_ZONE_NAME];
                            
GetCoords2DZone(Houses[n][EnterX],Houses[n][EnterY], houselocationMAX_ZONE_NAME);
                        
/*    format(string, sizeof(string), "~g~Esta casa esta para venda!~n~~w~Morada: ~y~ %d %s~n~~w~Descricao: ~y~%s ~n~~w~Preco: ~y~%d euros~n~",n,houselocation,Houses[n][Description],Houses[n][HousePrice]); */
format(casaaid,sizeof(casaaid),"%d"n);
format(caguistos,sizeof(caguistos),"%d"Houses[n][HousePrice]);
format(estadocasa,sizeof(estadocasa),"Para Venda");
                            
GameTextForPlayer(istring35003);
                            
            
TextDrawShowForPlayer(iCbox1);
TextDrawShowForPlayer(iCbox2);
TextDrawShowForPlayer(iCbox3);
TextDrawShowForPlayer(iCbox4);
TextDrawShowForPlayer(iCbox5);
TextDrawShowForPlayer(iCacomprar);
TextDrawShowForPlayer(iCacancelar);
TextDrawShowForPlayer(iCadescritivo);
TextDrawShowForPlayer(iCacomprar);
TextDrawShowForPlayer(iCapreco);
TextDrawShowForPlayer(iCaid);
TextDrawShowForPlayer(iCamorada);
TextDrawShowForPlayer(iCainfos);
TextDrawShowForPlayer(iCaboxmeio);
TextDrawShowForPlayer(iCalocalidade);
TextDrawShowForPlayer(iCaparavenda);
TextDrawShowForPlayer(iCaestado);
TextDrawShowForPlayer(iCanumid);
TextDrawShowForPlayer(iCadin);
TextDrawShowForPlayer(iCadescritivo);
TextDrawShowForPlayer(iCadescricao);
SelectTextDraw(i0x00FF00FF);
TextDrawSetString(Canumidcasaaid);
TextDrawSetString(Caestadoestadocasa);
TextDrawSetString(Calocalidadehouselocation);
TextDrawSetString(CadescricaoHouses[n][Description]);
TextDrawSetString(Cadincaguistos);
TextDrawSetSelectable(Cacomprartrue);
TextDrawSetSelectable(Cacancelartrue);
                                
                        } 
Reply
#2

sobre essa questгo da variбvel [i] ela significa playerid, pois vc esta usando ela lo loop
for(new i = 0; i < MAX_PLAYERS; i++)

Na OnPlayerClickTextDraw nгo ira ter interferкncia usando playerid!

Sobre seu problema verifique se a text draw de cancelar esta selecionбvel, utilizando

pawn Код:
TextDrawSetSelectable(Cacancelar, true); //true й selecionavel, false nгo selecionavel
Reply
#3

Sim pois era isso que pensava a questгo a questгo e que eu tenho a TextDrawSetSelectable(Cacancelar, true);
esse nгo e o problema. A ъnica possibilidade e eu estar a fazer mal a OnPlayerClickTextDraw


PHP код:
public OnPlayerClickTextDraw(playeridText:clickedid)
{
if(
clickedid == Cacancelar)
    {
 
SendClientMessage(playerid0xFFFFFFAA"teste");
 
SendClientMessage(playerid0xFFFFFFAA"teste");
TextDrawHideForPlayer(playeridCbox2);
TextDrawHideForPlayer(playeridCbox3);
TextDrawHideForPlayer(playeridCbox4);
TextDrawHideForPlayer(playeridCbox5);
TextDrawHideForPlayer(playeridCacomprar);
TextDrawHideForPlayer(playeridCacancelar);
TextDrawHideForPlayer(playeridCadescritivo);
TextDrawHideForPlayer(playeridCacomprar);
TextDrawHideForPlayer(playeridCapreco);
TextDrawHideForPlayer(playeridCaid);
TextDrawHideForPlayer(playeridCamorada);
TextDrawHideForPlayer(playeridCainfos);
TextDrawHideForPlayer(playeridCaboxmeio);
TextDrawHideForPlayer(playeridCalocalidade);
TextDrawHideForPlayer(playeridCaparavenda);
TextDrawHideForPlayer(playeridCaestado);
TextDrawHideForPlayer(playeridCanumid);
TextDrawHideForPlayer(playeridCadin);
TextDrawHideForPlayer(playeridCadescritivo);
TextDrawHideForPlayer(playeridCadescricao);
CancelSelectTextDraw(playerid);
        return 
1;
    } 
Reply
#4

Problema resolvido, tinha de adicionar uma box na textdraw obrigado pela ajuda Cleyson
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)