Advertisement
Guest User

tunables.json gta online hack

a guest
Dec 11th, 2013
3,139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. sudo apt-get install nginx dnsmasq
  2.  
  3. sudo cat > /etc/nginx/conf.d/gta.conf <<END
  4. server {
  5. listen 80;
  6. server_name prod.ros.cloud.rockstargames.com prod.cloud.rockstargames.com;
  7. location / {
  8. proxy_pass http://prod.cloud.rockstargames.com/;
  9. }
  10. access_log /ps3accesslog.txt;
  11.  
  12. location /titles/gta5/xbox360/tunables.json {
  13.  
  14. }
  15.  
  16. location /titles/gta5/ps3/tunables.json {
  17.  
  18. }
  19.  
  20. root /gta;
  21. autoindex on;
  22. }
  23. END
  24.  
  25. sudo mkdir /gta
  26. sudo mkdir /gta/titles
  27. sudo mkdir /gta/titles/gta5
  28. sudo mkdir /gta/titles/gta5/ps3
  29. sudo mkdir /gta/titles/gta5/xbox360
  30.  
  31. sudo wget http://prod.cloud.rockstargames.com/titles/gta5/xbox360/tunables.json -O /gta/titles/gta5/xbox360/tunables.json
  32. sudo wget http://prod.cloud.rockstargames.com/titles/gta5/ps3/tunables.json -O /gta/titles/gta5/ps3/tunables.json
  33.  
  34. sudo echo `/sbin/ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'` prod.cloud.rockstargames.com prod.ros.cloud.rockstargames.com >>/etc/hosts
  35.  
  36. service nginx restart
  37. service dnsmasq restart
  38.  
  39. echo change your game console\'s dns server to `/sbin/ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'`
  40. echo this should be an option in your game console\'s network settings
  41. echo you may have to manually define an ip address on your console to manually set the dns server.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement