Results 1 to 12 of 12

Thread: Taking Function Requests

  1. #1
    Join Date
    Aug 2007
    Posts
    429
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Taking Function Requests

    Post 'em.

  2. #2
    Join Date
    Aug 2007
    Posts
    429
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Any?

  3. #3
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    function that gets the time
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  4. #4
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    GetSystemTime?
    Interested in C# and Electrical Engineering? This might interest you.

  5. #5
    Join Date
    Aug 2007
    Posts
    429
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Lol... =]

  6. #6
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    oh oops

    make a procedure that turns a sentence(like script title) into the big letters made of /.' and stuff

    or a procedure that can let u change ur focus then change tabs then re focus

    or a function that can tell if rs is opened

    or a function that can tell u what part of the image on the minimap is visible on the mainscreen(then u can look for things on minimap and canclick around until ur sure its on mainscreen before trying to click it
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  7. #7
    Join Date
    Aug 2007
    Posts
    429
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by dan cardin View Post
    oh oops

    make a procedure that turns a sentence(like script title) into the big letters made of /.' and stuff

    or a procedure that can let u change ur focus then change tabs then re focus

    or a function that can tell if rs is opened

    or a function that can tell u what part of the image on the minimap is visible on the mainscreen(then u can look for things on minimap and canclick around until ur sure its on mainscreen before trying to click it
    #1. Lol would be extretely hard if not like impossible lol
    #2. I'm a little confused on?
    #3. You can just do 'if FindWindowTitlePart('Runescape', False) then'
    #4. I'll defiantly keep in mind. Would be pretty hard as you would need to use a user defined bitmap for minimap search

  8. #8
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    1. not impossible just annoying
    2. changes the focus from what it is to the whole screen then clicks a different tab then refocuses it to the first focus
    3.lol i dont keep up on those type of functions
    4. hard but really cool
    5. when whole screen is selected, converts coords to rs coords (mm,ms,inv,chat)
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  9. #9
    Join Date
    Aug 2007
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you can't make the thing with the mini map, may I try?

  10. #10
    Join Date
    Aug 2007
    Posts
    429
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Why not I think I'm gonna try a different one first

    but I'm definitely gonna try that one =]


    @Dan - is this what you were looking for for the tab one?

    SCAR Code:
    {========================================================================
    Procedure ChangeTab(BrowserType: string; TabNum :integer); //by Derek-

    DESCRIPTION:
      Changes the tab in your internet browser and refocuses onto the your
         previous client window handle.
             BROWSER TYPES: 'FF'=FireFox     'IE'=Internet Explorer
             TabNum: Which tab. 1=Tab 1, 2=Tab 2, or 3=Tab 3
      (Assuming you are only using the toolbar 'Navigation Toolbar' in FireFox
            and 'Menu Bar' in Internet Explorer)
    EXAMPLE:
       ChangeTab('IE', 2);
    ========================================================================}


    Procedure ChangeTab(BrowserType: string; TabNum :integer);
    var
      TabFx, TabFy, TabEx, TabEy, Previous: Integer;
    begin
      Previous := GetClientWindowHandle;
      case TabNum of
        1 : begin
              TabFx := 105;
              TabFy := 108;
              TabEx := 180;
              TabEy := 115;
            end;
        2 : begin
              TabFx := 350;
              TabFy := 108;
              TabEx := 370;
              TabEy := 115;
            end;
        3 : begin
              TabFx := 695;
              TabFy := 108;
              TabEx := 560;
              TabEy := 115;
            end;
      end;
      case BrowserType of
        'FF' : begin
                 FindWindowTitlePart('Fire', False);
                 Mouse(TabFx, TabFy, 0, 0, True);
               end;
        'IE' : begin
                 FindWindowTitlePart('Net ex', False);
                 Mouse(TabEx, TabEy, 0, 0, True);
               end;
      end;
      Wait(100);
      SetClientWindowHandle(Previous);
    end;

  11. #11
    Join Date
    Jul 2007
    Location
    UK
    Posts
    175
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i dunno if this would be possible at all but ill post it anyway

    something that checks the overall combat level of each charecter and if its below 10 combat level the script terminates and dont run. This will stop level 3's and you could "blend" it in the script meaning dont call it StopNoobs name it something they wont see/recognise so they cannot delete it out the script.

    and also something that checks they are wearing at least 1 piece of armour and a weapon this will stop the noobs that auto with no clothes on or armour or weapon.

    maybe a dumb idea prob not possible but still thought id post it

  12. #12
    Join Date
    Aug 2007
    Posts
    429
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by inkd View Post
    i dunno if this would be possible at all but ill post it anyway

    something that checks the overall combat level of each charecter and if its below 10 combat level the script terminates and dont run. This will stop level 3's and you could "blend" it in the script meaning dont call it StopNoobs name it something they wont see/recognise so they cannot delete it out the script.

    and also something that checks they are wearing at least 1 piece of armour and a weapon this will stop the noobs that auto with no clothes on or armour or weapon.

    maybe a dumb idea prob not possible but still thought id post it
    Yes these are very possible and lots of people use them. I will make some and post them for you.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Taking Function Requests
    By skilld u in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 02-18-2008, 09:13 PM
  2. TAKING REQUESTS! I need a new idea for a script! TAKING REQUESTS!
    By TravisV10 in forum RS3 Outdated / Broken Scripts
    Replies: 38
    Last Post: 10-31-2007, 02:46 AM
  3. Taking function requests.
    By Bobarkinator in forum RS3 Outdated / Broken Scripts
    Replies: 28
    Last Post: 09-08-2007, 03:45 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •