Advertisement
Guest User

Price List by ScriptFohLife on SA-MP Forums!

a guest
Mar 25th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. // Thanks for using my first filterscript, please give me a +1 reputation in SA-MP Forums! /ScriptFohLife
  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(" Price list by ScriptFohLife has been loaded.");
  17. print("--------------------------------------\n");
  18. return 1;
  19. }
  20.  
  21. public OnFilterScriptExit()
  22. {
  23. print("\n--------------------------------------");
  24. print(" Price list by ScriptFohLife has been unloaded.");
  25. print("--------------------------------------\n");
  26. return 1;
  27. }
  28.  
  29. CMD:prices(playerid, params[])
  30. {
  31. SendClientMessage(playerid, COLOR_GREY, "______________________________________________");
  32. SendClientMessage(playerid, COLOR_PINK, "Purchases in Game (/fine)s");
  33. SendClientMessage(playerid, COLOR_GREY, "* Classic Car [100k] Normal Car [250k] Sport Car [500k] *");
  34. SendClientMessage(playerid, COLOR_GREY, "* Rims [75k] Gold Rims [175k] *");
  35. SendClientMessage(playerid, COLOR_GREY, "* Small House [250k] Medium House [500k] High House [1M] *");
  36. SendClientMessage(playerid, COLOR_GREY, "* Gate for house/Gang HQ [150k] Backdoor/Roof Access's [100k] *");
  37. SendClientMessage(playerid, COLOR_GREY, "* Garages [125k] *");
  38. SendClientMessage(playerid, COLOR_GREY, "* Bronze VIP [2 USD] Silver VIP [3 USD] Platinum VIP [5 USD] *");
  39. SendClientMessage(playerid, COLOR_PINK, "If you have any question about this list don't exitate to talk with an Adminstrator!");
  40. SendClientMessage(playerid, COLOR_GREY, "______________________________________________");
  41. return 1;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement