Results 1 to 8 of 8

Thread: Runescape or Scar freezing?

  1. #1
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Runescape or Scar freezing?

    Testing out my LRK. It sets everything beautifully but when its done setting up the attack choice and run. It freezes. When i click on the minimized scar, everything goes back to normal but when it clicks back on runescape it freezes. My scar and everything is up to date(thanks to coh3n). Whats the problem? Scar or Runescape?

    Edit: The function after that is finding the mouse and clicking it.

  2. #2
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Using Smart?

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  3. #3
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    No. Nor reflection.

  4. #4
    Join Date
    Jan 2008
    Location
    C:\
    Posts
    1,483
    Mentioned
    2 Post(s)
    Quoted
    2 Post(s)

    Default

    Do you have a faulty loop in your script or something?

    Otherwise it would have to have something to do with your java/computer...

  5. #5
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Heres my main loop if it makes a difference.

    SCAR Code:
    var
      Kill : Integer;

    begin
      SetupSRL;
      DeclarePlayers;
      ClearDebug;
      ActivateClient;
      repeat
        Kill := 0;
        if not LoggedIn then
          LoginPlayer;
        SetRun(True)
        MakeCompass('w');
        SetAngle(True);
        SetSkiller;
        Retaliate(True);
        repeat
          FindNormalRandoms;
          MakeCompass('w');
          FindMouse;
          EatWhatChooser;
          FindDead;
        until(Kill >= Players[CurrentPlayer].Integers[0])
        LogOut;
        nextplayer(false);
        proggy;
      until(AllPlayersInactive);
      proggy;
      Disguise('Successful');
    end.

  6. #6
    Join Date
    Jan 2008
    Location
    C:\
    Posts
    1,483
    Mentioned
    2 Post(s)
    Quoted
    2 Post(s)

    Default

    if you say it is setting up then freezing, it is possible that the problem is occuring is this loop:

    SCAR Code:
    repeat
          FindNormalRandoms;
          MakeCompass('w');
          FindMouse;
          EatWhatChooser;
          FindDead;
        until(Kill >= Players[CurrentPlayer].Integers[0])

    re-check those procedures, see if there are any never-ending loops or anything that it could get stuck in.

  7. #7
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'll check, see if i can find anything.

  8. #8
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ah guys i found the solution. It was in my findmouse procedure. Dam tpas...

Thread Information

Users Browsing this Thread

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

Posting Permissions

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