Advertisement
DraKiNs

[COD] Word Above Skin

Jun 26th, 2011
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.47 KB | None | 0 0
  1. //                    CRÉDITOS:
  2.  
  3. //[iPs]Av4stizin e a [iPs]Team
  4.  
  5. //                    IDEIA:
  6.  
  7. // A Ideia veio do Ragnarok online,Eu estava a jogar lá e no mercado poderia digitar /algumcmd [frase] e ficaria o chatbubble lá encima
  8. // da cabeça do cara...
  9. //                    CONCLUSÃO:
  10.  
  11. //Tive a ideia de criar o projeto pelo Ragnarok Brasil Online [RBO]
  12.  
  13. //                      META:
  14.  
  15. //Tem como meta criar uma frase acima da cabeça da pessoa. ^^
  16.  
  17. // Includes
  18. #include <a_samp>
  19.  
  20. // Pragmas
  21. #pragma tabsize 0
  22.  
  23. //Cores
  24. #define Cor1    0xFF0000AA
  25. #define Cor2    0xFFFF00AA
  26. #define Cor3    0x0080FFAA
  27. #define Cor4    0xFF80C0AA
  28. #define Cor5    0xFF80FFAA
  29. #define Cor6    0xFFFFFFAA
  30. #define Cor7    0x808080AA
  31. #define Cor8    0x000000AA
  32. #define Cor9    0x804000AA
  33. #define Cor10   0x00FFFFAA
  34.  
  35. //Defines
  36. #if defined FILTERSCRIPT
  37.  
  38. public OnFilterScriptInit()
  39. {
  40.     print("\n--------------------------------------");
  41.     print(" [FS] Texto Acima da Cabeça");
  42.     print(" Por: [iPs]Av4stizin e [iPs]Team");
  43.     print("--------------------------------------\n");
  44.     return 1;
  45. }
  46.  
  47. public OnFilterScriptExit()
  48. {
  49.     return 1;
  50. }
  51.  
  52. #else
  53.  
  54. new TextoColocado[MAX_PLAYERS];
  55. new TextoTirado[MAX_PLAYERS];
  56. new Texto[MAX_PLAYERS];
  57.  
  58. main()
  59. {
  60.     print("\n----------------------------------");
  61.     print(" [FS] Texto Acima da Cabeça");
  62.     print(" Por: [iPs]Av4stizin e [iPs]Team");
  63.     print("----------------------------------\n");
  64. }
  65.  
  66. #endif
  67.  
  68. public OnPlayerConnect(playerid)
  69. {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement