Guest User

Codigo raparar veiculo! HomeHots.net

a guest
Oct 7th, 2011
3,780
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. if (strcmp(cmdtext, "/repararveh", true) == 0) // Comando de Reparar o Veículo
  2. {
  3. if(!IsPlayerInAnyVehicle(playerid)) // Se o Player não estiver dentro de um Véiculo
  4. {
  5. SendClientMessage(playerid, 0x63AFF00A, "[ERRO] Você não está dentro de um Veículo."); return 1;
  6. }
  7. GetPlayerVehicleID(playerid); // Pega o ID do Veiculo que o Player estiver dentro
  8. RepairVehicle(GetPlayerVehicleID(playerid)); // Repara o Veículo que o Player estiver dentro
  9. SendClientMessage(playerid, 0x63AFF00A, "Parabéns seu Veículo foi reparado com sucesso.");
  10. return 1;
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment