Infinite Dark/Light Side Points! (Empire) menu

User Tag List

Page 3 of 7 FirstFirst 1234567 LastLast
Results 31 to 45 of 100
  1. #31
    krilleleet's Avatar Member
    Reputation
    1
    Join Date
    Apr 2011
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Felheart View Post
    You need to get 2 yellow drops before you actually loot them, the first one is consumed first time you click the fire, the 2nd one lasts forever
    Hmm where is the fire what coords? can i do this even if i finished the quest already and whats the name of the yellow item?

    Infinite Dark/Light Side Points! (Empire)
  2. #32
    xXK1ll3rXx's Avatar Member
    Reputation
    2
    Join Date
    Nov 2009
    Posts
    221
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So, once you completed the quest, you can never do this quest again?

  3. #33
    socaboy's Avatar Active Member
    Reputation
    35
    Join Date
    Sep 2006
    Posts
    182
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xXK1ll3rXx View Post
    So, once you completed the quest, you can never do this quest again?
    once you turn in the quest and complete it, it is done, finished. Or you could reroll a new character and then do this at the correct level.

  4. #34
    nightkiler3's Avatar Member
    Reputation
    4
    Join Date
    May 2008
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    okay i am new to ahk, could someone explain in detail what doing it intails?
    +rep

  5. #35
    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)
    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!!
    I took your script and modified it a bit. It now runs much faster, and no longer requires the window to be active the entire time. I was watching a movie, and had this running in the background. I also included a small GUI to track how many points you're getting so that you don't turn the quest in and realize you're short of your goals.

    ; Infinite Dark/Light side points
    ; Original Thread: http://www.ownedcore.com/forums/star...-empire-2.html
    ; Original Script Author: Spawnz
    ; Author: Thebluefish
    ; Changes:
    ; - Timed script so that it now takes less time for each cycle
    ; - Added a new GUI to track it
    ; - Changed Spacebar() command to ControlSend
    ; - Changed key commands and mouse commands
    ; - Now runs without the game as the active window

    #ifWinActive Star Wars: The Old Republic
    sleep 5000

    ; Setup X and Y coordinates
    PosX := 785
    PosY := 435

    ; Setup variables, lengthen them so we can fit large numbers
    numtimes := 00000000
    numpoints := 00000000
    numaffection := 00000000

    ; Setup the GUI to track our current data
    Gui +LastFound +AlwaysOnTop +ToolWindow
    Gui, Color, 000000
    Gui, Font, s20 cWhite, Verdana
    Gui, Add, Text, x10 y10 vNumTimes Center, Times %numtimes%
    Gui, Add, Text, x10 y40 vNumAffection Center, Affection: %numaffection%
    Gui, Add, Text, x10 y70 vNumPoints Center, Points: %numpoints%
    Gui, Show, x400 y0 NoActivate

    ;Setup our main Loop
    Loop
    {
    ;remove any popups
    ControlSend, , {Esc}, Star Wars: The Old Republic
    Sleep 200
    ControlSend, , {Esc}, Star Wars: The Old Republic
    Sleep 200


    ;click bonfire
    DllCall("SetCursorPos", int, PosX, int, PosY)
    Sleep 500
    PostMessage, 0x204, 0x1, ((PosY<<16)^PosX), , Star Wars: The Old Republic
    PostMessage, 0x205, 0x0, ((PosY<<16)^PosX), , Star Wars: The Old Republic
    ;ControlClick, X785 Y435, Star Wars: The Old Republic, ,RIGHT, 1, Pos


    ;wait for convo to begin, skip scenes, click first option
    Sleep 5000
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , 3, Star Wars: The Old Republic


    ;repeat cycle
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , 3, Star Wars: The Old Republic

    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , 3, Star Wars: The Old Republic


    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , 2, Star Wars: The Old Republic


    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , 3, Star Wars: The Old Republic


    ;skip final talking
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic
    Sleep 120
    ControlSend, , {Space}, Star Wars: The Old Republic

    ; At the end of each loop, update our counter to show the new data
    Gosub, UpdateOSD
    }


    return

    UpdateOSD:
    numtimes += 1
    numpoints += 50
    numaffection += 15
    GuiControl,, NumTimes, Times %numtimes%
    GuiControl,, NumAffection, Affection: %numpoints%
    GuiControl,, NumPoints, Points: %numaffection%
    return
    Last edited by thebluefish; 12-30-2011 at 12:21 AM.

  6. #36
    dr00dsteve's Avatar Active Member
    Reputation
    55
    Join Date
    Apr 2007
    Posts
    195
    Thanks G/R
    4/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just went back today afterwards and turned in the quest for -4500 darkside rep (RECONFIRMED :P)

  7. #37
    nightkiler3's Avatar Member
    Reputation
    4
    Join Date
    May 2008
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hotfixed? it wAS WOrking, i left themonitor, and came back with itturnedin(both tokens)

  8. #38
    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)
    thebluefish: great work buddy and thanks for proper credit. keep it up!! I'm thinking of releasing a complete framework I've been working on, basically a multi-threaded base which can do all the proper movements, clicks, and button presses that would ever be needed in any automation. Right now it's in the alpha stages of just moving between different chests and looting them

  9. #39
    SlapChop's Avatar Member
    Reputation
    7
    Join Date
    Oct 2010
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    works great as of this posting. thanks!

  10. #40
    nightkiler3's Avatar Member
    Reputation
    4
    Join Date
    May 2008
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So i spent a hour or so doing this, and i press "c" to view the progress, and nothing's changed? what? yeah nothing..... everything was going through up until i actually wanted "progress" to view my
    Last edited by nightkiler3; 12-30-2011 at 02:14 AM.

  11. #41
    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)
    Originally Posted by nightkiler3 View Post
    So i spent a hour or so doing this, and i press "c" to view the progress, and nothing's changed? what? yeah nothing..... everything was going through up until i actually wanted "progress" to view my
    If you read this thread you'd realize the thread maker answered this question already. You do not see the points until you turn the quest in. Read more.

  12. #42
    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)
    Originally Posted by spawnz View Post
    thebluefish: great work buddy and thanks for proper credit. keep it up!! I'm thinking of releasing a complete framework I've been working on, basically a multi-threaded base which can do all the proper movements, clicks, and button presses that would ever be needed in any automation. Right now it's in the alpha stages of just moving between different chests and looting them
    If you have AIM or Skype, PM me and I would love to assist you with that sort of thing. If it's a framework you're building off of, I can always contribute with additional features as well as scripts to run off it.

    ---------- Post added at 03:29 AM ---------- Previous post was at 03:24 AM ----------

    Originally Posted by nightkiler3 View Post
    Hotfixed? it wAS WOrking, i left themonitor, and came back with itturnedin(both tokens)
    Wasn't hotfixed. That happened to me the first time I tried. Trick that worked for me was to get 3 tokens instead of 2. It took me 2 tries, both times I only got 2 tokens and it took the second after a few tries. Then I reset the quest, nabbed 3 tokens, and ran through 200 iterations without any problem. Just logged back in after watching a movie, and it's still working without problem.

  13. #43
    Bizzio's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2008
    Posts
    11
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also will give you affection gain with Khem Val (at least) got over 500 for him with selecting option 3 every time except for the Lightside/Darkside choice!

  14. #44
    wiley1's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hotfixed?

    I turned in a char doing Light Side a few hours ago and it worked, I just turned in a dark side char and didn't work at all. Any other reports from recent turn ins, and if so light or dark?

  15. #45
    Bizzio's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2008
    Posts
    11
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wiley1 View Post
    hotfixed?

    I turned in a char doing Light Side a few hours ago and it worked, I just turned in a dark side char and didn't work at all. Any other reports from recent turn ins, and if so light or dark?

    When i mentioned the affection gain I also got enough darkside to hit Dark V and that was only a few minutes before your post.

Page 3 of 7 FirstFirst 1234567 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 09:00 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