Advertisement
ZumeZero

Example OPVT ++

Jan 2nd, 2015
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.01 KB | None | 0 0
  1. public OnPlayerVehicleTime(vehicleid, playerid)
  2. {
  3.     new
  4.         string[128],
  5.         tiempo = GetPlayerVehicleTime(vehicleid)-GetPlayerVehicleMaxTime(vehicleid);
  6.     if(tiempo < 1)
  7.     {
  8.         if(IsPlayerConnected(playerid))
  9.         {
  10.             format(string, sizeof(string), "El vehiculo %d fue destruido por que lo abandonaste mucho tiempo", vehicleid);
  11.             SendClientMessage(playerid, -1, string);
  12.         }
  13.         printf("El vehiculo %d fue destruido por ser abandonado mucho tiempo (%d) (%d)", vehicleid, GetPlayerVehicleMaxTime(vehicleid), playerid);
  14.         DestroyVehicle(vehicleid); // PUEDEN CAMBIAR SU FUNCION, pero si no es DestroyVehicle al usarla usen ResetVehicleTime(vehicleid);
  15.     }
  16.     else
  17.     {
  18.         if(IsPlayerConnected(playerid) && tiempo > 5 && tiempo < 8)
  19.         {
  20.             format(string, sizeof(string), "Tu vehiculo sera destruido en %d segundos si no subes a el.", tiempo);
  21.             SendClientMessage(playerid, -1, string);
  22.         }
  23.     }
  24.     return 1;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement