Results 1 to 4 of 4

Thread: How SAFE are these commands?

  1. #1
    Join Date
    Jan 2009
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default How SAFE are these commands?

    Below are the commands i intend on using. I am not sure how SAFE they r to use for RUNESCAPE...whether they r totally undetectable or not i need to know. Alternates r also welcome. Thanks.

    disguise()
    mouseitem()
    perfectmousemove()
    chooseoption()
    mcbox()


    also i want to make it so that When i press F4 a certain PROCEDURE will trigger. How do i do that? Thanks.

  2. #2
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    those are all fine..

    but instead of perfectmousemove, use MMouse..

    andd for the F4 thing,

    Procedure New;
    begin
    IfFKeyDown(4) then
    end else
    begin
    //blah
    end;
    end;

    that should work..

    (I think the fkeydown thing is he wrong command but you can search for it in the srl manual)

  3. #3
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    It would be
    SCAR Code:
    if IsFKeyDown(4) then
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

  4. #4
    Join Date
    Jan 2009
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    managed to make use of if ISFKEYDOWN and also thanks a lot for the quick reply.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Need some help with commands
    By godspower55 in forum OSR Help
    Replies: 3
    Last Post: 10-16-2008, 12:29 AM
  2. Use SCAR commands from DLL
    By ShawnjohnSJ in forum Delphi/FPC Help and Tutorials
    Replies: 2
    Last Post: 07-25-2008, 04:09 AM
  3. All SRL commands
    By Gala in forum OSR Help
    Replies: 5
    Last Post: 10-10-2007, 01:37 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
  •