[Ajuda] Problemas com textdraw selecionбvel
#1

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?
Reply
#2

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.
Reply
#3

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];
Reply
#4

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!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)