Ok Here's the Problem im trying to write a script for Guild wars based on This build:
http://gw.gamependium.com/tools/builds/show/1410
Clock is Casting Time for Skill
Clockwise Arrow is Recharge Time for Skill
I'm having a problem with timing i believe but im not sure. if your familiar with Guild wars then this should be a breeze but im SOL been working at it for 3 days and not sure what to do
Skills Need to Be Used In This Order:
7-8-6-1-2-3-1-2-1-4-3-2-1-4-5-3-4-5-2-3-2-4
Problem i'm having is
7-8-6-1-2-3-1-2-breaks down here
Code:program New; {.include KDKUI.scar} begin KeyDown(55); //7 Energizing Wind KeyUp(55); Wait(5100); KeyDown(56); //8 Quickening Zephyr KeyUp(56); Wait(4800); KeyDown(54); //6 Serpent's Quickness KeyUp(54); Wait(300); KeyDown(49); //1 Arcane Echo KeyUp(49); Wait(2100); KeyDown(50); //2 Echo KeyUp(50); Wait(2100); KeyDown(51); //3 Dust Trap KeyUp(51); Wait(2100); KeyDown(49); //1 Arcane Echo'd Dust Trap KeyUp(49); Wait(2100); KeyDown(50); //2 Echo'd Dust Trap KeyUp(50); //Problem Lies Either Here Wait(2100); Or Here KeyDown(49); //1 Arcane Echo'd Dust Trap //This Wont Cast Then It Skips To Skill Four KeyUp(49); Wait(2100); KeyDown(52); //4 Barbed Trap KeyUp(52); Wait(2100); KeyDown(51); //3 Dust Trap KeyUp(51); Wait(2100); KeyDown(50); //2 Echo'd Dust Trap KeyUp(50); Wait(2100); KeyDown(49); //1 Arcane Echo'd Dust Trap KeyUp(49); Wait(2100); KeyDown(52); //4 Barbed Trap KeyUp(52); Wait(2100); KeyDown(53); //5 Trip Wire KeyUp(53); Wait(2100); KeyDown(51); //3 Dust Trap KeyUp(51); Wait(2100); KeyDown(52); //4 Barbed Trap KeyUp(52); Wait(2100); KeyDown(53); //5 Trip Wire KeyUp(53); Wait(2100); KeyDown(50); //2 Echo'd Dust Trap KeyUp(50); Wait(2100); KeyDown(51); //3 Dust Trap KeyUp(51); Wait(2100); KeyDown(50); //2 Echo'd Dust Trap KeyUp(50); Wait(2100); KeyDown(52); //4 Barbed Trap KeyUp(52); end.



Reply With Quote




