Advertisement
Guest User

Untitled

a guest
May 25th, 2014
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. // My first FilterScript, if you like it please do +1 in my reputation :) - AustinHamilton, SA-MP Forums.
  2. #define FILTERSCRIPT
  3.  
  4. #include <a_samp>
  5. #include <ZCMD>
  6.  
  7. #define COLOR_GREY 0xAFAFAFAA
  8. #define COLOR_PINK 0xFF66FFAA
  9.  
  10. #if defined FILTERSCRIPT
  11.  
  12. #endif
  13. public OnFilterScriptInit()
  14. {
  15. print("\n--------------------------------------");
  16. print(" Vehicle Color IDs by AustinHamilton, Loaded");
  17. print("--------------------------------------\n");
  18. return 1;
  19. }
  20.  
  21. public OnFilterScriptExit()
  22. {
  23. print("\n--------------------------------------");
  24. print(" Vehicle Color IDs by AustinHamilton, Unloaded");
  25. print("--------------------------------------\n");
  26. return 1;
  27. }
  28.  
  29. CMD:colors(playerid, params[])
  30. {
  31. SendClientMessage(playerid, COLOR_GREY, "______________________________________________");
  32. SendClientMessage(playerid, COLOR_PINK, "Vehicle Color IDs");
  33. SendClientMessage(playerid, COLOR_GREY, "* Black [0] White [1] Turquoise [2] Red [3] Light Grey / Dark Green [4] Light Pink [5]*");
  34. SendClientMessage(playerid, COLOR_GREY, "* Yellow [6] Light Blue [7] Dark White [8] Light Green [9] Dark Blue [10] Silver [11] *");
  35. SendClientMessage(playerid, COLOR_GREY, "* Very Light Blue [12] Dark Grey [13] [14 is like 8/1] Very Light Grey [15] Green [16] *");
  36. SendClientMessage(playerid, COLOR_GREY, "* Dark Red [17] Dark Pink [18] [19 is like 8] Sky Blue [20] -(We are skipping 21-126 because they are very similar to the ones stated above.) *");
  37. SendClientMessage(playerid, COLOR_GREY, "* Pink [126] *");
  38. SendClientMessage(playerid, COLOR_GREY, "______________________________________________");
  39. return 1;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement