Code:
//Line Interval time is 100 (UoPilot)
//Infinite loop
repeat -1
:Begin
//Always bring the aika to the front (It will click on the center of the mini map (place your mini map at the right top (default position))
move 1828, 97
kleft 1828, 97
//************** Lobby **********************
//If user is in Battle Field Lobby (Check the color and Coordinates of B (Upper part),i (point) and Y (lower part) of Battlefield Lobby text
if 883, 282 12507614 and 945, 283 12507614 and 1028, 296 12507614
//Loop until we get inside the waiting room
while_not 941, 321 12449791 and 975, 319 10011337 //If user is in waiting room, check the color of V (left Top) and S (VS at the top) and coordinate
//Always bring the aika to the front (It will click on the center of the mini map)
move 1828, 97
kleft 1828, 97
//**
move 625, 747 //Move mouse to the coordinate (not necessary but good practice)
left 625, 747 //Click on Refresh to make sure rooms are updated
//Now lets check 3 rooms and which ever room has 10+ members on both side, get inside that room
if 936, 369 16777215 and 1143, 367 16777215 //Check the color and coordinates of [ ([23/24] Dawn ) and of ] ([23/24] Dusk)
move 936, 369 //Move mouse to the coordinate (not necessary but good practice)
left 936,369 //Select the room
left 727, 744
end_if
//Second Room
if 936, 403 16777215 and 1143, 403 16777215 //Check the color and coordinates of [ ([23/24] Dawn ) and of ] ([23/24] Dusk)
move 936,403 //Move mouse to the coordinate (not necessary but good practice)
left 936,403 //Select the room
left 727, 744
end_if
//Third Room
if 936, 440 16777215 and 1143, 440 16777215 //Check the color and coordinates of [ ([23/24] Dawn ) and of ] ([23/24] Dusk)
move 783,373 //Move mouse to the coordinate (not necessary but good practice)
left 783, 373 //Select the room
left 727, 744
end_if
end_while
end_if
//************** Waiting Room **********************
//If user is in waiting room, check the color of V (left Top) and S (VS at the top) and coordinate
if 941, 321 12449791 and 975, 319 10011337
//Always bring the aika to the front (It will click on the center of the mini map)
move 1828, 97
kleft 1828, 97
//**
move 1290, 667
left 1290, 667 //Left click on ready (Coordinate of Ready)
//This is just to check if the char is inside the battle field or not
set #time 0 //Set the value 0 to var variable
//Loop until it found the color of D From Dawn and D from Dusk text (above Heart sign) inside the battle field
while_not 851, 8 16755370 and 1033, 9 8947967
//Lets create a timer to check if we are still in the waiting room (if new room, game did not start then we have to get out from the room)
set #time #time + 1 //Add 1 to time every 1 seconds
if #time = 300 //If wait is 5 mins then we leave the room
move 1290, 667
left 1290, 667 //Left click on ready (to Unready)
move 1293, 758
left 1293, 758 //Left click on Leave
goto Begin //Leave the loop so it can go back to Lobby
end_if
wait 100//Each line is 300 wait so 300X3 lines of code = 900 +100 ms wait=1 seconds
end_while
end_if
end_repeat
If you have any question, please let me know.