Results 1 to 3 of 3

Thread: Need a script [Should be easy]

  1. #1
    Join Date
    Jul 2008
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Need a script [Should be easy]

    This is for Habbo Hotel (A game based on Shockwave)

    All I need is a script that lets me pick a couple of colours, so then wehn those colours appear in the game window it will automatically click on it (or a couple of pixels below it)

    This is for a game on Habbo called Fallin Furni. Habbo players should know what I mean.

  2. #2
    Join Date
    Jul 2008
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    OK.....

    I'm really not sure if this is going to work or not - I've never played Fallin Furni before (or Habbo Hotel), and I made this script in around 5 minutes....

    I assume the Flash Games don't have anything like antiban, so I've just used ClickMouse.
    I haven't tested it - please tell me whether it worked or not. It compiles fine.

    Just fill in the color's in the constants. To stop the script, press [ and ] at the same time.

    SCAR Code:
    program FallinFurni;

    const
      color1 = 20938;
      color2 = 1809357;
     
    var
      x, y, w, h: integer;

    procedure ClickJustBelow;
    begin
      ClickMouse(x, y + 25, True);
      Wait(500);
    end;

    begin
      GetClientDimensions(w, h);
      repeat
        if ((FindColorTolerance(x, y, color1, 0, 0, w, h, 10)) or (FindColorTolerance(x, y, color2, 0, 0, w, h, 10))) then
          ClickJustBelow;
      until not(IsKeyDown('[') and IsKeyDown(']'));
    end.

  3. #3
    Join Date
    Feb 2006
    Location
    With mooncow on the moon
    Posts
    292
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Dascooby View Post
    This is for Habbo Hotel (A game based on Shockwave)

    All I need is a script that lets me pick a couple of colours, so then wehn those colours appear in the game window it will automatically click on it (or a couple of pixels below it)

    This is for a game on Habbo called Fallin Furni. Habbo players should know what I mean.

    For your first post to request something, in the wrong section is not a good first impression. You could have spent five minutes and taught yourself this. Or even spent less then one mintue and aleast look for the correct section.

    The code the guy above me is fine and will do what you wanted it to do. be gratefull.
    ~ Solemn Wishes

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Making a easy script!
    By Nortun in forum OSR Help
    Replies: 12
    Last Post: 01-11-2009, 11:10 PM
  2. Which is easy for my first script
    By brent8900 in forum News and General
    Replies: 10
    Last Post: 08-04-2008, 04:16 AM
  3. Very Easy(?) script
    By igotgrapes in forum RS3 Outdated / Broken Scripts
    Replies: 7
    Last Post: 04-08-2008, 04:27 PM
  4. Help with easy script, simple for most
    By 503075000868 in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 07-15-2007, 03:48 PM
  5. Easy Script
    By marsh in forum RS3 Outdated / Broken Scripts
    Replies: 12
    Last Post: 04-09-2007, 03:26 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
  •