Page 3 of 3 FirstFirst 123
Results 51 to 60 of 60

Thread: Ideas for my amazing mining script?

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

    Default

    Quote Originally Posted by RedIce View Post
    ...I like that idea. couldnt be a every 10 times though, because then its repetitive.. like every 4 + random(10) clicks.
    Well if you did Random(10), chances are it's not going actually misclick it once every 10 times.

  2. #52
    Join Date
    Mar 2010
    Location
    New Hampshire, U.S.A
    Posts
    586
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    But it still seems traceable, because every misclick is on every tenth twentieth thirtieth click ect. so i could maybe start at 10? Then add random to that?

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

    Default

    Quote Originally Posted by g0tp0t View Post
    But it still seems traceable, because every misclick is on every tenth twentieth thirtieth click ect. so i could maybe start at 10? Then add random to that?
    It wouldn't do it like that. Run this:
    SCAR Code:
    program New;

    var
      i: Integer;
    begin
      repeat
        Inc(i);
        Writeln(i);
        if (Random(10) = 1) then
          Writeln('Random = 1')
        else
          Writeln('Random != 1');
      until(i = 100);
    end.
    Take a look at when "Random = 1" comes up in the debug. Sometimes it'll come up after 7 "Random != 1", sometimes 3, sometimes 12. That's how the random command works. It's completely random.

  4. #54
    Join Date
    Mar 2010
    Location
    New Hampshire, U.S.A
    Posts
    586
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    haha, ya, I understand that, but how I didn't realize that....

    I want to add a check through reflection to make sure no one who is better at mining than me is mining my rock, can I do that without modifying Runescape?

    you could make that simpler and use a for loop :P

  5. #55
    Join Date
    Nov 2006
    Posts
    181
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by g0tp0t View Post
    haha, ya, I understand that, but how I didn't realize that....

    I want to add a check through reflection to make sure no one who is better at mining than me is mining my rock, can I do that without modifying Runescape?

    you could make that simpler and use a for loop :P
    I don't think you can unless you look him (it) in the high scores.
    Well, you'd know also by the picaxe, but that doesn't say much except for "My mining is over 40" or "Under 40" (since people usually use other kinds of pics very temporarily - or only for a short amount of time until they get their lvls up)...

    But it doesn't really matter. There is a certain percentage for a player to mine a rock. While your levels rises, that percentage rises with it (by a certain percentage), so basically, someone with a lvl 30 mining could get a rock of a lvl 70 mining.

    And that means that you should just look if the player started mining after you or before you. (That would be done with reflection I assume)

  6. #56
    Join Date
    Nov 2009
    Location
    Seattle, WA
    Posts
    589
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I dun think a Miner has to be complicated xD, i mean this is runescape, and to me its not really a big thing when your training a skill. But since were all scripters i guess we could just make it fancy why not make a checklist.
    -What type of Rocks can you mine?
    -Where can you mine?
    -does it cover most of the things we need when we mine? [pickaxe or w/e]
    -can it eat when you have low hp?
    -can it switch to weapons if you engage into a fight?
    -can it run if that fight is going bad for you?
    -where can it walk?
    -how does it walk?
    -is the walking safe and reliable?

    whenever i think of making a script, my mind just jumbles up and it gets confusing when i really try to concentrate on things im missing. So a list just helps you narrow it down a bit, its just a suggestion :P
    Don't Troll, Don't Fight, Just keep the Respect
    Status : Offline

    Feel free to re-make my scripts ;D
    Community Member

  7. #57
    Join Date
    Mar 2010
    Location
    New Hampshire, U.S.A
    Posts
    586
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That is an amazing suggestion, lol its common sense apparently i have none. lol. +rep
    Sell botted goods at mid to high prices!!! Else we lose our profit AND ruin the game!!!!

  8. #58
    Join Date
    Nov 2006
    Posts
    181
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by g0tp0t View Post
    That is an amazing suggestion, lol its common sense apparently i have none. lol. +rep
    Buddy, it's better if you add more features to your script later on than give everything in one go. People usually expect the scripter to add - they want to see change in a script. So I'd suggest that instead of replying to this thread of suggestions you start working on it.

    As they say - actions are bigger than words.

  9. #59
    Join Date
    Mar 2010
    Location
    New Hampshire, U.S.A
    Posts
    586
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    LOL, i have been working on it. I have also been pushing myself into corners, because im not amazing at scripting yet. :/ i just started a thread to see if anyone was willing to help me make this script.

    As they say - actions are bigger than words.
    What action do you mean?
    Sell botted goods at mid to high prices!!! Else we lose our profit AND ruin the game!!!!

  10. #60
    Join Date
    Nov 2006
    Posts
    181
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by g0tp0t View Post
    LOL, i have been working on it. I have also been pushing myself into corners, because im not amazing at scripting yet. :/ i just started a thread to see if anyone was willing to help me make this script.



    What action do you mean?
    Actions as in scripting. Easy to think of new things, harder to script them.
    Even if we suggested something like "Check which rocks the other players mined so you know that if they mined a much better rock their levels are much higher" - That would be almost impossible (Checking 10 other players for a whole 6 hours or so - if this script actually lasts that long).

    That's why no one - or most people - don't make these threads.
    These suggestions happen on the script's thread, AFTER it's already scripted.

    Just get mIRC and people will help you, I know they help me.

Page 3 of 3 FirstFirst 123

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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