Results 1 to 2 of 2

Thread: Detectable Function.

  1. #1
    Join Date
    Dec 2006
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Detectable Function.

    Is the PressKey() procedure detectable by Jagex? I am thinking of making a bot which simple presses space then backspace?

    This is to keep me logged in at bandits btw, I only recently heard that typing now keeps you logged in -.-" silly me.

    Edit: Grammar

  2. #2
    Join Date
    Jan 2010
    Posts
    1,414
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Simba Code:
    procedure AccidentalSpacebar;
    begin
      if (not(LoggedIn)) then
        Exit;
      FindNonInventoryRandoms;

      TypeSendEx(' ', False);
      Wait(RandomRange(500, 1500));
      KeyDown(8);
      Wait(RandomRange(45, 115));
      KeyUp(8);
    end;

    Try that. Adjust the waits and such according to what you desire.
    Simba Code:
    (* Main *)

    repeat
      WriteLn('I am an idiot!');
    until(False);

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
  •