Gibts ein Mirash Script? Die Instance suckt ein bisschen :( So könnte man einfach AP farmen.
Sicher im topic ist doch ein [Only registered and activated users can see links. Click Here To Register...] :pQuote:
Gibts ein Mirash Script? Die Instance suckt ein bisschen :( So könnte man einfach AP farmen.
funny . the asmos always killing me alsoQuote:
is it possible to add auto accept ress when AFK looting fatties? dang elyos killing my botties all the time
So you want a follower which auto rezzes at sanctum, walks back to tiamaranta eye waiting for the main to appear again so he can follow?Quote:
funny . the asmos always killing me also
tell you the truth. the auto loot always mess me up. i been using the older one. all i need is to have the alt stay closer because it stops fallowing to much and get me killed to much. i had set up a macro to spam the C key to loot. and i have found it easier to loot the mobs the second time the group gets to the area again.. really i would like just a good fallow script that stays with me closer. using run scrolls and auto rez. really this in my thoughts would be better
Hi Paraly, is there any SendAction that could emulate a Enter key press? :confused:Quote:
I never mentioned the command SendAction here's a list on what I found out what it is able to
1 - 1 = left
1 - 2 = right
1 - 4 = forward
1 - 8 = backward
1 - 16 = fly upwards
1 - 32 = fly downwards
1 - 64 = fly towards camera angle?
1 - 128 = rotate character towards camera angle
2 - 1 = ???
2 - 2 = ???
2 - 4 = ???
2 - 8 = ???
2 - 16 = ???
2 - 32 = ???
2 - 64 = ???
2 - 128 = blocks all movement except forward?
3 - 1 = jump
3 - 2 = switch weapon
3 - 4 = start free fly
3 - 8 = stop free fly
3 - 16 = glide
3 - 32 = ???
3 - 64 = ???
3 - 128 = ???
Thank you. :handsdown:Quote:
Why don't you use
Code:SendKey=0x0D;
Open the Script Editor, check "Show IDs", hover above the title bar of the invitation window, it will display the Frame IDQuote:
Thank you. :handsdown:
Currently the group accepts are being made using mouse coordinates and click. Do party invitation window have a way to recognize them through memory check? so I could accept them with SendKey=0x0D only when the window appears on the screen?
In example, evergale's window confirmation
#IF=%FirstTime,; #UseLoop #ENDIF _SetVar30=508; <-- put the invitation frameID in here #EXECUTE=WaitForFrame; <-- waits till the frame ID from above appears Delay=1000; SendKey=0x0D; <-- sends enter Delay=5000; start_WaitForFrame; MemWrite=%AddrFreeMem10,0,BYTE; #DO=10800000; <-- 3 hours timeout _IFFrameVisible=%Var30; FrameID MemWrite=%AddrFreeMem10,1,BYTE; #ENDIF Delay=750; <-- optional put some anti afk here _UNTILMemRead=%AddrFreeMem10,BYTE,=1; end_WaitForFrame;