Results 1 to 9 of 9

Thread: Script for GuildWars Timing Problem?

  1. #1
    Join Date
    Mar 2007
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Script for GuildWars Timing Problem?

    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.

  2. #2
    Join Date
    Dec 2006
    Posts
    130
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Maybe yous should increase the time between the echo and dust trap because of the casting time? Anyway, your script is fine, just try it in notepad and it works exactly like it is supposed to.

  3. #3
    Join Date
    Oct 2007
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmm lets see I thought this was the SRL for RUNESCAPE...
    But the answer, is make a longer wait, that spell takes longer to cast.


    I play GW too.

  4. #4
    Join Date
    Mar 2007
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    the Arcane echo'd dust trap i've tried to increase delay up to 4 seconds even and for me it seems to just skip over :S
    you say it worked, as in went all the way through the script? The first 8 skills pressed work fine. its after that the problem hits.
    I just tried in notepad and it works exactly like it is supposed to
    In Notepad 0_O?

    Thanks much guys,
    ~Sollek

  5. #5
    Join Date
    Jul 2007
    Location
    Ottawa, Canada
    Posts
    930
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    put some wait time between keydown and keyup maybe. it might not be giving the computer enough time to execute them both in a row.
    ~ Metagen

  6. #6
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah and then it freezes^^ and make writeln('')'s

  7. #7
    Join Date
    Mar 2007
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    guildwars script , sounds cool cant wait to see it in action.

  8. #8
    Join Date
    Mar 2007
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by metagen View Post
    put some wait time between keydown and keyup maybe. it might not be giving the computer enough time to execute them both in a row.
    It seems to be executing all the other 2 second cast times up untill that one then it just mucks up from there.
    it cast's Qz/Ew/Sq/Arcane Eco/Echo/Dust/Echo'd Dust then halts and skips over to barbed. not sure what the change would be 2.1 sec delay there

  9. #9
    Join Date
    Dec 2006
    Posts
    130
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by sollek View Post
    the Arcane echo'd dust trap i've tried to increase delay up to 4 seconds even and for me it seems to just skip over :S
    you say it worked, as in went all the way through the script? The first 8 skills pressed work fine. its after that the problem hits.

    In Notepad 0_O?

    Thanks much guys,
    ~Sollek
    Yeah, add a wait at the beginning of the script temporarily so you can click your cursor over to notepad and watch it type all the numbers. One thing could be that GuildWars is much more resource hogging than notepad is so like they said, if you add some waits that may work.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Timing?
    By marpis in forum OSR Help
    Replies: 7
    Last Post: 11-06-2008, 05:56 PM
  2. GuildWars A/Me ShadowForm Script-Help Req.
    By sollek in forum OSR Help
    Replies: 8
    Last Post: 05-10-2008, 12:30 AM
  3. Having Problem with login(timing)
    By jnwms in forum OSR Help
    Replies: 3
    Last Post: 08-13-2007, 09:19 AM
  4. Need a Simple Timing Script
    By run3500 in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 05-12-2007, 01:47 AM
  5. guildwars Character
    By thanatos920 in forum News and General
    Replies: 4
    Last Post: 01-16-2007, 02:05 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •