Help with Atlas MMO - Music Playing Script

Ask gaming related questions (AHK v1.1 and older)
sybercid
Posts: 3
Joined: 12 Oct 2018, 17:19

Help with Atlas MMO - Music Playing Script

05 Jan 2019, 03:30

In the recently released Atlas MMO players can learn a skill set which provides buffs to players around them by playing musical shanties. When a player uses a shanty the game turns into a guitar hero esque mini game. My idea was to create a script which would search for the image of the bar signaling the note to hit. Once the image was found it would play the note and loop through. Here is what I wrote in haste but it doesn't seem to be working in game. Anyone point me in a direction to get this working?

screengrab to show what I am working with in game.

Image

Code: Select all

+f7::
loop 
{ 
	ImageSearch, X, Y, 0, 0, 3840, 2160,    q.png

    If ErrorLevel = 0
    {
    Send q;
}

else

	ImageSearch, X, Y, 0, 0, 3840, 2160,    w.png

    If ErrorLevel = 0
    {
    Send w;
}


else

	ImageSearch, X, Y, 0, 0, 3840, 2160,    e.png

    If ErrorLevel = 0
    {
    Send e;
}

else

	ImageSearch, X, Y, 0, 0, 3840, 2160,    a.png

    If ErrorLevel = 0
    {
    Send a;
}


else
	ImageSearch, X, Y, 0, 0, 3840, 2160,    s.png

    If ErrorLevel = 0
    {
    Send s;
}


else
	ImageSearch, X, Y, 0, 0, 3840, 2160,    d.png

    If ErrorLevel = 0
    {
    Send d;
}

}

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: Ineedhelplz and 84 guests