Page 10 of 10 FirstFirst ... 8910
Results 226 to 241 of 241

Thread: YUGAY (GateStone Creator, 40K-50K xp/hr FREE F2P Magic XP)

  1. #226
    Join Date
    Dec 2011
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by YoHoJo View Post
    Yeah, been a while since I've worked on many of my scripts, this one being the buggiest, thanks everyone for still appreciating and using it! And kudos to those who tweaked it to run really well! I'll get to fixing it... eventfully....!
    When you are tweaking scripts you are in the stage between Leech>Scripter

  2. #227
    Join Date
    Jul 2008
    Location
    Poland
    Posts
    79
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Progress Report:
    /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    | -->            YUGAY 1.3          <-- |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    | Worked for 2 Hours, 8 Minutes and 6 Seconds|
    | Created 2337 Gatstones                |
    | Gained 101659.5 Experience            |
    | Created 1103 Stones/Hour              |
    | Gained 48,216 Experience/Hour         |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/


    Didn't walk to stairs correctly :<
    "Egoist: person, who cares more about himself rather then me." J.Tuwim

  3. #228
    Join Date
    Jan 2007
    Location
    Missouri, USA
    Posts
    163
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Doesnt work at all for me, enters dungeon then says "ERROR: 1 of Small Shadow" and it logs me out. 32 mage 5 dung.
    Last edited by Iced_Liquid; 02-03-2012 at 06:38 AM.

  4. #229
    Join Date
    Jan 2012
    Posts
    78
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm constantly having errors entering a new dungeon. Works fine for awhile (at max, 30 minutes) and then stops.

    Progress Report:
    /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    | -->            YUGAY 1.3          <-- |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    | Worked for 5 Minutes and 0 Seconds    |
    | Created 82 Gatstones                  |
    | Gained 3567 Experience                |
    | Created 1039 Stones/Hour              |
    | Gained 53,297 Experience/Hour         |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

    Successfully executed.
    The following DTMs were not freed: [2]
    The following bitmaps were not freed: [3]

  5. #230
    Join Date
    Jan 2012
    Posts
    159
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    Quote Originally Posted by YoHoJo View Post
    Yeah, been a while since I've worked on many of my scripts, this one being the buggiest, thanks everyone for still appreciating and using it! And kudos to those who tweaked it to run really well! I'll get to fixing it... eventfully....!
    The only thing I tweaked mine was to make it work correctly for accounts with only level 3 complexity unlocked. Here's what I modified:

    In Procedure EnterDungeon, I commented out these lines:
    Simba Code:
    WaitColorFailSafe(217, 410, 0, 0, 5000, '1 of Small Shadow');
    Mouse(259, 432, 20, 5, True);   //Click Medium



    In Procedure WaitForGateStone, I changed to this:
    Simba Code:
    Procedure WaitForGateStone;
    var
      FailCount:Integer;
    Begin
      FailCount:=0;
      While (Not GetColor(654, 223) = 131072) Do
      Begin
        If GetColor(654, 223) = 131072 Then Break;
        FKeyTab('inv');
        Wait(100+Random(50));
        Inc(FailCount);
        If FailCount> 50 Then
        Begin
          Players[CurrentPlayer].Loc:='Gatesone Outline';
          WhyBroke;
          Logout;
          Stats_Commit;
          ProgressReport;
          TerminateScript;
        End;
      End;
    End;
    In Procedure CreateGatestone, I changed to this:

    Simba Code:
    Procedure CreateGatestone;
    var
      X, Y:Integer;
    Begin
      If Not (LoggedIn) Then Exit;
      FKeyTab('inv');{GameTab(25);}
      WaitColorFailSafe(580, 242, 131072, 0, 5000, 'Cosmic Rune Count');
      //Writeln(IntToStr(CountCosmicRunes));
      While ((CountCosmicRunes > 4) or (CountCosmicRunes=0)) Do
      Begin
        FKeyTab('magic'); {FKeyGameTab(tab_Magic);}
        WaitColorFailSafe(560, 253, 65536, 20, 5000, 'Spell Border');//Spell Border
        If FindBitmapToleranceIn(CastGateStone, X, Y, 631, 214, 661, 246, 40) Then
        Begin
          LiveProg;
          Mouse(X, Y, 5, 5, False);
          If Not WaitOption('uick', 5000) Then
          Begin
            Players[CurrentPlayer].Loc:='Could not quick cast';
            WhyBroke;
            Logout;
            Stats_Commit;
            ProgressReport;
            TerminateScript;
          End;
          FKeyTab('inv');{FKeyGameTab(tab_Inv);}
          WaitColor(780, 351, 131072, 0, RandomRange(700,1000)); //GateStone Outline
          //WaitForGateStone;
          MouseItem(8, Mouse_Right);
          If Not WaitOption('rop', RandomRange(700,1000)) Then
          Begin
            MMouse(Random(MSX2), Random(MSY2), 0, 0);
            //WaitForGateStone;
            MouseItem(8, Mouse_Right);
            If Not WaitOption('rop', RandomRange(700,1000)) Then
            Begin
              Players[CurrentPlayer].Loc:='Could not drop';
              WhyBroke;
              Logout;
              Stats_Commit;
              ProgressReport;
              TerminateScript;
            End;
          End;
          IncEx(Players[CurrentPlayer].Integers[80], 1){Stones Made}
          IncEx(TStones, 1); {Total Stones Made}
          IncEx(StatsStones, 1);
          {stats_IncVariable('Create Gatestone (Casted)', 1);
          If (TStones > 0) And (TStones Mod 2 = 0) Then
            stats_IncVariable('Magic EXP (Gained)', 87);}

        End Else
        Begin
          Players[CurrentPlayer].Loc:='Could not find gatestone spell';
          WhyBroke;
          Logout;
          Stats_Commit;
          ProgressReport;
          TerminateScript;
        End;
      End;
    End;

    Edit: I remember seeing a fix for the go down ladder bug earlier here, but mentioned it won't compile. I'll see if I can fix that.

  6. #231
    Join Date
    Jan 2012
    Location
    Classified
    Posts
    157
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    The script runs fine for a while then i get this after my status report:

    The following DTMs were not freed: [2]
    The following bitmaps were not freed: [3]
    Last edited by Kerk; 02-07-2012 at 12:52 AM.
    There is no 'Ctrl' button on 's computer. is always in control.

  7. #232
    Join Date
    Jan 2012
    Posts
    74
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ERROR: 1 of Small Shadow
    Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    Status: | SRL Randoms Report |
    Status: | www.villavu.com |
    Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    Status: | SRL Logs : 1 |
    Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    Commiting Stats

    Progress Report:
    /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    | -->            YUGAY 1.3          <-- |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    | Worked for 42 Seconds                 |
    | Created 0 Gatstones                   |
    | Gained 0 Experience                   |
    | Created 0 Stones/Hour                 |
    | Gained 0 Experience/Hour              |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

    Successfully executed.
    The following DTMs were not freed: [2]
    The following bitmaps were not freed: [3]
    I get this im 5 dung, mage books correct, got the cosmics binded i arrive in the dung entrance with stone and cosmics in right place and i get the above error and it logs out straight away

  8. #233
    Join Date
    Dec 2011
    Location
    Indiana
    Posts
    205
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Works maybe a little too great, it performs actions un-humanly fast.

    E: Changed the wait time on some things, fantastic script, I think creative use of the dungeons as well, will post proggy soon.
    Last edited by Nietszche; 02-07-2012 at 05:49 AM.
    "Do not attribute to malice that which is adequately explained by stupidity"

  9. #234
    Join Date
    Jan 2012
    Posts
    74
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    niet, what are your levels and what complexity and floor you on cos mine gets a shadow error and logs out...

  10. #235
    Join Date
    Jan 2012
    Posts
    74
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    [/REPORT]
    ERROR: Yes Form Party
    Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    Status: | SRL Randoms Report |
    Status: | www.villavu.com |
    Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    Status: | SRL Logs : 1 |
    Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    Commiting Stats

    Progress Report:
    /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    | -->            YUGAY 1.3          <-- |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    | Worked for 16 Minutes and 0 Seconds   |
    | Created 246 Gatstones                 |
    | Gained 10701 Experience               |
    | Created 988 Stones/Hour               |
    | Gained 44,355 Experience/Hour         |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

    Successfully executed.
    The following DTMs were not freed: [2]
    The following bitmaps were not freed: [3]

    another error after 13 mins

  11. #236
    Join Date
    Feb 2012
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'll try this script in a while, hope I won't get banned (since Jagex was banning F2P dung bots in reflection days..)

  12. #237
    Join Date
    Jan 2007
    Location
    Missouri, USA
    Posts
    163
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Welcome Fruity View Post
    ERROR: 1 of Small Shadow
    Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    Status: | SRL Randoms Report |
    Status: | www.villavu.com |
    Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    Status: | SRL Logs : 1 |
    Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    Commiting Stats

    Progress Report:
    /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    | -->            YUGAY 1.3          <-- |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    | Worked for 42 Seconds                 |
    | Created 0 Gatstones                   |
    | Gained 0 Experience                   |
    | Created 0 Stones/Hour                 |
    | Gained 0 Experience/Hour              |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

    Successfully executed.
    The following DTMs were not freed: [2]
    The following bitmaps were not freed: [3]
    I get this im 5 dung, mage books correct, got the cosmics binded i arrive in the dung entrance with stone and cosmics in right place and i get the above error and it logs out straight away

    Ditto

  13. #238
    Join Date
    Dec 2011
    Posts
    154
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Still doesn't work.

    Thank you JCB for the pure, your a beast.

  14. #239
    Join Date
    Jan 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    umm im get every error lmao
    no shadow/ the stairs one / unable to enter or leave the dungeon etc
    i have everything updated plz help or whatever wanna make my mage pure

  15. #240
    Join Date
    Jan 2012
    Posts
    74
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Could atleast update your bot yugay everyones getting all kinds of problems. Was nice of you to release but could you try and make it stable?

  16. #241
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Closed until I get time to update it.
    Will reopen/post when ready.

Page 10 of 10 FirstFirst ... 8910

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
  •