Advertisement
Guest User

[SA-MP] Gold Rims Filterscript - Created by Ramin [raamiix]

a guest
Oct 28th, 2012
534
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. // This is my first filterscript,
  2. // *** Gold Rims ***
  3. // *** Filterscript ***
  4. // *** Created ***
  5. // *** By ***
  6. // *** Ramin ***
  7. // *** [raamiix] ***
  8.  
  9. #include <a_samp>
  10. #include <zcmd>
  11.  
  12. #define COLOR_TWAQUA 0x00FFFFAA
  13.  
  14. public OnFilterScriptInit()
  15. {
  16. print("Welcome to my Gold Rims Filterscript - Created by Ramin [raamiix]");
  17. return 1;
  18. }
  19.  
  20. public OnFilterScriptExit()
  21. {
  22. return 1;
  23. }
  24.  
  25. CMD:ggrr(playerid, params[])
  26. {
  27. AddVehicleComponent(GetPlayerVehicleID(playerid),1080);
  28. SendClientMessage(playerid, COLOR_TWAQUA, "Gold Rims Added.");
  29. return 1;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement