Results 1 to 9 of 9

Thread: W.A.F. thing is happening in one of my scripts?

  1. #1
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default W.A.F. thing is happening in one of my scripts?

    Okay this is Wierd As F*** and its happening in one of my scripts.

    The developer console of runescape keeps opening up, anyone know what this is, go into a runescape client and type ` that key, its the key above the tab button. That keeps on popping up for me and in the text chat for runescape this keeps getting typed

    Anyone help?

  2. #2
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    its this key -

    ` (~)

  3. #3
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ya, it aint anywhere in my script though! :/ sin you ever seen this, its when it looks through the ATPA's for all the NPC'sand if it right clicks but the correct choose option isnt there then it does that! :P

  4. #4
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    One of the SRL antiban procedures holds a random key sometimes (BoredHuman or RandomMovement I believe) and that might be opening your developers console.

  5. #5
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    my antiban procedure
    Simba Code:
    procedure AntiB;
    begin
      case random(5) of
        0 : begin
            RandomRClick;
            end;
        1 : begin
            HoverSkill('range',false);
            end;
        2 : begin
            HoverSkill('hp',false);
            end;
        3 :Wait(500 + Random(250));

        4 :Wait(2300);
      end;
    Wait(randomrange(1500,2000));
    end;

  6. #6
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    Wow then this is really weird.

    Press Ctrl+F and search if ~ or ` is in your script.

  7. #7
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Already tried that! :P

    Simba Code:
    Procedure RandomThing;
    Begin
       MakeCompass(RandomRange(0,360));
       SetAngle(RandomRange(60,90));
    end;
    Thats the only other thing i could think of! :P


    Edit: And nebula, i loved your use of tracking the npc's using sps in the sorc gard script never thought that was possible before untill i looked through and say it in yours!
    Last edited by laakerules; 03-02-2012 at 09:24 PM.

  8. #8
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    Thanks

    I'm pretty sure your issue is with SetAngle. I thought the angle could only be set to highest/lowest, with 1 being lowest and 0 being highest. Your number not being 1 or 2 might be the issue.

    Simba Code:
    (*
    SetAngle
    ~~~~~~~~

    .. code-block:: pascal

        procedure SetAngle(Angle: Integer);

    Sets the mainscreen at highest\lowest angle, dependant on constant passed. <------------

    .. note::

        by Raymond, edit by NaumanAkhlaQ

    Example:

    .. code-block:: pascal

        // make the camera the highest!
        SetAngle(True);

    *)

  9. #9
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ahhh thanks, i thought they would have it in degrees from 0 bieng flat and 90 bieng straigth up just like an arc on a 1 circle! :P

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
  •