Advertisement
Guest User

Untitled

a guest
Oct 8th, 2018
540
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.51 KB | None | 0 0
  1. new allowTrailer[MAX_VEHICLES char];
  2.  
  3. stock ac_AttachTrailerToVehicle(trailerid, vehicleid)
  4. {
  5.     allowTrailer{trailerid} = 1;
  6.     return AttachTrailerToVehicle(trailerid, vehicleid);
  7. }
  8. #if defined _ALS_AttachTrailerToVehicle
  9.     #undef AttachTrailerToVehicle
  10. #else
  11.     #define _ALS_AttachTrailerToVehicle
  12. #endif
  13. #define AttachTrailerToVehicle ac_AttachTrailerToVehicle
  14.  
  15. public OnVehicleSpawn(vehicleid)
  16. {
  17.     if(allowTrailer{vehicleid}) allowTrailer{vehicleid} = 0;
  18.     #if defined ac_OnVehicleSpawn
  19.         return ac_OnVehicleSpawn(vehicleid);
  20.     #else
  21.         return 1;
  22.     #endif
  23. }
  24. #if defined _ALS_OnVehicleSpawn
  25.     #undef OnVehicleSpawn
  26. #else
  27.     #define _ALS_OnVehicleSpawn
  28. #endif
  29. #if defined ac_OnVehicleSpawn
  30.     forward ac_OnVehicleSpawn(vehicleid);
  31. #endif
  32. #define OnVehicleSpawn ac_OnVehicleSpawn
  33.  
  34. IPacket:210(playerid, BitStream:bs)
  35. {
  36.     new data[PR_TrailerSync];
  37.     BS_IgnoreBits(bs, 8);
  38.     BS_ReadTrailerSync(bs, data);
  39.  
  40.     if(allowTrailer{data[PR_trailerId]}) return 1;
  41.     new model = GetVehicleModel(data[PR_trailerId]);
  42.     switch(model)
  43.     {
  44.         case 435, 450, 584, 591, 606..608, 610, 611: {}
  45.         default: return false;
  46.     }
  47.     if(!IsPlayerInRangeOfPoint(playerid, 50.0, data[PR_position][0], data[PR_position][1], data[PR_position][2])) return 0;
  48.     return 1;
  49. }
  50.  
  51. 1secTimer
  52. {
  53.     for(new vehid = GetVehiclePoolSize(); vehid > 0; vehid--) if(allowTrailer{vehid} && !IsTrailerAttachedToVehicle(vehid))
  54.     {
  55.         allowTrailer{vehid} = 0;
  56.     }
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement