Advertisement
DraKiNs

[Filterscript] Chat Rolante em TextDraw

Dec 29th, 2011
514
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.43 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3.  
  4. // Declaração das variáveis
  5.  
  6. new Text:CopCrime, mensagensAntigas[3][128];
  7.  
  8.  
  9. // Esse é quando o script inicia para poder criar os textdraw
  10.  
  11. public OnFilterScriptInit()
  12. {
  13.     CopCrime = TextDrawCreate(200.000000, 395.000000, "");
  14.  
  15.     TextDrawBackgroundColor(CopCrime, 255);
  16.     TextDrawFont(CopCrime, 1);
  17.     TextDrawLetterSize(CopCrime, 0.500000, 1.000000);
  18.  
  19.     TextDrawColor(CopCrime, -1);
  20.     TextDrawSetOutline(CopCrime, 0);
  21.  
  22.     TextDrawSetProportional(CopCrime, 1);    
  23.     return TextDrawSetShadow(CopCrime, 1);
  24. }
  25.  
  26.  
  27. // Esse vai no RequestClass para poder mostrar o TextDraw
  28.  
  29.  
  30. public OnPlayerRequestClass(playerid)
  31. {
  32.    
  33.     return TextDrawShowForPlayer(playerid, CopCrime);
  34. }
  35.  
  36.  
  37. // Este código vai no chat quando o player falar
  38.  
  39. public OnPlayerText(playerid, text[])
  40. {
  41.     static
  42.         todasMensagens[512]
  43.     ;
  44.  
  45.     format(todasMensagens, 128, "%s~n~%s~%s", mensagensAntigas[0], mensagensAntigas[1], text);
  46.     TextDrawSetString(CopCrime, todasMensagens);
  47.  
  48.     strcat((mensagensAntigas[0][0] = EOS, mensagensAntigas[0]), mensagensAntigas[1]);
  49.     strcat((mensagensAntigas[1][0] = EOS, mensagensAntigas[1]), text);
  50.  
  51. /*
  52.  
  53.  * todasMensagens armazena todas mensagens em um textdraw
  54.  * mensagensAntigas[0] é a mensagem de cima
  55.  * mensagensAntigas[1] é a mensagem do meio
  56.  * text será nossa nova mensagem
  57.  
  58. */
  59.     return true;
  60. }
  61.  
  62. // Por Bruno da Silva
  63. // Para StreetGT
  64. // www.brunodasilva.com.br
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement