[Ajuda] Textdraw - 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] Textdraw (
/showthread.php?tid=608080)
Textdraw -
Wellington1999 - 27.05.2016
Queria saber se tem algum modo de quando o player apertar ESC as textdraws sumir, pois quando ele aperta esc apenas cancela a seleзгo e as text permanecem.
Re: Textdraw -
PainNagato - 27.05.2016
pawn Код:
if(clickedid == Text:INVALID_TEXT_DRAW)
{
// TextDrawHide,..
}
Re: Textdraw -
Skudinhu - 27.05.2016
Vocк pode usar TextDrawHideForPlayer,
Posta o cуdigo das textdraws
Re: Textdraw -
Wellington1999 - 27.05.2016
E Se eu usar PlayerTextdraw?
Re: Textdraw -
PainNagato - 27.05.2016
pawn Код:
if(playertextid == PlayerText:INVALID_TEXT_DRAW)
{
// PlayerTextDrawHide,...
}
Re: Textdraw -
Wellington1999 - 27.05.2016
Nгo obtive resultados
Re: Textdraw -
Skudinhu - 27.05.2016
Quote:
Originally Posted by Wellington1999
Nгo obtive resultados
|
Posta os cуdigos meu amigo, se nгo fica difнcil pra sabermos seu problema.
Re: Textdraw -
Bruno13 - 28.05.2016
Quote:
Originally Posted by Wellington1999
E Se eu usar PlayerTextdraw?
|
O mesmo serve para identificar para ambos tipos de TextDraws...ele identifica indiferente se a TextDraw que estб sendo apresentada й PlayerTextDraw ou TextDraw, ele apenas identifica se o cursor estб na tela e a tecla ESC foi teclada para sair do mesmo.
Ex:
PHP код:
public OnPlayerClickTextDraw(playerid, Text:clickedid)
{
if(_:clickedid == INVALID_TEXT_DRAW)
{
//o que fazer qnd ESC for teclado enquanto o cursor estiver na tela...aconselharia a utilizar variбveis de controle para identificar se apresentou tal textdraw
}
return 1;
}