Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.87 KB | None | 0 0
  1. //ColoriNick By Jacko106
  2. //Script Fatto Da 0 Da Jacko106
  3. //NON RIMUOVERE I CREDITI
  4. //V1.0
  5. #include <a_samp>
  6. #define Colours 4321
  7. //colori
  8. #define CAR_HEALTH
  9. #define COLOR_YELLOWGREEN 0x9ACD32AA //verde militare
  10. #define COLOR_GREY 0xAFAFAFAA //grigio
  11. #define COLOR_LIGHTGREEN 0x81F628AA //verde chiaro
  12. #define COLOR_YELLOW 0xFFFF00AA //giallo
  13. #define COLOR_LIGHTBLUE 0x33CCFFAA //azzurro
  14. #define COLOR_BLUE 0x0050F6AA //blu
  15. #define COLOR_GREEN 0x33AA33AA // verde
  16. #define COLOR_RED 0xF60000AA // rosso
  17. #define COLOR_ORANGE 0xFF9900AA //arancione
  18. #define COLOR_LIGHTRED 0xF60000AA //rosso acceso
  19. #define COLOR_WHITE 0xFFFFFFFF //bianco
  20. #define COLOR_MAGENTA 0x8B008BAA //magenta
  21. #define COLOR_BLACK 0x000000AA //nero
  22. #define COLOR_PINK 0xFF66FFAA //rosa
  23. #define COLOR_ZADMINBLUE 0x6D4CEBAA //celeste scuretto <----.
  24. #define COLOR_BASIC 0x33AA33AA //colore base |
  25. #define COLOR_LIME 0x10F441AAt //verde militare chiaro |
  26. #define COLOR_NAVY 0x000080AA //blu intenso |
  27. #define COLOR_AQUA 0xF0F8FFAA //acqua marina |
  28. #define COLOR_CRIMSON 0xDC143CAA //cremisi (rosso intenso) |
  29. #define COLOR_FLBLUE 0x6495EDAA //Simile al colore Zadminblue --|
  30. #define COLOR_BISQUE 0xFFE4C4AA //bianco sporco
  31. #define COLOR_BLACK 0x000000AA //nero
  32. #define COLOR_CHARTREUSE 0x7FFF00AA //verde chiarissimo
  33. #define COLOR_BROWN 0XA52A2AAA //marrone
  34. #define COLOR_CORAL 0xFF7F50AA //corallo
  35. #define COLOR_GOLD 0xB8860BAA //oro
  36. #define COLOR_GREENYELLOW 0xADFF2FAA //verde giallastro
  37. #define COLOR_INDIGO 0x4B00B0AA //indaco
  38. #define COLOR_IVORY 0xFFFF82AA //avorio
  39. #define COLOR_LAWNGREEN 0x7CFC00AA //verde intenso
  40. #define COLOR_SEAGREEN 0x20B2AAAA //verde marino
  41. #define COLOR_LIMEGREEN 0x32CD32AA //verde lime
  42. #define COLOR_MIDNIGHTBLUE 0x191970AA //blu scuro
  43. #define COLOR_MAROON 0x800000AA //rosso-marrone scuro
  44. #define COLOR_OLIVE 0x808000AA //oliva
  45. #define COLOR_ORANGERED 0xFF4500AA //arancio rossastro
  46. #define COLOR_SPRINGGREEN 0x00FF7FAA //verde vivace
  47. #define COLOR_TOMATO 0xFF6347AA //pomodoro
  48. #define COLOR_YELLOWGREEN 0x9ACD32AA //verde militare
  49. #define COLOR_MEDIUMAQUA 0x83BFBFAA //acqua marina scuro
  50. #define COLOR_MEDIUMMAGENTA 0x8B008BAA //magenta scuro
  51. #define COLOR_LEMON 0xDDDD2357 //limone
  52.  
  53. public OnFilterScriptInit()
  54. {
  55. print(" ");
  56. return 1;
  57. }
  58.  
  59. public OnPlayerCommandText(playerid, cmdtext[])
  60. {
  61. if(!strcmp(cmdtext, "/colori", true))
  62. {
  63. SendClientMessage(playerid, COLOR_RED, "{F00000}/rosso - {00F000}/verde - {F0F000}/giallo - {0000F0}/blu - {FFFFFF}/bianco - {000000}/nero");
  64. return 1;
  65. }
  66. if(!strcmp(cmdtext, "/rosso", true))
  67. {
  68. SetPlayerColor(playerid, 0xF60000AA);
  69. SendClientMessage(playerid, 0xF60000AA, "*** Colore Rosso Settato ***");
  70. return 1;
  71. }
  72. if(!strcmp(cmdtext, "/verde", true))
  73. {
  74. SetPlayerColor(playerid, 0x33AA33AA);
  75. SendClientMessage(playerid, 0x33AA33AA, "*** Colore Verde Settato ***");
  76. return 1;
  77. }
  78. if(!strcmp(cmdtext, "/giallo", true))
  79. {
  80. SetPlayerColor(playerid, 0xFFFF00AA);
  81. SendClientMessage(playerid, 0xFFFF00AA, "*** Colore Giallo Settato ***");
  82. return 1;
  83. }
  84. if(!strcmp(cmdtext, "/blu", true))
  85. {
  86. SetPlayerColor(playerid, 0x0050F6AA);
  87. SendClientMessage(playerid, 0x0050F6AA, "*** Colore Blu Settato ***");
  88. return 1;
  89. }
  90. if(!strcmp(cmdtext, "/bianco", true))
  91. {
  92. SetPlayerColor(playerid, 0xFFFFFFFF);
  93. SendClientMessage(playerid, 0xFFFFFFFF, "*** Colore Bianco Settato ***");
  94. return 1;
  95. }
  96. if(!strcmp(cmdtext, "/nero", true))
  97. {
  98. SetPlayerColor(playerid, 0x000000AA);
  99. SendClientMessage(playerid, 0x000000AA, "*** Colore Nero Settato ***");
  100. return 1;
  101. }
  102. return 0;
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement