updated spacebot + crewbot menu

Shout-Out

User Tag List

Page 29 of 33 FirstFirst ... 252627282930313233 LastLast
Results 421 to 435 of 492
  1. #421
    crescentfresh007's Avatar Private
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am having the same problem as Fangster above. Problem just started today; was working fine before. Using v4.01. When the game is launched from desktop, I get the "Waiting for launcher login", then the game opens. Next it goes from "Typing password and logging in" to "Waiting for play button to become available", but the password is not being input to the login screen.

    Not sure what could have caused this.

    Windows 7 / Aero theme.

    Any help is much appreciated.
    Last edited by crescentfresh007; 07-30-2013 at 03:22 PM.

    updated spacebot + crewbot
  2. #422
    pompelmo's Avatar Private
    Reputation
    2
    Join Date
    Aug 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crescentfresh007 View Post
    I am having the same problem as Fangster above. Problem just started today; was working fine before. Using v4.01. When the game is launched from desktop, I get the "Waiting for launcher login", then the game opens. Next it goes from "Typing password and logging in" to "Waiting for play button to become available", but the password is not being input to the login screen.

    Not sure what could have caused this.

    Windows 7 / Aero theme.

    Any help is much appreciated.
    So the problem lies with the fact that before the launcher update yesterday, the password field was automatically highlighted. NOW you will have to add a line to click or select the password field before entering your password.

    I made a dirty fix for this like so

    Code:
    	If $result = 1 Then
    		custTooltip("Typing password and logging in..." & $pass)
    		waitSleepLong()
    		MouseMove(20,20,1)
    		Send($pass,1)
    		waitSleep()
    		Send("{ENTER}")
    		waitForPatching()
    	Else
    		custTooltip("Launcher timeout reached, relaunching...")
    		closeProcess()
    		openTOR()
    	EndIf
    becomes

    Code:
    If $result = 1 Then
    		custTooltip("Typing password and logging in..." & $pass)
    		waitSleepLong()
    		MouseMove(1280,720,1)
    		MouseClick("left")
    		waitSleep()
    		Send($pass,1)
    		waitSleep()
    		Send("{ENTER}")
    		waitForPatching()
    	Else
    		custTooltip("Launcher timeout reached, relaunching...")
    		closeProcess()
    		openTOR()
    	EndIf
    Where MouseMove(1280,720,1) will have to be your personal mouse coordinates for the password field. Then just recompile bread.au3 and you should be gtg.
    Last edited by pompelmo; 08-01-2013 at 04:38 PM.

  3. #423
    crescentfresh007's Avatar Private
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for the info but I have no idea how to use AutoIt.

    Tried to take a crack at it, but I just don't have the skills.

    **EDIT**

    Just figured out how to make the changes. GODDAMNIT I FEEL SMART!!!

    So happy.....this bot is the only reason I still play this game.
    Last edited by crescentfresh007; 08-02-2013 at 07:28 PM.

  4. #424
    breadguy's Avatar Knight-Lieutenant
    Reputation
    15
    Join Date
    Sep 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pompelmo View Post
    So the problem lies with the fact that before the launcher update yesterday, the password field was automatically highlighted. NOW you will have to add a line to click or select the password field before entering your password.

    I made a dirty fix for this like so

    Code:
    	If $result = 1 Then
    		custTooltip("Typing password and logging in..." & $pass)
    		waitSleepLong()
    		MouseMove(20,20,1)
    		Send($pass,1)
    		waitSleep()
    		Send("{ENTER}")
    		waitForPatching()
    	Else
    		custTooltip("Launcher timeout reached, relaunching...")
    		closeProcess()
    		openTOR()
    	EndIf
    becomes

    Code:
    If $result = 1 Then
    		custTooltip("Typing password and logging in..." & $pass)
    		waitSleepLong()
    		MouseMove(1280,720,1)
    		MouseClick("left")
    		waitSleep()
    		Send($pass,1)
    		waitSleep()
    		Send("{ENTER}")
    		waitForPatching()
    	Else
    		custTooltip("Launcher timeout reached, relaunching...")
    		closeProcess()
    		openTOR()
    	EndIf
    Where MouseMove(1280,720,1) will have to be your personal mouse coordinates for the password field. Then just recompile bread.au3 and you should be gtg.
    I actually stopped playing this game for the last month or so, uninstalled and everything.

    I don't know if i'll be able to update it anytime soon.

    So, if you could somehow find a way to make this universal so ppl can use, i'm sure they'd appreciate it.

    Otherwise, they just need to add those lines and recompile (with their own coordinates using the include mouseCoordinates.exe

  5. #425
    pompelmo's Avatar Private
    Reputation
    2
    Join Date
    Aug 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by breadguy View Post
    I actually stopped playing this game for the last month or so, uninstalled and everything.

    I don't know if i'll be able to update it anytime soon.

    So, if you could somehow find a way to make this universal so ppl can use, i'm sure they'd appreciate it.

    Otherwise, they just need to add those lines and recompile (with their own coordinates using the include mouseCoordinates.exe
    I'll take a look at a more universal fix for this later tonight, I'm guessing the best way to do it would be adding an image search of the pass field, and repackage with the new .jpg. I tried just using send "tab", but unfortunately that didn't work. :-/

  6. #426
    breadguy's Avatar Knight-Lieutenant
    Reputation
    15
    Join Date
    Sep 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pompelmo View Post
    I'll take a look at a more universal fix for this later tonight, I'm guessing the best way to do it would be adding an image search of the pass field, and repackage with the new .jpg. I tried just using send "tab", but unfortunately that didn't work. :-/
    imagesearch would work i think, you could search for a generic image in the launcher, then measure how many pixels it is from the password box

    or, you could simply search for the image, then click wherever the image in the launcher is found, then hit "tab", i think that would work as well

  7. #427
    60661n5's Avatar Private
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where can i download this bot?

  8. #428
    PleaseContinue2SupportBot's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any update pompelmo?

  9. #429
    sovoki's Avatar Banned
    Reputation
    21
    Join Date
    Dec 2012
    Posts
    192
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    on spacebot is there a warezone bot? pvp? please answer

  10. #430
    Saltychip's Avatar Member
    Reputation
    11
    Join Date
    Nov 2006
    Posts
    151
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice job on that fix pompelmo with the launcher issue. I did as you said and it worked good for me +rep!

  11. #431
    MiX74P3's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how do i change start delays? the bot seems to be running but its timing is off...

  12. #432
    hungryhippo's Avatar Member
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    MiX74P3, not sure you'd want to, as one of the beauties behind the bot is its randomization, unless you're referring to the Space mission section of the bot, in which case you might want to record things yourself (as others have suggested).

  13. #433
    capozguc's Avatar Private
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pompelmo View Post
    So the problem lies with the fact that before the launcher update yesterday, the password field was automatically highlighted. NOW you will have to add a line to click or select the password field before entering your password.

    I made a dirty fix for this like so

    Code:
    	If $result = 1 Then
    		custTooltip("Typing password and logging in..." & $pass)
    		waitSleepLong()
    		MouseMove(20,20,1)
    		Send($pass,1)
    		waitSleep()
    		Send("{ENTER}")
    		waitForPatching()
    	Else
    		custTooltip("Launcher timeout reached, relaunching...")
    		closeProcess()
    		openTOR()
    	EndIf
    becomes

    Code:
    If $result = 1 Then
    		custTooltip("Typing password and logging in..." & $pass)
    		waitSleepLong()
    		MouseMove(1280,720,1)
    		MouseClick("left")
    		waitSleep()
    		Send($pass,1)
    		waitSleep()
    		Send("{ENTER}")
    		waitForPatching()
    	Else
    		custTooltip("Launcher timeout reached, relaunching...")
    		closeProcess()
    		openTOR()
    	EndIf
    Where MouseMove(1280,720,1) will have to be your personal mouse coordinates for the password field. Then just recompile bread.au3 and you should be gtg.
    I did as you said. Found my corrdinates with the script in the bot folder but it doesnt go over my password area and type. Can you guys help?

  14. #434
    Nagashi's Avatar Active Member
    Reputation
    37
    Join Date
    Nov 2008
    Posts
    195
    Thanks G/R
    3/12
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone updating?

  15. #435
    Krum's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by capozguc View Post
    I did as you said. Found my corrdinates with the script in the bot folder but it doesnt go over my password area and type. Can you guys help?
    The bot stopped working for me since the launcher update. Won't resize, or even do anything within the game window.

    -Krum

Similar Threads

  1. Not updated? wtf..
    By myojinyahiko in forum World of Warcraft General
    Replies: 8
    Last Post: 09-13-2006, 05:02 PM
  2. BWH chinese translated. Now has an updated version for 1.11
    By ultimaonline100 in forum World of Warcraft Bots and Programs
    Replies: 40
    Last Post: 09-13-2006, 05:28 AM
  3. Site updates 6/19/2006
    By Matt in forum OC News
    Replies: 1
    Last Post: 06-19-2006, 08:48 AM
  4. Updated(FuxxoZ|WoWGlider)
    By ih8blizz in forum World of Warcraft Bots and Programs
    Replies: 22
    Last Post: 06-16-2006, 09:24 PM
  5. New Update on the Patch!
    By Dwarpy in forum World of Warcraft General
    Replies: 1
    Last Post: 05-22-2006, 12:50 AM
All times are GMT -5. The time now is 05:30 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search