This is another one of my scripts for Neopets; a Tug 'O' War script.
If you modify the waits time correctly to suit your computer, you can get max points every time.
If you modify it incorrectly, the chances that you'll lag, or just lose, are pretty high.
Start the script just before the first match starts, and you can stop it when the rest are done.
Script (Tug 'O' War):
[scar]program TugOfWar;
//By R1ch4, of GzP, and SRL, Mopar and now Freddy.
const
TTW = 0; //Add some TTW (Time To Wait) in MS if the script makes you lag.
//1000MS = 1 second.
begin
repeat;
Sendkeys('A');
Wait(TTW);
until(false);
end.[/scar]
Enjoy!