Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. public OnGameModeInit()
  2. {
  3. SetGameModeText("ArkNet | SAMP Android");
  4. SendRconCommand("hostname ArkNet Mobile");
  5. SendRconCommand("language RU Android");
  6. SendRconCommand("rcon 0");
  7.  
  8. SetTimer("timer_sec", 1000, 1);
  9. SetTimer("Reklama" , 1800000, 1);
  10. SetTimer("Golod", 900000, 1);
  11. SetTimer("Bolezn", 2*1000*60,1);
  12. SetTimer("UpdatePayDay", 1000*60, 1);
  13.  
  14. for(new i = 0; i < MAX_VEHICLES; i++) fuel_car[i] = 50,VehSpwn(i);
  15.  
  16. ShowNameTags(true);
  17. DisableInteriorEnterExits();
  18. EnableStuntBonusForAll(false);
  19. ManualVehicleEngineAndLights();
  20. ShowPlayerMarkers(PLAYER_MARKERS_MODE_STREAMED);
  21. SetNameTagDrawDistance(30.0);
  22.  
  23. load_veh();
  24. load_mysql();
  25. load_object();
  26. load_mapicon();
  27. load_other();
  28. load_pickup();
  29. LoadVehicles();
  30. return 1;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement