Page 37 of 49 FirstFirst ... 27353637383947 ... LastLast
Results 901 to 925 of 1219

Thread: AshamanBonfire

  1. #901
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

  2. #902
    Join Date
    May 2013
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Working Great with a few tolerance changes, Thanks Shaman!

  3. #903
    Join Date
    Jun 2012
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    mardation did you change anything to make it work with the new colors?

  4. #904
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    May sound like a dumb question, but the Shanty pass is members-only, correct?

  5. #905
    Join Date
    Jun 2012
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    It is members only to use the chest but you can go to the Shanty pass as a free member but you can't do anything there.

  6. #906
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by yvan49 View Post
    It is members only to use the chest but you can go to the Shanty pass as a free member but you can't do anything there.
    Well in that case, @Ashaman88; you should make a F2P version just for me.

  7. #907
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by Coh3n View Post
    Well in that case, @Ashaman88; you should make a F2P version just for me.
    haha I will one day... once I fix up all my scripts, add more stuff to the include, etc. etc....

  8. #908
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    haha I will one day... once I fix up all my scripts, add more stuff to the include, etc. etc....
    Pfft, my needs are much more important.

    Seriously though, would it be difficult to modify this script for F2P?

  9. #909
    Join Date
    Mar 2013
    Location
    Shaolin
    Posts
    863
    Mentioned
    24 Post(s)
    Quoted
    519 Post(s)

    Default

    Find this function in your ashabonfire and replace it. It was like line 569 or something. I literally wrote this func in 30 seconds. I kept getting debug errors of SHANTAYEXIT so I just replaced it and its working well for me. I'm running the old ashabonfire though so it might be different in the newest version with rafiki and stuff. Good luck boys

    Simba Code:
    Function OpenShantayBank: Boolean;
    var
      i, s, h: Integer;
      TPA: TPointArray;
      ATPA: T2DPointArray;
      t: TTimeMarker;
      p: Tpoint;
    begin
            //mouse(p, MOUSE_LEFT);
            FindColorsTolerance(TPA, 6917057,MainScreen.GetBounds, 2, ColorSetting(2, 0.12, 1.11));
            //FindColorsTolerance(TPA, 7449049,inttobox(65,267,520,333), 4, ColorSetting(2, 0.3, 0.3));
            if (Length(TPA) < 1) then
            begin
              Writeln('nope');
              Exit;
            end;

        ATPA := TPA.ToATPA(20, 20);
        SortATPAFromMidPoint(ATPA, Point(randomRange(mainscreen.playerpoint.x - 100, mainscreen.playerpoint.x + 100), mainscreen.playerpoint.y));

        h := High(ATPA);

        for i := 0 to h do
          begin
            if (Length(ATPA[i]) < 50) then
              Continue;

            Mouse(ATPA[i][random(High(ATPA[i]))], MOUSE_MOVE, MOUSE_HUMAN);
            if IsMouseOverText(['pen', 'antay', 'ank'], 500) then
              begin
                fastclick(mouse_right);
                  Wait(500+Random(100));
                chooseOption.select(['pen']);
                  Exit();
              end;
          end;
          If PinScreen.IsOpen Then
        PinScreen.Enter(Players[CurrentPlayer].BankPin);
      end;
    It's sloppy, I get it
    You have permission to steal anything I've ever made...

  10. #910
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by Coh3n View Post
    Pfft, my needs are much more important.

    Seriously though, would it be difficult to modify this script for F2P?
    FYI everyone I pushed out an update to fix the shantay bank for the include and made a quick update for the script. Spirit finding may be a little fritzy until I update it b/c of stupid avatars.


    An Coh3n it's hard to say... I mean the hardest part will be to make it go outside of a bank or w/e to light the fire... or if there is a f2p place that always has fires that could work too. But other than that the script just using the open bank... and clicks add to nearest bonfire button... lights a fire if it can't find bonfire after 3 tries or so, etc etc

  11. #911
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    An Coh3n it's hard to say... I mean the hardest part will be to make it go outside of a bank or w/e to light the fire... or if there is a f2p place that always has fires that could work too. But other than that the script just using the open bank... and clicks add to nearest bonfire button... lights a fire if it can't find bonfire after 3 tries or so, etc etc
    Yeah I was looking into it a little, but I didn't find much in the sense of a F2P area for bonfires. Fires can be made anywhere in the GE, but I'm unaware of a world that constantly has fires going. E: I think they can be made outside the Lumbridge castle bank as well (only a few tiles away).

  12. #912
    Join Date
    Jan 2012
    Posts
    1,596
    Mentioned
    78 Post(s)
    Quoted
    826 Post(s)

    Default

    Quote Originally Posted by Wu-Tang Clan View Post
    Find this function in your ashabonfire and replace it. It was like line 569 or something. I literally wrote this func in 30 seconds. I kept getting debug errors of SHANTAYEXIT so I just replaced it and its working well for me. I'm running the old ashabonfire though so it might be different in the newest version with rafiki and stuff. Good luck boys

    Simba Code:
    code
    It's sloppy, I get it

    you could have just updated shanty colors in bankscreen.simba... takes like 2 min to do manually. should be fixed now with the latest commit...
    Quote Originally Posted by github8
    [SRL-6] ashaman88 pushed 1 new commit to 6master: http://git.io/hUsfMA
    SRL-6/6master af90204 ashaman88: update various banks for graphics updates

  13. #913
    Join Date
    Mar 2013
    Location
    Shaolin
    Posts
    863
    Mentioned
    24 Post(s)
    Quoted
    519 Post(s)

    Default

    Quote Originally Posted by Turpinator View Post
    you could have just updated shanty colors in bankscreen.simba... takes like 2 min to do manually. should be fixed now with the latest commit...
    Hadn't tried update... sillyme
    You have permission to steal anything I've ever made...

  14. #914
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by Wu-Tang Clan View Post
    Hadn't tried update... sillyme
    Well I just pushed it last night

  15. #915
    Join Date
    Jul 2013
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    44 Post(s)

    Default

    is this script working
    NightLeaf Presents: A Working RS3 Script
    (RS3) - NiteLeaf's Supreme Chopper - (Bonfire Support!)

  16. #916
    Join Date
    Jul 2013
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    44 Post(s)

    Default

    Exception in Script: File "srl-6/lib/misc/srlplayerform.simba" not found at line 59, column 7
    NightLeaf Presents: A Working RS3 Script
    (RS3) - NiteLeaf's Supreme Chopper - (Bonfire Support!)

  17. #917
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

  18. #918
    Join Date
    Jul 2013
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    44 Post(s)

    Default

    it still no work
    NightLeaf Presents: A Working RS3 Script
    (RS3) - NiteLeaf's Supreme Chopper - (Bonfire Support!)

  19. #919
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by NiteLeaf View Post
    it still no work
    It's telling you your srl is outdated. Playerform file was added a month ago. Force your srl update then

  20. #920
    Join Date
    Jul 2013
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    44 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    It's telling you your srl is outdated. Playerform file was added a month ago. Force your srl update then
    ok now it doesnt log in
    NightLeaf Presents: A Working RS3 Script
    (RS3) - NiteLeaf's Supreme Chopper - (Bonfire Support!)

  21. #921
    Join Date
    Jan 2012
    Posts
    550
    Mentioned
    2 Post(s)
    Quoted
    177 Post(s)

    Default

    Quote Originally Posted by NiteLeaf View Post
    ok now it doesnt log in
    Make sure that your graphics are all set up properly

  22. #922
    Join Date
    Jul 2013
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    44 Post(s)

    Default

    Quote Originally Posted by Thanatos View Post
    Make sure that your graphics are all set up properly
    they are
    NightLeaf Presents: A Working RS3 Script
    (RS3) - NiteLeaf's Supreme Chopper - (Bonfire Support!)

  23. #923
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by NiteLeaf View Post
    they are
    Make sure you follow the setting up simba and srl guides again. If it's not logging you in you either setup the player form incorrectly or have the wrong graphics settings. What does your debug say?

  24. #924
    Join Date
    Jul 2013
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    44 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    Make sure you follow the setting up simba and srl guides again. If it's not logging you in you either setup the player form incorrectly or have the wrong graphics settings. What does your debug say?
    Checking for script updates...
    3.4
    3.4
    You have the latest version of the script!
    -- TPlayerArray.setup()
    ---- Loaded player: Ravens Cry
    -- TPlayerArray.setup(): Success
    -- setupSRL()
    ---- Setting up SRL...
    ---- initSmart():
    ------ Attempting to pair to a previously spawned client
    ------ smartPairToExistingClient():
    -------- Found no free clients to pair to
    ------ smartPairToExistingClient(): result = false
    ------ Attempting to spawn a new client..
    ------ smartCreateClient():
    ---------- smartGetParameters(): Succesfully grabbed paramters
    -------- getJavaPath():
    ---------- Attempting to search for your Java path
    ---------- Found your java path @ C:\Program Files (x86)\Java\jre7\bin\java.exe
    -------- getJavaPath()
    -------- Using parameters [http://world15.runescape.com/, f753874031663439301]
    -------- Using plugins "OpenGL32.dll"
    -------- Succesfully spawned a client, attempting to target
    ---------- smartSetAsTarget(): Succesfully set SMART[31552] as Simba's target
    ------ smartCreateClient(): result = true
    ------ Succesfully initialized via spawning a new client
    ---- initSmart()
    ------ smartSetupDrawing(): Succesfully setup SMART drawing
    ---- Waiting up to 5 minutes for RS to load...
    NightLeaf Presents: A Working RS3 Script
    (RS3) - NiteLeaf's Supreme Chopper - (Bonfire Support!)

  25. #925
    Join Date
    Dec 2011
    Posts
    150
    Mentioned
    4 Post(s)
    Quoted
    46 Post(s)

    Default



    that keeps happening
    1B total exp progress
    875m / 1B
    120s
    113/120 Fish
    112/120 Dung

Page 37 of 49 FirstFirst ... 27353637383947 ... LastLast

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
  •