Advertisement
Guest User

[Filterscript]Cutter rims

a guest
Oct 22nd, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. CMD:cr(playerid, params[])
  2. {
  3. if(IsPlayerConnected(playerid)) {
  4. if(PlayerInfo[playerid][pAdmin] < 2 ) {
  5. SendClientMessageEx(playerid, COLOR_GRAD1, "You are not authorized to use that command!");
  6. return 1;
  7. }
  8. if(IsPlayerInAnyVehicle(playerid)) {
  9. AddVehicleComponent(GetPlayerVehicleID(playerid), 1079);
  10. SendClientMessageEx(playerid, COLOR_GREY, "Cutter Rims added on your Vehicle!");
  11. }
  12. }
  13. return 1;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement