Advertisement
artyom_triodin1

AutoFix.pwn For Samp By Artyom Triodin

Dec 29th, 2013
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. //AutoFix By ARTYOM TRIODIN ////////////////////////////////////////////////////
  2. ////////////////////////////////////////////////////////////////////////////////
  3.  
  4. #include <a_samp>
  5.  
  6. #if defined FILTERSCRIPT
  7.  
  8. public OnFilterScriptInit()
  9. {
  10. print("\n--------------------------------------");
  11. print(" AutoFix FilterScript Loaded SuccesFully ...");
  12. print("3");
  13. print("2");
  14. print("1");
  15. print("FilterScript By Artyom Triodin");
  16. print(" ENJOEY ... ");
  17. print("--------------------------------------\n");
  18. return 1;
  19. }
  20.  
  21. public OnFilterScriptExit()
  22. {
  23. return 1;
  24. }
  25.  
  26. #else
  27.  
  28. main()
  29. {
  30. print("\n----------------------------------");
  31. print(" Blank Gamemode by your name here");
  32. print("----------------------------------\n");
  33. }
  34.  
  35. #endif
  36.  
  37. public OnPlayerConnect(playerid)
  38. {
  39. SendClientMessage(playerid, 0xFFFF00FF, "No /Fix Command This Server Have AutoFix Script :) enjoey ... ");
  40. return 1;
  41. }
  42.  
  43. public OnGameModeInit()
  44. {
  45. SetTimer("AutoFix", 100, true);
  46. return 1;
  47. }
  48.  
  49. forward AutoFix(playerid);
  50. public AutoFix(playerid)
  51. {
  52. RepairVehicle(GetPlayerVehicleID(playerid));
  53. return 1;
  54. }
  55. //AutoFix By ARTYOM TRIODIN ////////////////////////////////////////////////////
  56. ////////////////////////////////////////////////////////////////////////////////
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement