SWTOR starter for Lucky's Spacebot menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 26
  1. #1
    federp's Avatar Corporal
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    SWTOR starter for Lucky's Spacebot

    What is this?
    This little tool will monitor swtor and luckys spacebot, and restart your
    mission grinding when things crash.

    Installation / Before you begin...
    * make sure this file (starter.au3) is inside the lucky's spacebot folder
    * Make sure you put the images inside a 'starterpics' folder (create it inside lucky's folder)
    * If the image searches keep failing, create your own from some screenshots as needed.

    Edit swtor-starter.ini
    * On the first run swtor-starter.ini will be created inside "my documents"
    Edit the ini and:
    * Change the path to launcher.exe
    * Add your account password

    Also this: Don't EVER give your password to anyone!

    * Disable hybernate functionality inside lucky's
    * Start Lucky's spacebot
    * Check the "start checking" checkbox

    To-do
    ; DONE * Check ini existance
    ; DONE * Store values/settings inside the ini on quit
    ; DONE * Fix closing the app (unresponsive, does work eventually)
    ; DONE * Tooltip to explain button ID and how to get it.
    ; DONE * swtor binary location setting in config
    ; TESTING * Count restarts performed
    ; * Option to restart the spacebot (stop bot, start game, start bot. To prevent weird mouse move


    Download v1.0 here: swtor-starter.zip

    Download v1.1 here: swtor-starter-v1.1.zip
    Last edited by federp; 08-10-2012 at 07:42 AM.

    SWTOR starter for Lucky's Spacebot
  2. #2
    federp's Avatar Corporal
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bump to say new version is out. Is anyone even using this? Otherwise I'll just stop posting these completely.

  3. #3
    red12361's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I do use it. Had to make my own screenshots but aside from that it works like a charm. thanks for sharing!

    one little suggestion though: bake it into an .exe so people won't have to download AutoIt and can easily run it as admin to rule out issues.

  4. #4
    psolarxis's Avatar Active Member
    Reputation
    21
    Join Date
    Jan 2012
    Posts
    106
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey, im gonna try this. sounds useful

    can it be used in a VMware?

  5. #5
    federp's Avatar Corporal
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by psolarxis View Post
    hey, im gonna try this. sounds useful

    can it be used in a VMware?
    Sure, I use it in a parallels VM myself.

  6. #6
    federp's Avatar Corporal
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by red12361 View Post
    I do use it. Had to make my own screenshots but aside from that it works like a charm. thanks for sharing!

    one little suggestion though: bake it into an .exe so people won't have to download AutoIt and can easily run it as admin to rule out issues.
    Due to sensitivity with passwords I thought it might be best to not post the .exe directly. This way people can see what it does, and you need to install AutoIt to find the mission ID from lucky's interface anyway.

  7. #7
    psolarxis's Avatar Active Member
    Reputation
    21
    Join Date
    Jan 2012
    Posts
    106
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it's giving me an error "Didn't find password entry field", and I put my password on the .ini file. I think it fails to start the launcher for some reason, therefore not finding any password field. checking the code now.

  8. #8
    federp's Avatar Corporal
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by psolarxis View Post
    it's giving me an error "Didn't find password entry field", and I put my password on the .ini file. I think it fails to start the launcher for some reason, therefore not finding any password field. checking the code now.
    You possibly need to change the path to the launcher.exe. After that you can try making your own screenshot of the launcher to replace the password entry picture with your own version.

  9. #9
    Darkbounded's Avatar Knight-Captain
    Reputation
    50
    Join Date
    Oct 2011
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I did everything like you said, but I can't find that starter ini file, it's not generated on the first second 3rd or whatsoever run, not in documents not in anything

  10. #10
    mrmr's Avatar Active Member
    Reputation
    34
    Join Date
    Jun 2007
    Posts
    84
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello.
    I would like to keep all the bot settings in his own directory (I hate having files around my system).
    So I digged the sourcecode and found this:
    Code:
    ; Check  if .ini is there
    Local $ini = @MyDocumentsDir&'\swtor-starter.ini'
    would be enough modify this into:
    Code:
    ; Check  if .ini is there
    Local $ini = '.\swtor-starter.ini'
    Also, I've seen some commented code about UAC prompt.
    On my system, UAC prompt appears for both the launcher and LuckySpacebot. Can I still use this "launcher"?
    I'm not root of myself

  11. #11
    noob766's Avatar Member
    Reputation
    6
    Join Date
    Apr 2008
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mrmr View Post
    Hello.
    I would like to keep all the bot settings in his own directory (I hate having files around my system).
    So I digged the sourcecode and found this:
    Code:
    ; Check  if .ini is there
    Local $ini = @MyDocumentsDir&'\swtor-starter.ini'
    would be enough modify this into:
    Code:
    ; Check  if .ini is there
    Local $ini = '.\swtor-starter.ini'
    Also, I've seen some commented code about UAC prompt.
    On my system, UAC prompt appears for both the launcher and LuckySpacebot. Can I still use this "launcher"?

    You have to disable UAC to use any starter since SWTOR requires admin

  12. #12
    Darkbounded's Avatar Knight-Captain
    Reputation
    50
    Join Date
    Oct 2011
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Darkbounded View Post
    I did everything like you said, but I can't find that starter ini file, it's not generated on the first second 3rd or whatsoever run, not in documents not in anything
    Aaaaand anything about this?

  13. #13
    mustbesecret's Avatar Member
    Reputation
    4
    Join Date
    Jul 2012
    Posts
    23
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    when i click the start checking nothing happens

  14. #14
    nishioyelle's Avatar Banned
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    t be best to not post the


  15. #15
    mustbesecret's Avatar Member
    Reputation
    4
    Join Date
    Jul 2012
    Posts
    23
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If youcan update this please do, i am trying to use it but after clicking the box nothing happens, i already edited the ini

Page 1 of 2 12 LastLast

Similar Threads

  1. [Buying] Buying SWTOR Credit,Trading SWTOR keys for your gold
    By Shayeeda in forum Star Wars: The Old Republic Buy Sell Trade
    Replies: 830
    Last Post: 12-10-2016, 07:07 AM
  2. [Trading] SWTOR Account for WoW Account
    By Hex00010 in forum WoW-US Account Buy Sell Trade
    Replies: 4
    Last Post: 03-05-2012, 06:29 PM
  3. [Trading] My SWTOR account for your Wow accnt
    By Salkan in forum World of Warcraft Buy Sell Trade
    Replies: 1
    Last Post: 01-11-2012, 08:54 AM
  4. [Selling] Standard SWTOR Key For Dark Reaper Credits or 60-day card (Empire Side)
    By xxx13luexxx in forum Star Wars: The Old Republic Buy Sell Trade
    Replies: 8
    Last Post: 01-10-2012, 01:18 AM
  5. [Twinks] No Need for Lucky Fishing Hat
    By shindaustin in forum World of Warcraft Exploits
    Replies: 7
    Last Post: 10-29-2010, 01:55 PM
All times are GMT -5. The time now is 02:11 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search