[Ajuda] Problemas com textdraw selecionбvel - 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] Problemas com textdraw selecionбvel (
/showthread.php?tid=431500)
Problemas com textdraw selecionбvel -
iHarzard - 18.04.2013
Estou criando um Login/Registro por TextDraw e estou com o seguinte erro: warning 213: tag mismatch
Linhas:
pawn Код:
TextDrawSetSelectable(Login[playerid], 1);
TextDrawSetSelectable(Registro[playerid], 1);
//
if(clickedid == Login[playerid])
if(clickedid == Registro[playerid])
Como posso arrumar?
Re: Problemas com textdraw selecionбvel -
Kuddy - 18.04.2013
if(clickedid == Login[playerid])
if(clickedid == Registro[playerid])
clickedid = textdraw e nгo a uma variбvel convencional. Aн estб o erro, mude Login[playerid] para o id da textdraw.
Re: Problemas com textdraw selecionбvel -
Supera - 18.04.2013
Provavelmente vocк criou a variavel assim:
pawn Код:
new Login[MAX_PLAYERS];
new Registro[MAX_PLAYERS];
O certo seria assim
pawn Код:
new Text:Login[MAX_PLAYERS];
new Text:Registro[MAX_PLAYERS];
Re: Problemas com textdraw selecionбvel -
iHarzard - 18.04.2013
Quote:
Originally Posted by Kuddy
if(clickedid == Login[playerid])
if(clickedid == Registro[playerid])
clickedid = textdraw e nгo a uma variбvel convencional. Aн estб o erro, mude Login[playerid] para o id da textdraw.
|
Nгo entendi, como assim o id da textdraw?
Quote:
Originally Posted by Supera
Provavelmente vocк criou a variavel assim:
pawn Код:
new Login[MAX_PLAYERS]; new Registro[MAX_PLAYERS];
O certo seria assim
pawn Код:
new Text:Login[MAX_PLAYERS]; new Text:Registro[MAX_PLAYERS];
|
pawn Код:
new PlayerText:Login[MAX_PLAYERS];
new PlayerText:Registro[MAX_PLAYERS];
Estгo definidas assim!