Results 1 to 21 of 21

Thread: Need EXTREMELY Simple Script Made. Please :)

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

    Default Need EXTREMELY Simple Script Made. Please :)

    Correct my title: extremely simple if you know what youre doing. i on the other hand have no idea. All i ask of you scripters is a simple eater. Yes an eater. most of the ones in combat fail me, but i need a script that can eat rock tails whenever its hp falls to a certain point. It needs to be precise, because the hp on my acct is extremely low. (lvl 10) and its that way for a reason. If anyone is wondering why i dont get get it up and why i need an eater...its because i need to play on one account and lootshare to this acct but this acct needs to be able to eat while i play. please and thanks ahead of time

  2. #2
    Join Date
    Jan 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    btw, sorry im a newfag, but it doesnt mean i wont continue to grow into the community, errybody gotta start somewhere. yah feel me?

  3. #3
    Join Date
    Mar 2007
    Location
    Alberta, Canada
    Posts
    1,780
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Use the edit button, try not to double post

    And what you are asking for is in fact extremely easy. Try learning to do it yourself. All you need is to learn the very basics of scripting, (you can check the tutorial in my signature for that, or anything else in the beginner's section), you can use an SRL include function to checkhp, and then just a simple DTM to click the food

  4. #4
    Join Date
    Sep 2010
    Location
    Northern Kentuckeh
    Posts
    759
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    just out of curiosity what are you accomplishing with a lvl 10 account, sounds like you already ruined it if it's a skiller?
    Quote Originally Posted by h_king1998 View Post
    how come it does not bank in al-kharid when i do mine 1 drop 1

  5. #5
    Join Date
    Mar 2007
    Location
    Alberta, Canada
    Posts
    1,780
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Quote Originally Posted by doublex8 View Post
    just out of curiosity what are you accomplishing with a lvl 10 account, sounds like you already ruined it if it's a skiller?
    I think he means the HP level is 10

  6. #6
    Join Date
    Jan 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Griff View Post
    I think he means the HP level is 10
    this^ and my goal is someeeday a 99 summon cb lvl 15 beast. and tbh i cba to make a script. you say it is easy but i have no idea where to begin or anything. thats why i requested it. if you would make it for me, then also teach me how to code a bit by teamviewer or a youtube video or something i would greatly appreciate it. but as of now. i will not attempt a script when i have 0 knowledge of anything simba

  7. #7
    Join Date
    Sep 2010
    Location
    Northern Kentuckeh
    Posts
    759
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by IronikMagik View Post
    this^ and my goal is someeeday a 99 summon cb lvl 15 beast. and tbh i cba to make a script. you say it is easy but i have no idea where to begin or anything. thats why i requested it. if you would make it for me, then also teach me how to code a bit by teamviewer or a youtube video or something i would greatly appreciate it. but as of now. i will not attempt a script when i have 0 knowledge of anything simba
    There is a tut with a youtube video on it

    I've always wanted to make a skiller with 99 summoning, prayer and magic trained without raising hp. Might try doing it after I max out my main.
    Quote Originally Posted by h_king1998 View Post
    how come it does not bank in al-kharid when i do mine 1 drop 1

  8. #8
    Join Date
    Jan 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol couldnt you just make it for me please? tbh if i wanted to learn how to do it myself i would request help on how to do it.

  9. #9
    Join Date
    Dec 2011
    Posts
    353
    Mentioned
    3 Post(s)
    Quoted
    8 Post(s)

    Default

    Yes this is easy but why eat rocktails when you are only 10 hp? tuna would be enhoug lol.

  10. #10
    Join Date
    Dec 2011
    Posts
    496
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Rocktails keeps his hp @ 260 lps
    Nearly maxed, woowweee.

  11. #11
    Join Date
    Dec 2011
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I will try to make the script using Griffs signature, but I just know a bit of more scripting than you

  12. #12
    Join Date
    Jan 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks to anyone attempting to make this for me

  13. #13
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    If anyone wants to write this for him, here's the basic outline.

    Simba Code:
    Repeat
      If (HPPercent <60) then
      begin
        inc(food);
        FindDTM(rocktail);
        Mouse();
    until(Food=28)

  14. #14
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    does it need to do anything else, like attack? if not all you need it to do is check for if the HPPercent is less than 50 then check for whether there ExistsItem in inventory space 1, if so click it, elsecheck inventory space 2.

    i don't think I could spell it out better than that, look into "for-to-do" statements statements

  15. #15
    Join Date
    Feb 2007
    Location
    Colorado, USA
    Posts
    3,716
    Mentioned
    51 Post(s)
    Quoted
    624 Post(s)

    Default

    you can also just search the uptext for "Eat" and click it, either way


    Quote Originally Posted by putonajonny View Post
    does it need to do anything else, like attack? if not all you need it to do is check for if the HPPercent is less than 50 then check for whether there ExistsItem in inventory space 1, if so click it, elsecheck inventory space 2.

    i don't think I could spell it out better than that, look into "for-to-do" statements statements
    no it basically just eats if it gets attacked.. his higher level account is going to be killing monsters and then the lower level will be collecting charms that drop for summoning
    The only true authority stems from knowledge, not from position.

    You can contact me via matrix protocol: @grats:grats.win or you can email me at the same domain, any user/email address.

  16. #16
    Join Date
    Jan 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by grats View Post
    you can also just search the uptext for "Eat" and click it, either way




    no it basically just eats if it gets attacked.. his higher level account is going to be killing monsters and then the lower level will be collecting charms that drop for summoning
    this is correct.

  17. #17
    Join Date
    Jan 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    anyone have any luck yet?

  18. #18
    Join Date
    Oct 2007
    Posts
    111
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    your eyes work faster than simba's ocr unfortunately. also, with 10 hp, DONT USE ROCKTAILS, use pies or strawberries for eating. there you go. hf.

  19. #19
    Join Date
    Jan 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol why would i use pies or strawberries when its hp is so low? i need its hp at the highest it could be so it can survive while i play on another acct and lootshare charms to this one. did you read through the post at all?

  20. #20
    Join Date
    Jan 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    anyone?

  21. #21
    Join Date
    Jan 2012
    Location
    Atlanta, GA
    Posts
    227
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I haven't tested this at all, but in theory it should work.

    Just put this procedure like near the top of the script and everytime you want it to check the health put "CheckHealth;" in some random spots in other procedures and it will check it and eat for you.

    Also, at the top of the script you may see something that says "const", if you do add this after "const"(if you don't see "const" just add this stuff at the top of the script and put "const" at the top of it):

    Simba Code:
    EatAt = 100; //insert the hp percent that you want to eat at.
      FirstInvSlot = 1; //First Inventory slot with with food in it?
      DirectionToRun = 'N'; //Direction to run away if out of food - 'N' 'E' 'S' or 'W'

    ^^that is the stuff that you will need to edit for your personal preference, be sure to have your food in the last few inventory slots because it will start at the "FirstInvSlot" and eat going down.


    vv Add this procedure somewhere towards the top of your script

    Simba Code:
    Procedure CheckHealth; //Keep food in last few inventory slots
    var
      SlotNum:integer;

    begin
      if (HPPercent < EatAt) then
      begin
        Writeln('Health is at ' + inttostr(HPPercent) + '. Eating!');
        if (SlotNum < 1) then
          SlotNum := FirstInvSlot;
        if (SlotNum < 28) then
        begin
          InvMouse(SlotNum,1);
          SlotNum := SlotNum+1;
        end;
        if (SlotNum >= 28) then
        begin
          Writeln('Health is low and out of food! Running away!');
          RunAway(DirectionToRun, True, 2, 5000);
          ExitToLobby;
          TerminateScript;
        end;
      end;
    end;

    I'm not sure how accurate this is, like I said, I didn't test it. But here's my attempt. let me know how it goes.

    If you have trouble putting it into the script that you're using, just post the script and I will put it in for you.

    Good Luck! (:
    I accept donations juju_king433@yahoo.com is my paypal!

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
  •