Page 1 of 4 123 ... LastLast
Results 1 to 15 of 57
  1. #1
    theclinton's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    826
    My Mood
    Inspired

    Temp Fix script For AFK Farming bot

    I tried adding an attachment but it kept saying AHK is invalid so whatever.

    Code:
    ;This script auto jumps you out the plane at a random point  after the plane spawns. It will also make you walk forward and fly forward.
    ;No this isnt a stand alone bot, you can use it with the pythonbot on these forums. No its not the updated python bot i made.
    ;make sure to edit the config in that python bot otherwise it will exit the game 10 seconds after you enter the "plain" (lol thats how he spell the plane var)
    
    loop {
    	sleep 85000
    	Random, rand, 46000, 60000
    	sleep rand
    	Send F
    	loop, 5{
    		sleep 1000
    				{ 
    				Send {W down}
    				sleep 15000
    				Send {W Up}
    				}
     
    	}
        sleep 34000
    }
     
     
    Home::
    Suspend,Toggle
    return
    This uses AHK. Start it once you start the other bot. I originally made this when i was feeling lazy and didnt feel like updating the python code in the other bot. This will hold you over until I or someone else releases the updated version of the bot.

    You can use the timing info in this script to update the other.

    Its possible this could eventually get outta sync with the bot depending on the random jump points and how long you run it.

    It is possible to make the other bot to start and stop this script but if you can do that you might as well just write all this in python and save the hassle.

    If you get this running you can add in the ability to lay down/run or whatever you want.

    No don't ask me how to do it, im not here for tutorials.

    Home is how you pause it

  2. The Following 4 Users Say Thank You to theclinton For This Useful Post:

    diestroNyk (09-21-2017),luckiest (10-25-2017),peachhihi (09-19-2017),sharljimhtsin (10-25-2017)

  3. #2
    peachhihi's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    Thanks for sharing, I am going to test your script with old python bot xD But can I ask a question where to paste these code in the config.jason file?
    Last edited by peachhihi; 09-17-2017 at 02:18 AM.

  4. #3
    jebentip's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    3
    It would be cool if you made tutorial how to use, you know this forum is for " free game hacks etc.. " 99% this hack got tutorial how to use it.. not anyone is here a programer or so smart to use this scripts. people are comming here for hacks and " mode menus and more " ... i got bot from other russian forums ( i will not post this here, google it ) already saw 10+ people in every fpp squad match going afk in air for 3-4 min. But I'm just saying..
    I respect your hard work

  5. The Following User Says Thank You to jebentip For This Useful Post:

    screwl1fe (09-18-2017)

  6. #4
    theclinton's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    826
    My Mood
    Inspired
    Quote Originally Posted by jebentip View Post
    It would be cool if you made tutorial how to use, you know this forum is for " free game hacks etc.. " 99% this hack got tutorial how to use it.. not anyone is here a programer or so smart to use this scripts. people are comming here for hacks and " mode menus and more " ... i got bot from other russian forums ( i will not post this here, google it ) already saw 10+ people in every fpp squad match going afk in air for 3-4 min. But I'm just saying..
    I respect your hard work
    I did tell you how to use it. install AutoHokey, paste the code in a txt file .AHK and run it with which ever bot you use.

  7. #5
    screwl1fe's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by jebentip View Post
    i got bot from other russian forums ( i will not post this here, google it )
    Can you give me a hint cant find it

  8. #6
    theclinton's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    826
    My Mood
    Inspired
    Quote Originally Posted by screwl1fe View Post
    Can you give me a hint cant find it
    Just use the python bot and update the leave game time

  9. #7
    peachhihi's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    It works fine for the first round but the second it gotta out of sync, I updated the leave game time to "290", anyway to fix that or make the python bot to start and stop this script, thank for your script
    Last edited by peachhihi; 09-19-2017 at 08:57 AM.

  10. #8
    theclinton's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    826
    My Mood
    Inspired
    Quote Originally Posted by peachhihi View Post
    It works fine for the first round but the second it gotta out of sync, I updated the leave game time to "290", anyway to fix that or make the python bot to start and stop this script, thank for your script
    You can reduce the amount of randomness in the jump to no more than 5 seconds. I.e 60-65 seconds. That should stop most of the sync issues on the next game

    As for starting this with python etc, that is why I abandoned the script and just coded in the python bot

    You will also want to adjust the sleep timer at the end so the total time the bot is run matches up with whatever you have set inside the python bot.
    Last edited by theclinton; 09-19-2017 at 10:01 AM.

  11. The Following User Says Thank You to theclinton For This Useful Post:

    peachhihi (09-19-2017)

  12. #9
    peachhihi's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    Quote Originally Posted by theclinton View Post
    You can reduce the amount of randomness in the jump to no more than 5 seconds. I.e 60-65 seconds. That should stop most of the sync issues on the next game

    As for starting this with python etc, that is why I abandoned the script and just coded in the python bot

    You will also want to adjust the sleep timer at the end so the total time the bot is run matches up with whatever you have set inside the python bot.
    Thank for your reply, I tried but it's hard because I don't know anything about coding and programing, I don't know those number 85000, 46000, 60000, 1000, 15000, 34000 stand for? Can you let me test your python bot?

  13. #10
    theclinton's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    826
    My Mood
    Inspired
    Quote Originally Posted by peachhihi View Post
    Thank for your reply, I tried but it's hard because I don't know anything about coding and programing, I don't know those number 85000, 46000, 60000, 1000, 15000, 34000 stand for? Can you let me test your python bot?
    All those are milliseconds, so 85000=85 seconds.

    Only thing you need to change would be the 46-60 seconds to like 50-55

    And 34 seconds to like 30.

    You also need to change the time in the config file of the python bot. "plain_time" or something like that.

  14. The Following User Says Thank You to theclinton For This Useful Post:

    peachhihi (09-19-2017)

  15. #11
    peachhihi's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    Quote Originally Posted by theclinton View Post
    All those are milliseconds, so 85000=85 seconds.

    Only thing you need to change would be the 46-60 seconds to like 50-55

    And 34 seconds to like 30.

    You also need to change the time in the config file of the python bot. "plain_time" or something like that.
    I changed those setting like you but still don't know how to change the leave time in the python bot to sync with those setting time, my current settings are "wait_for_players": 290, "wait_for_plain": 20. So what do I do now?

  16. #12
    theclinton's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    826
    My Mood
    Inspired
    Quote Originally Posted by peachhihi View Post
    I changed those setting like you but still don't know how to change the leave time in the python bot to sync with those setting time, my current settings are "wait_for_players": 290, "wait_for_plain": 20. So what do I do now?
    Change wait for players back to whatever it was and make wait for plain 300 and run both the bot and the script and you should be good

  17. #13
    peachhihi's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    Quote Originally Posted by theclinton View Post
    Change wait for players back to whatever it was and make wait for plain 300 and run both the bot and the script and you should be good
    Still not work for me Anyway thank for your help

  18. #14
    theclinton's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    826
    My Mood
    Inspired
    Quote Originally Posted by peachhihi View Post
    Still not work for me Anyway thank for your help
    What part isn't working

  19. #15
    diestroNyk's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    1
    I put the code in AHK and modify "wait_for_players": 40, "wait_for_plain": 300, worth for me and im taking 60 per game x) TY for that fix

Page 1 of 4 123 ... LastLast

Similar Threads

  1. [Release] RS3 AHK Anti-Log Script (For AFK skilling/Combat) WITH SOURCE 2017
    By BlazedCreations in forum Runescape Hacks / Bots
    Replies: 15
    Last Post: 12-09-2019, 02:19 PM
  2. Blade And Soul Looking For EXP farm Bot
    By jubjublkm in forum Blade & Soul Cheats & Hacks
    Replies: 1
    Last Post: 03-16-2016, 06:27 AM
  3. Looking for a farm bot
    By COOLERTHANCOOL in forum CrossFire Discussions
    Replies: 4
    Last Post: 07-09-2013, 09:42 AM
  4. A script for afking in 24mans?
    By crashsite in forum Vindictus Help
    Replies: 0
    Last Post: 10-08-2012, 12:39 PM
  5. [Solved] Where do I find MultiClient/farming bot/afk for CFNA?
    By somaizeu in forum CrossFire Help
    Replies: 2
    Last Post: 07-01-2012, 04:26 PM