Page 12 of 33 FirstFirst ... 2101112131422 ... LastLast
Results 276 to 300 of 825

Thread: MiningGuildRaper by Wizzup and WT-Fakawi 0.39.

  1. #276
    Join Date
    Nov 2006
    Posts
    60
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by snatch View Post
    can you or some one else please post a copy of the script that works with one player
    yeah, I put in 2 players using just 1 player (same name and pass and info in the player 0 and player 1 fields)

    and it mines a full load on player 0, logs out, logs back on, then looks at my ivnentory and doesnt do anything..

    how do i make it so it just does it with 1 player? because I only have 1 player?

    PLEASE HELP

  2. #277
    Join Date
    Nov 2006
    Posts
    157
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i fixed the ladder error, but now he mines 1 lot and just loggs out at mines....i only got 1 character...

  3. #278
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    There are two options for you, 1, read my sig, 2, read this thread, i think there is a fix for it somewhere ...
    Administrator's Warning:


  4. #279
    Join Date
    Sep 2006
    Posts
    78
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Sumilion View Post
    There are two options for you, 1, read my sig, 2, read this thread, i think there is a fix for it somewhere ...
    cant afford that, why wont someone help

  5. #280
    Join Date
    Nov 2006
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    For those getting logged out when a full load is reached:

    Change GuildToBank from this:

    Code:
    procedure GuildToBank;
    var
      c:integer;
    begin
    
        repeat
          c:=c+1;
          RadialWalk(MapOreColor,210,270,50,-1,0);
          if FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) then break;
          if c=10 then begin Logout; exit; end;
        until( FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) or(c>10) )
        IdleTime(3000, 1000, 1.0);
        If FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) Then Mouse(x,y,2,2,True);
        Wait(1500+Random(500));
        FFlag(0);
        ClimbLadderUp;
    
        MouseFindFlag(666,45,-1,-1);
        Flag;
        MakeCompass('N');
        If FindColor(x,y,BankColor,MMX1,MMY1,MMX2,MMY2) then
        begin
          Mouse(x,y,0,0,True);
          FFlag(10);
          DTM3Flag(FB1,FB2,FB3,True);
          FFlag(3);
        end
        else
        begin
          DTM3Flag(FB1,FB2,FB3,True);
          FFlag(3);
        end;
        Players[CurrentPlayer].loc:='Falador';
    end;
    To this:
    Code:
    procedure GuildToBank;
    var
      c:integer;
    begin
    
        repeat
          c:=c+1;
          RadialWalk(MapOreColor,210,270,50,-1,0);
          Mouse(x-10,y-10,20,20,true);
          
          //Begin Find ladder patch
          Mouse(646,151,2,2,True);
          Wait(4500+Random(600));
          Mouse(578,75,2,2,True);
          Wait(4500+Random(600));
          //End Find ladder patch
          
          if FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) then break;
          if c=10 then begin Logout; exit; end;
        until( FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) or(c>10) )
        IdleTime(3000, 1000, 1.0);
        If FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) Then Mouse(x,y,2,2,True);
        Wait(1500+Random(500));
        FFlag(0);
        ClimbLadderUp;
    
        MouseFindFlag(666,45,-1,-1);
        Flag;
        MakeCompass('N');
        If FindColor(x,y,BankColor,MMX1,MMY1,MMX2,MMY2) then
        begin
          Mouse(x,y,0,0,True);
          FFlag(10);
          DTM3Flag(FB1,FB2,FB3,True);
          FFlag(3);
        end
        else
        begin
          DTM3Flag(FB1,FB2,FB3,True);
          FFlag(3);
        end;
        Players[CurrentPlayer].loc:='Falador';
    end;


    Worked great for me after that..mined 1200 coal last nite
    Thanks Wizzup and Fakawi for this awesome script!!

  6. #281
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    That would work, but its pretty detectable. I think there was a bug in RadialWalk, so it might be better to change :

    Code:
    RadialWalk(MapOreColor,210,270,50,-1,0);
    To

    Code:
    RadialRoadWalk(MapOreColor,210,270,50,-1,0);
    Now i know your not supposed to use RadialRoadWalk in this case, but heh, it works and it's the only fix thats really somewhat of a fix.

    Besides, your fix ... you can also use one Mouse since it repeats it if the laddercolor isnt found.
    Administrator's Warning:


  7. #282
    Join Date
    Dec 2006
    Location
    Denmark
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This script is so nice thanks

  8. #283
    Join Date
    Nov 2006
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sum thanks for the feedback..

    In this case you would need the second mouse..the first moves you near the bottom of the guild then the second moves you to the left close enough to the ladder to detect it. It is setup so that wherever you are in the guild it will get you back to the ladder.

    Anyway it is very detectable. I like your way better. Im still a total nub with SCAR but learnin thanks to ppls help

  9. #284
    Join Date
    Sep 2006
    Posts
    206
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    serrog, I already made a fix for this according to what people have said to me. read through the pages its around there somewhere. The problem with the script is once its out of the guild.. it can't find the bank so it just stands there until it logs out. I haven't really sat down to see if I can fix that tho :P
    “Life is a goldmine, exploit it.” ~M. K. Soni
    www.sea4yourselves.com

  10. #285
    Join Date
    Dec 2006
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    sorry guys, i feel like a nub, you already fixed the problem :]

    tried to delete last post, but couldnt for some reason, so sorry about the double post.

  11. #286
    Join Date
    Dec 2006
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    THIS IS AMAZING!!!! thanks

  12. #287
    Join Date
    Dec 2006
    Location
    The Underground
    Posts
    134
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice script!


    My Small Test

    SCAR Code:
    <============== -0.39- Progress Report ===============>
    Worked for 1 Hours, 51 Minutes and 33 Seconds
    Banked 12 loads[s].
    Banked 323 Ores.                    
    <=====================================================>

  13. #288
    Join Date
    Jun 2006
    Location
    Sweden
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Haha damn, seems nice, I want to use it but my miner is at 81 mining now(comb 16) .

    I don't want to take the risk of getting banned, but ill make a new 60 miner and I will try this script.
    Peace all of you
    Respect your elders.

  14. #289
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Make several.

  15. #290
    Join Date
    Dec 2006
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hmm can someone help me... when i leave it on it seems to randomly log me out with no reason as to why.. and when i log back on its like only mined 20 ores and banked none time. Also sometimes it jus mines one ore and banks and keeps doing this, the only changes i have made to the code are changing radialwalk to radialroadwalk and changing players to 1 and only having one player there but sometimes it works??
    thanks
    kishan

  16. #291
    Join Date
    Dec 2006
    Location
    The Underground
    Posts
    134
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by koolkishan View Post
    hmm can someone help me... when i leave it on it seems to randomly log me out with no reason as to why.. and when i log back on its like only mined 20 ores and banked none time. Also sometimes it jus mines one ore and banks and keeps doing this, the only changes i have made to the code are changing radialwalk to radialroadwalk and changing players to 1 and only having one player there but sometimes it works??
    thanks
    kishan

    Use serraog's post to change the route back to the bank, worked great for me and i ran it for about 3 hours 2day...no bans

  17. #292
    Join Date
    Dec 2006
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it goes down into the guild fine and mines a full load. then it logs out in the guuild no matter how maney loads i set it too.

  18. #293
    Join Date
    Dec 2006
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by tomtomsparklingstar View Post
    it goes down into the guild fine and mines a full load. then it logs out in the guuild no matter how maney loads i set it too.
    Change radialwalk to radialroadwalk like sumillion posted above thatll fix it

  19. #294
    Join Date
    Nov 2006
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmm, the script is very nice, but whenever i get a box, when its going to figure out what number is on star or circle etc, it just freezes. It freezes everytime its going to solve a box. Has this happened to any1 else?? What must I do to fix this?

    Thankful for help

  20. #295
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by the_mcroer View Post
    Hmm, the script is very nice, but whenever i get a box, when its going to figure out what number is on star or circle etc, it just freezes. It freezes everytime its going to solve a box. Has this happened to any1 else?? What must I do to fix this?

    Thankful for help
    Wait for the newest SRL. :-) or put GambleNewBox to true.



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  21. #296
    Join Date
    Nov 2006
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Wizzup? View Post
    Wait for the newest SRL. :-) or put GambleNewBox to true.
    allright but when does it come out? And where to set gamblenewbox on true Wizzup?


  22. #297
    Join Date
    Dec 2006
    Location
    The Underground
    Posts
    134
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Got some really good results, thought I would post em
    my random box did fine...I watched it solve, although it did lag doing it


    SCAR Code:
    <============== -0.39- Progress Report ===============>
    Worked for 6 Hours, 16 Minutes and 52 Seconds
    Banked 42 loads[s].
    Banked 1086 Ores.
    <=====================================================>



    /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    |     SRL Randoms Report       |
    |                              |
    |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    | Logged in              :  5  |
    | Trade[s] Made          :  1  |
    | Fight Random[s]        :  2  |
    | New Box[s] Solved      :  6  |
    | Pickaxes Attached      :  1  |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

  23. #298
    Join Date
    Jul 2006
    Posts
    189
    Mentioned
    1 Post(s)
    Quoted
    19 Post(s)

    Default

    this script runs fairly well... it lags a small bit for me but nothing to worry bout... but when i get a fll inv of coal, it clicks the tools button to the right of the logout button and constantly taps it!

    any ideas :P

  24. #299
    Join Date
    Dec 2006
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks every one im going to test it in a little bit. ill post results.

  25. #300
    Join Date
    Dec 2006
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it works perfectly now thanks to you guys. gut i only did 2 loads because the guy that was going to be the second got banned for powerming. so it will be a while till i test it for hours.

Page 12 of 33 FirstFirst ... 2101112131422 ... LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. WT-FAKAWI what's in a name?
    By OLDSCHOOLMACRO'ER in forum Discussions & Debates
    Replies: 9
    Last Post: 09-14-2008, 02:39 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
  •