DrSmiley72
Member
- Gender
- Male
Just wondering if there's any way to make gambling faster. Many times I want to throw 10k at him multiple times but it takes forever. Lol.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
p.s. would Ephinea admins consider the use of autohotkey macros cheating in this instance?
;; Ctrl+J to start, hold Esc to stop
;; Made by GravitySuitCollector
#IfWinActive Ephinea: Phantasy Star Online Blue Burst
SetKeyDelay, 500, 100
^j::
Loop, 30
{
if GetKeyState("Esc" , "P")
{
Exit
}
IfWinActive Ephinea: Phantasy Star Online Blue Burst
{
Send, {Enter}
Sleep 1000 ; Allows Coren time to turn towards player
Send, {Enter}
Send, {Enter}
Send, {Enter}
Send, {Enter} ; Sure/No way
}
if GetKeyState("Esc" , "P")
{
Exit
}
IfWinActive Ephinea: Phantasy Star Online Blue Burst
{
Send, {Enter}
Send, {Enter}
Send, {Enter}
Send, {Enter}
Send, {Enter}
Send, {Enter} ; Meseta selection
}
if GetKeyState("Esc" , "P")
{
Exit
}
IfWinActive Ephinea: Phantasy Star Online Blue Burst
{
Send, {Down} ; highlights 10,000 mesta option
Send, {Enter} ; selects 10,000 mesta option
Send, {Enter}
Send, {Enter}
Sleep, 4000 ; Allows for prize to be generated and presented to player
Send, {Enter}
Send, {Enter}
Send, {Enter}
Send, {Enter}
}
}
Return
A copy and paste of the code you provided into an AKH file has no effect when in EpheniaBB. Even simpler scripts, such as:;; Ctrl+J to start, hold Esc to stop
;; Made by GravitySuitCollector
#IfWinActive Ephinea: Phantasy Star Online Blue Burst
SetKeyDelay, 500, 100
^j::
Loop, 30
{
if GetKeyState("Esc" , "P")
{
Exit
}
IfWinActive Ephinea: Phantasy Star Online Blue Burst
{
Send, {Enter}
Sleep 1000 ; Allows Coren time to turn towards player
Send, {Enter}
Send, {Enter}
Send, {Enter}
Send, {Enter} ; Sure/No way
}
if GetKeyState("Esc" , "P")
{
Exit
}
IfWinActive Ephinea: Phantasy Star Online Blue Burst
{
Send, {Enter}
Send, {Enter}
Send, {Enter}
Send, {Enter}
Send, {Enter}
Send, {Enter} ; Meseta selection
}
if GetKeyState("Esc" , "P")
{
Exit
}
IfWinActive Ephinea: Phantasy Star Online Blue Burst
{
Send, {Down} ; highlights 10,000 mesta option
Send, {Enter} ; selects 10,000 mesta option
Send, {Enter}
Send, {Enter}
Sleep, 4000 ; Allows for prize to be generated and presented to player
Send, {Enter}
Send, {Enter}
Send, {Enter}
Send, {Enter}
}
}
Return
I've never tried any of this, but it sounds like you might not be running AHK as an admin?A copy and paste of the code you provided into an AKH file has no effect when in EpheniaBB. Even simpler scripts Do not work in PSOBB but do in other applications. Anybody able to suggest a solution to this please?
Ty for the suggestion. I right clicked the .ahk (script file) and selected to run it as admin but it hasn't made a difference unfortunately (the hotkey still works in other applications but not PSO). I'm assuming I don't have to track down a .exe somewhere and set that to run as admin of course.I've never tried any of this, but it sounds like you might not be running AHK as an admin?
Code:;; Ctrl+J to start, hold Esc to stop ;; Made by GravitySuitCollector #IfWinActive Ephinea: Phantasy Star Online Blue Burst SetKeyDelay, 500, 100 ^j:: Loop, 30 { if GetKeyState("Esc" , "P") { Exit } IfWinActive Ephinea: Phantasy Star Online Blue Burst { Send, {Enter} Sleep 1000 ; Allows Coren time to turn towards player Send, {Enter} Send, {Enter} Send, {Enter} Send, {Enter} ; Sure/No way } if GetKeyState("Esc" , "P") { Exit } IfWinActive Ephinea: Phantasy Star Online Blue Burst { Send, {Enter} Send, {Enter} Send, {Enter} Send, {Enter} Send, {Enter} Send, {Enter} ; Meseta selection } if GetKeyState("Esc" , "P") { Exit } IfWinActive Ephinea: Phantasy Star Online Blue Burst { Send, {Down} ; highlights 10,000 mesta option Send, {Enter} ; selects 10,000 mesta option Send, {Enter} Send, {Enter} Sleep, 4000 ; Allows for prize to be generated and presented to player Send, {Enter} Send, {Enter} Send, {Enter} Send, {Enter} } } Return
For 1k level, just spam enter as fast as PSO can recognize.Send, {Down} ; highlights 10,000 mesta option
If I merely remove the bolded text I assume this runs the 1,000 meseta option and should work? I'm not a coder at all so this is foreign to me. Thanks.
For 1k level, just spam enter as fast as PSO can recognize.
Tyvm for the info and your help with this. I do have autohotkey installed. Compiling, then running in admin and using your #IfWinActive Ephinea... now lets scripts operate when PSO is active.Hi, it is me, the writer of said script. I compiled it for you. Remember to run as admin. Ctrl+J to start, hold Esc to stop it prematurely.
For future reference, ahk scripts need to be compiled/run as admin to work with PSOBB. You should be able to right click and select "compile script" if you have autohotkey installed rather than in a portable form.
Edit: Kudos should also be given to NDW (mag feeding scripts which helped me in making my own later) and Red (worked with him in designing a script for this purpose). Also, the initial "#IfWinActive Ephinea: Phantasy Star Online Blue Burst" at the start of the script seems to make Blue Burst happier with you....
Edit2: Also, that script will loop 30 times, spending a total of 300k. You will then want to clean inventory/restock meseta after, then run again. Approx 7.5 minutes per run.
(e.g. changing entire set of equipped items rapidly; should be doable provided the order of inventory items isn't changed).
May want to run this by an admin to ensure it is allowed. Mag feeding or shopping is one thing, but scripting for more efficient gameplay that potentially affects other players is another.