Jump to content

star wars galaxies delete item


Recommended Posts

in the game star wars galaxies i know there scripts out there that delete unwanted items while grinding spots for junk loot, the problem i run into is when i radial an item the destroy option can be in spot 3 4 5 6 and if i have the mouse click say spot 3 first , it could be a different option on another item , like clothing

is there anyway to get autoit to realize where the DESTROY option is, or better yet does anyone have a premade script for this?

Link to comment
Share on other sites

in the game star wars galaxies i know there scripts out there that delete unwanted items while grinding spots for junk loot, the problem i run into is when i radial an item the destroy option can be in spot 3 4 5 6 and if i have the mouse click say spot 3 first , it could be a different option on another item , like clothing

is there anyway to get autoit to realize where the DESTROY option is, or better yet does anyone have a premade script for this?

FYI: This is against SOE's policy to do so. You CAN get banned by using this.

There I said it... Considering how SOE only seems to care about players buying their latest loot cards I'll release this script.

Move the 'split screen' dialog away from your inventory. Make sure nothing can popup over the coordinates.

You set the coordinate of the item (Obviously the most bottom right hand object. Anything that doesn't stack gets destroyed).

Turn it on.

Watch and enjoy.

#include <misc.au3>
;
Local $Mousecords[2], $Started = 0
$end = 0
While $end = 0
    WinWaitActive("Star Wars")
    If _IsPressed(70) Then
        $Mousecords = MouseGetPos()
        Beep(800, 100)
        While _IsPressed(70)
            ;
        WEnd
    EndIf
    If _IsPressed(71) Then
        If $Started = 0 Then 
            $Started = 1
            Beep(800, 100)
        Else
            $Started = 0
            Beep(400, 100)
        EndIf
        While _IsPressed(71)
            ;
        WEnd
    EndIf
    
    If $Started = 1 Then
        $I = 1
        Do
            MouseMove($Mousecords[0], $Mousecords[1])
            MouseDown("Left")
            Sleep(600)
            Send("423")
            MouseUp("Left")
            MouseDown("Left")
            Sleep(400)
            Send("432")
            MouseUp("Left")
            $I += 1
            Sleep(200)
            Until $I = 4
        Sleep(1000)
        MouseMove(@DesktopWidth / 2, @DesktopHeight / 2)
        MouseDown("left")
        Sleep(15000)
    EndIf
    
WEnd
Edited by Szhlopp
Link to comment
Share on other sites

like what i mean is

the mouse cords are 1138,776

and i tried swg in windowed and non windowed mode, nothing happens

i inputed it

$Mousecords = MouseGetPos(1138,776)

there

and sorry about doubleposts but every time i goto edit it says i dont have permission...

anyway taking away your restrictions i got your macro to work but its still only set for one area

destroy can be in the 1 , 3, 5 , 6 o clock positions and if your macro is say set as destroy is option number 2, and examine is option 2 on that item....it examines it and blocks out all other functions becuse the examine window covers everything

also the destroy confirm spacing is different for different items, and most of the time it just plain misses :)

what am i doin wrong lol

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...