Results 1 to 12 of 12

Thread: need very good scripter help for hunt

  1. #1
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default need very good scripter help for hunt

    i need help for my falconry script. the 'frame' of the script is done but i need help to improve it ( mostly failsafes but also a bit of TPA help) so if u interested in helping me, ill send u the script so u can suggest stuff to improve it.

    thanks alot

  2. #2
    Join Date
    Dec 2011
    Location
    -bash
    Posts
    515
    Mentioned
    0 Post(s)
    Quoted
    27 Post(s)

    Default

    Send to me, I can look over it. Falconry isn't that complicated; I did it when I was training hunter so I know a thing or 2 of what a good bot should contain.

  3. #3
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    any1 else?

  4. #4
    Join Date
    Nov 2011
    Posts
    1,532
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Chig View Post
    Send to me, I can look over it. Falconry isn't that complicated; I did it when I was training hunter so I know a thing or 2 of what a good bot should contain.
    Those kebbits move fast. It is a nightmare to trace them like a human does with a FindObject like object-finder.
    Current activity: Recovering from vacation
    - Nulla pars vitae vacare officio potest -
    SRL membership? Can I buy that?
    Scripts - AGS - SWF - WAR - EMS - W100S-EM
    If you need scripting help, you can pm me. Remember, if you need help you have to ask for it properly though

  5. #5
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Couldn't you use MMToMS to track them?
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  6. #6
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    what is MMtoMS?

  7. #7
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    ive tried to search it with poor results....eny1 knows a tutorial or somewhere where it says what MMtoMS is and how to use it?

  8. #8
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    i found a bit about MMtoMS (MiniMap to Main Screen i presume) but i still dont understand how tyo use it to track kebbits. ne1 knows aguide or tutorial that could teach me about MMtoMS?

  9. #9
    Join Date
    Nov 2011
    Posts
    1,532
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It is possible but still MMToMS has inaccuracies with the MS box area for searching. Back then I tried ATPA, but mouse isn't as fast as the kebbit and the tracing is often off the track because kebbits move too much.
    Current activity: Recovering from vacation
    - Nulla pars vitae vacare officio potest -
    SRL membership? Can I buy that?
    Scripts - AGS - SWF - WAR - EMS - W100S-EM
    If you need scripting help, you can pm me. Remember, if you need help you have to ask for it properly though

  10. #10
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default

    Quote Originally Posted by ogustuce View Post
    i found a bit about MMtoMS (MiniMap to Main Screen i presume) but i still dont understand how tyo use it to track kebbits. ne1 knows aguide or tutorial that could teach me about MMtoMS?
    http://villavu.com/forum/showthread.php?t=71412
    http://villavu.com/forum/showthread.php?t=72985
    http://villavu.com/forum/showthread.php?t=55095



    I haven't really used it much myself, but MMtoMs should convert a NPC dot from the minimap to a tile on your screen. You can use it to track the kebbits and it will then click on the mainscreen tile that matches the NPC dot on the minimap.

    Script source code available here: Github

  11. #11
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    ok but howcan i make something like (and using the above functions)

    Simba Code:
    var
     MyTPA : TPointArray;
      MyPoint : TPoint;
       x, y, i : Integer;  
     p := GetMiniMapDots(WhatDot);  
    If (whatDot = 'npc', 'n', 'yellow', 'y': Col := clYellow) then
    begin
    getIntToBox(x1,y1,x2,y2)  //get dimenson of the yellow square
     begin
    (idk what to write to make it searche the yellow square only)  //searches the yellow square
       FindColorsTolerance(MyTPA, 4414308, MSx1, MSy1, MSx2, MSy2, 5);
       if Length(MyTPA) = 0 then
       FindColorsTolerance(MyTPA, 4414308, MSX1, MSY1, MSX2, MSY2, 5);
       for i := 0 to High(MyTPA)do
       begin
       MyPoint := MyTPA[i]
       MMouse (MyPoint.x, MyPoint.y, 3, 3);
       if (IsUpTextMultiCustom(['potted', 'tted kebbit'])) then
       begin
       GetMousePos(x, y);
        Mouse(x, y, 0, 0, False);
        ChooseOption('atch');
        Wait(2000+random(250));  
    emd;
    end;
    end;
    end;

  12. #12
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    seems like ppl with the skills wont bother =(

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
  •