(Copied from script):
This script completes levels: 1, 2, 3, 5, 7, 8, 9, 11, 12 and 14 of Wingoball,
on Neopets. Sometimes, on the levels where objects move, you may lose, but just
play the script again, and you will eventually win that level.
To tell the script which level you want completed, scroll down to the bottom of
the script, and where it says: begin
Level1;
end.
change the 1 at the end of 'Level' to which level you are on.
Before you start the script, drag the crosshair to the Wingoball game window,
then you can start it.
Script (Wingoball):
[scar]program Wingoball;
{By R1ch4 of SRL, GzP, Mopar and now Freddy.
This script completes levels: 1, 2, 3, 5, 7, 8, 9, 11, 12 and 14 of Wingoball,
on Neopets. Sometimes, on the levels where objects move, you may lose, but just
play the script again, and you will eventually win that level.
To tell the script which level you want completed, scroll down to the bottom of
the script, and where it says: begin
Level1;
end.
change the 1 at the end of 'Level' to which level you are on.
Before you start the script, drag the crosshair to the Wingoball game window,
then you can start it.}
procedure Level1;
begin
ClickMouse(463, 214,True);
end;
procedure Level2;
begin
ClickMouse(226,109,True);
end;
procedure Level3;
begin
ClickMouse(294,191,True);
end;
procedure Level5;
begin
ClickMouse(252,170,True);
end;
procedure Level6;
begin
ClickMouse(309,240,True);
end;
procedure Level7;
begin
ClickMouse(264,336,True);
end;
procedure Level9;
begin
ClickMouse(327,50,True);
end;
procedure Level11;
begin
ClickMouse(141,366,True);
end;
procedure Level12;
begin
ClickMouse(246,43,True);
end;
procedure Level14;
begin
ClickMouse(269,129,True);
end;
begin
Level1; //Change this to the level that you are on.
//Only if that level is included in this script.
//If you are not sure, read line 5.
end.[/scar]
Enjoy!