Infinite Dark/Light Side Points! (Empire) menu

User Tag List

Page 2 of 7 FirstFirst 123456 ... LastLast
Results 16 to 30 of 100
  1. #16
    spawnz's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So I coded a quick bot to click the campfire, skip cut scenes, and choose the conversation. With my calculations starting from like 2850 Light side and getting 50 per conversation, each conversation cycle takes 45sec, and max was 10,000 so theoritically it would take 140ish attempts and it would take 5.6 hours. So I let it run over night and boom when I turned in the quest I got 35k Light side points. Here is the screenshot proving I recieved Light level 4 & 5 codex at the same time (obviously from turning in the quest). Enjoy and if someone wants to see my code it'd be cool.Infinite Dark/Light Side Points! (Empire)-untitled-png

    Infinite Dark/Light Side Points! (Empire)
  2. #17
    shadowsx's Avatar Bawx Lurker CoreCoins Purchaser
    Reputation
    351
    Join Date
    Oct 2009
    Posts
    769
    Thanks G/R
    2/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't get it to work, I kill 2 of the mobs and loot only one, talk to the fire and finish it, then I go pick up the other mob and still can't click the fire again? :/

  3. #18
    Disphotic's Avatar ( ͡° ͜ʖ ͡°) CoreCoins Purchaser
    Reputation
    640
    Join Date
    Sep 2006
    Posts
    1,344
    Thanks G/R
    79/103
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by shadowsx View Post
    I can't get it to work, I kill 2 of the mobs and loot only one, talk to the fire and finish it, then I go pick up the other mob and still can't click the fire again? :/
    Your doing it wrong, you kill enough mobs so that you have 2 corpses with yellow beams up, loot both so you get 2 of the same item, then it should work, 1 is consumed first and second one lasts forever

  4. #19
    shadowsx's Avatar Bawx Lurker CoreCoins Purchaser
    Reputation
    351
    Join Date
    Oct 2009
    Posts
    769
    Thanks G/R
    2/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Felheart View Post
    Your doing it wrong, you kill enough mobs so that you have 2 corpses with yellow beams up, loot both so you get 2 of the same item, then it should work, 1 is consumed first and second one lasts forever
    Ok i've tried that also (well not with 2 but with 3-4) and it still doesn't work, I'll try it with 2 now.

  5. #20
    Disphotic's Avatar ( ͡° ͜ʖ ͡°) CoreCoins Purchaser
    Reputation
    640
    Join Date
    Sep 2006
    Posts
    1,344
    Thanks G/R
    79/103
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by shadowsx View Post
    Ok i've tried that also (well not with 2 but with 3-4) and it still doesn't work, I'll try it with 2 now.
    Wierd, did you actually click the campfire? Because the fire doesn't "glow"

  6. #21
    Cloudflash's Avatar Contributor
    Reputation
    137
    Join Date
    Dec 2008
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Confirmed! just pickup more than 1 quest item and it works + rep great find!

  7. #22
    stickybun's Avatar Member
    Reputation
    3
    Join Date
    Dec 2007
    Posts
    37
    Thanks G/R
    4/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cant be redone say at level 20 after you have done the quest so................... nice find but too late for me

  8. #23
    DrD's Avatar Member Authenticator enabled
    Reputation
    9
    Join Date
    Mar 2008
    Posts
    84
    Thanks G/R
    1/2
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you just spam the 1 and space keys it will skip the entire conversation in about 10 seconds or so and give you 50 Dark Side Points.

  9. #24
    Nyst's Avatar Member
    Reputation
    1
    Join Date
    Sep 2010
    Posts
    40
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I created an AHK script that spams 1 and space. It gets the convo down in 5 secs and maxes out Dark side in about 15-20 minutes.
    Code:
    #ifWinActive Star Wars: The Old Republic		;; work only if SWTOR is the active window
    sleep 5000						;; sleep 5 seconds to tab out.
    
    Loop							;; loop
    {
    
    send {Space down}					;; Presses Space
    sleep 10
    send {Space up}
    sleep 10						
    send {1 down}						;; Presses 1
    sleep 10
    send {1 up}
    sleep 10
    send {RButton down}					;; Right clicks
    sleep 10
    send {RButton up}
    }
    *NOTE* Make sure to position your cursor in the middle of the screen over the bonfire.

  10. #25
    Disphotic's Avatar ( ͡° ͜ʖ ͡°) CoreCoins Purchaser
    Reputation
    640
    Join Date
    Sep 2006
    Posts
    1,344
    Thanks G/R
    79/103
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nyst View Post
    I created an AHK script that spams 1 and space. It gets the convo down in 5 secs and maxes out Dark side in about 15-20 minutes.
    Code:
    #ifWinActive Star Wars: The Old Republic        ;; work only if SWTOR is the active window
    sleep 5000                        ;; sleep 5 seconds to tab out.
    
    Loop                            ;; loop
    {
    
    send {Space down}                    ;; Presses Space
    sleep 10
    send {Space up}
    sleep 10                        
    send {1 down}                        ;; Presses 1
    sleep 10
    send {1 up}
    sleep 10
    send {RButton down}                    ;; Right clicks
    sleep 10
    send {RButton up}
    }
    *NOTE* Make sure to position your cursor in the middle of the screen over the bonfire.
    I'm a noob with botting, is this auto it? Also could you make it so it spams 2 instead, what would I have to replace 2 with there? :P

  11. #26
    spawnz's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The code/scripts posted seem a little inferior. Below is the one I coded which goes through the entire conversation properly rather than constantly pressing keys hoping it's in the right part and also there is no way that shit works cause of the such low sleep timers, no were near realistic let alone reliability. +rep if you like
    It's for Light side but you can change the 2 to 1 on the last convo segment before last. The coords can be set to the position of the bonfire relative to your screen, easy to grab using the included "Window Spy" utility.

    ^t::
    Loop
    {
    ;remove any popups
    ControlSend, , {Esc}, Star Wars: The Old Republic
    Sleep 500
    ControlSend, , {Esc}, Star Wars: The Old Republic
    Sleep 500


    ;click bonfire
    DllCall("SetCursorPos", int, 785, int, 435)
    Sleep 500
    ControlClick, X785 Y435, Star Wars: The Old Republic, ,RIGHT, 1, Pos


    ;wait for convo to begin, skip scenes, click first option
    Sleep 5000
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    ControlSend, , 3, Star Wars: The Old Republic


    ;repeat cycle
    Sleep 5000
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    ControlSend, , 3, Star Wars: The Old Republic


    Sleep 5000
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    ControlSend, , 3, Star Wars: The Old Republic


    Sleep 5000
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    ControlSend, , 2, Star Wars: The Old Republic


    Sleep 5000
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    ControlSend, , 3, Star Wars: The Old Republic


    ;skip final talking
    Sleep 2000
    Spacebar()
    Sleep 400
    Spacebar()
    Sleep 400
    Spacebar()


    Sleep 5000
    }
    return
    I used this to get max Light rank 5 and also you gain companion points so my affection is also maxed out!!

  12. #27
    Nyst's Avatar Member
    Reputation
    1
    Join Date
    Sep 2010
    Posts
    40
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Felheart View Post
    I'm a noob with botting, is this auto it? Also could you make it so it spams 2 instead, what would I have to replace 2 with there? :P
    This is AutoHotKey. So, download AutoHotKey, and just copy the code into a notepad and save as a .ahk
    Also just change the 1 to a 2, to make it spam 2.
    Code:
    #ifWinActive Star Wars: The Old Republic        ;; work only if SWTOR is the active window
    sleep 5000                        ;; sleep 5 seconds to tab out.
    
    Loop                            ;; loop
    {
    
    send {Space down}                    ;; Presses Space
    sleep 10
    send {Space up}
    sleep 10                        
    send {1 down}                        ;; Presses 1
    sleep 10
    send {1 up}
    sleep 10
    send {RButton down}                    ;; Right clicks
    sleep 10
    send {RButton up}
    }
    Underlined the 1's.

    ---------- Post added at 06:11 PM ---------- Previous post was at 06:09 PM ----------

    Originally Posted by spawnz View Post
    The code/scripts posted seem a little inferior. Below is the one I coded which goes through the entire conversation properly rather than constantly pressing keys hoping it's in the right part and also there is no way that shit works cause of the such low sleep timers, no were near realistic let alone reliability. +rep if you like
    It's for Light side but you can change the 2 to 1 on the last convo segment before last. The coords can be set to the position of the bonfire relative to your screen, easy to grab using the included "Window Spy" utility.



    I used this to get max Light rank 5 and also you gain companion points so my affection is also maxed out!!
    Actually I got about 32k Dark side points, and 13k companions points from my script in about 15 minutes.

  13. #28
    stickybun's Avatar Member
    Reputation
    3
    Join Date
    Dec 2007
    Posts
    37
    Thanks G/R
    4/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    edited cos i read some more lol

  14. #29
    thebluefish's Avatar Sergeant
    Reputation
    15
    Join Date
    Aug 2010
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I chose to go with the slower, but more complete version rather than just mashing buttons. Since there's talk about a warden-equivalent, I'm not going to take any chances with something that would show up as an instant red flag to any GM that happens across it. Especially considering they're already pissy when it comes to macros n shit.

  15. #30
    Randomizer's Avatar Contributor
    Reputation
    120
    Join Date
    Jun 2008
    Posts
    188
    Thanks G/R
    6/0
    Trade Feedback
    1 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    The script posted by spawnz did not work for me. I altered his script to work and also changed it so you can position the mouse to make life easy
    Code:
    #ifWinActive Star Wars: The Old Republic        ;; work only if SWTOR is the active window
    sleep 5000                        				;; sleep 5 seconds to tab out.
    Loop
    {
    ;click bonfire
    send {RButton down}                    ;; Right clicks
    sleep 10
    send {RButton up}
    
    
    ;wait for convo to begin, skip scenes, click first option
    Sleep 5000
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400    
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    ControlSend, , 3, Star Wars: The Old Republic
    
    
    ;repeat cycle
    Sleep 5000
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    ControlSend, , 3, Star Wars: The Old Republic
    
    
    Sleep 5000
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    ControlSend, , 3, Star Wars: The Old Republic
    
    
    Sleep 5000
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    ControlSend, , 2, Star Wars: The Old Republic
    
    
    Sleep 5000
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    ControlSend, , 3, Star Wars: The Old Republic
    
    
    ;skip final talking
    Sleep 2000
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    Sleep 400
    Send, {SPACE}
    
    
    Sleep 5000
    }
    return

Page 2 of 7 FirstFirst 123456 ... LastLast

Similar Threads

  1. [Guide] How to stack up a infinite amount of Justice Points, way above cap!
    By Bluetears in forum World of Warcraft Guides
    Replies: 3
    Last Post: 10-24-2013, 02:15 PM
  2. [Selling] WTS 50 WHM +1 Relic / Full Dark Light
    By darkjoy in forum Final Fantasy XIV Buy Sell Trade
    Replies: 0
    Last Post: 10-21-2013, 08:57 PM
  3. Bounty Hunter Unlimited Light side Points
    By [Z]em in forum SWTOR Exploits
    Replies: 5
    Last Post: 04-15-2012, 02:56 PM
  4. Dark or Lightside Points + Credits
    By Real Goons Shoot in forum SWTOR Guides
    Replies: 5
    Last Post: 01-06-2012, 09:49 AM
  5. Get red saber color as light side
    By Cashcharac in forum SWTOR Exploits
    Replies: 3
    Last Post: 12-23-2011, 03:04 AM
All times are GMT -5. The time now is 08:11 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