Results 1 to 4 of 4

Thread: mousepspeed

  1. #1
    Join Date
    Aug 2008
    Location
    !!LOL!!
    Posts
    247
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    mousepspeed

    When i set a certain mousespeed for a function or procedure will the mousespeed remain the same for the rest of script??

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

    Default

    yes.

  3. #3
    Join Date
    Dec 2007
    Location
    192.168.1.73
    Posts
    2,439
    Mentioned
    6 Post(s)
    Quoted
    119 Post(s)

    Default

    If you want to set a mousespeed temporarily different, you can do something like this:

    SCAR Code:
    Procedure DoStuff;
    Var
    MSpeed:integer;
    Begin
      MSpeed := MouseSpeed;
      MouseSpeed := {something different to what it was above}
      {rest of the the procedure crap here}
      MouseSpeed := MSpeed
    end;

    Just changes the speed for that procedure, then resets it. I use this for when I do TPA finding, it means that it can find the object you are looking for quicker, but doesn't keep it fast for the whole script, so theres less chance of ban.

    This can also be looked at like a sort of AntiBan.

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

    Default

    told him on MSN

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
  •