Page 5 of 7 FirstFirst ... 34567 LastLast
Results 101 to 125 of 161

Thread: Kevin's Slayer Tower [BETA]

  1. #101
    Join Date
    Mar 2008
    Posts
    426
    Mentioned
    1 Post(s)
    Quoted
    116 Post(s)

    Default

    Quote Originally Posted by sd999444 View Post
    curious. new to simba still learning the scripting language (only know auto it very well, and autohotkey a little). was wondering how exactly this works? I thought you need it as a task to gain slayer xp?
    It goes and gets a new contract(Task) from the guy out the front, goes inside n finishes contract..
    / repeats \

  2. #102
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    Quote Originally Posted by sd999444 View Post
    curious. new to simba still learning the scripting language (only know auto it very well, and autohotkey a little). was wondering how exactly this works? I thought you need it as a task to gain slayer xp?
    Like Peanuts mentions, it gets a "contract" instead of a task to get a target to kill for slayer experience. The downside is that each monster is only worth 20% of their normal slayer experience value. It's an addition about 3 months ago to Runescape and is the only other method for gaining slayer experience. 10k experience an hour is better than 0

  3. #103
    Join Date
    Feb 2013
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    22 Post(s)

    Default

    Quote Originally Posted by Kevin View Post
    Like Peanuts mentions, it gets a "contract" instead of a task to get a target to kill for slayer experience. The downside is that each monster is only worth 20% of their normal slayer experience value. It's an addition about 3 months ago to Runescape and is the only other method for gaining slayer experience. 10k experience an hour is better than 0
    true ^^ i tested it out and noticed a few problems, wish i knew enough to figure out how to solve them myself.

    1: world hopping occurs way too often, including in empty worlds. not a big problem just something to take away from the total xp/hr (was totaling about 1k xp/hr.)
    2: it randomly sits there for a couple minutes (not during breaks) pretty often
    3: it doesn't seem to use my regenerate, even if i dont keep it on - or =.

    looking forward to an update, so far it's very nice especially being still in beta!

  4. #104
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    Quote Originally Posted by sd999444 View Post
    true ^^ i tested it out and noticed a few problems, wish i knew enough to figure out how to solve them myself.

    1: world hopping occurs way too often, including in empty worlds. not a big problem just something to take away from the total xp/hr (was totaling about 1k xp/hr.)
    2: it randomly sits there for a couple minutes (not during breaks) pretty often
    3: it doesn't seem to use my regenerate, even if i dont keep it on - or =.

    looking forward to an update, so far it's very nice especially being still in beta!
    1.World hopping is based on a variable in the form: "MaxPlayers" I think. If that's set to 0 (which I think is defualt for all values), then it will auto world hop after every fight, that could easily be your problem if you didn't change that number. I think 2 or 3 tends to be a good number.
    2.hmm randomly sitting for a couple of minutes... That's not good or normal that I can think of. Is debug telling you anything (it has to be turned on)?
    3.'=' won't work at all, it's just the way the text recognition works and I can't do anything about that but 0-9, '-' and all letters should work fine. The "RegenerateSlot" option is a 1-12 solution. So if it's in the last slot, you would enter '12'. I'll try and update so that's not needed at all in the near future...

  5. #105
    Join Date
    Feb 2013
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    22 Post(s)

    Default

    Quote Originally Posted by Kevin View Post
    1.World hopping is based on a variable in the form: "MaxPlayers" I think. If that's set to 0 (which I think is defualt for all values), then it will auto world hop after every fight, that could easily be your problem if you didn't change that number. I think 2 or 3 tends to be a good number.
    2.hmm randomly sitting for a couple of minutes... That's not good or normal that I can think of. Is debug telling you anything (it has to be turned on)?
    3.'=' won't work at all, it's just the way the text recognition works and I can't do anything about that but 0-9, '-' and all letters should work fine. The "RegenerateSlot" option is a 1-12 solution. So if it's in the last slot, you would enter '12'. I'll try and update so that's not needed at all in the near future...
    i noticed the 1-12 part, and added it to any of the slots. none seem to work. and i did change it to 2- still hops when 0 are around, not sure why it'd be hopping then.
    the stopping seems to be when it's looking for monsters since when i rotate the screen, it finds one and keeps going.

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

    Default

    I have a problem. everytime I try too run the script I get this.

    " [Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(281:149): Invalid number of parameters at line 280
    Compiling failed. "

  7. #107
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    Quote Originally Posted by sd999444 View Post
    i noticed the 1-12 part, and added it to any of the slots. none seem to work. and i did change it to 2- still hops when 0 are around, not sure why it'd be hopping then.
    the stopping seems to be when it's looking for monsters since when i rotate the screen, it finds one and keeps going.
    I'm not sure why it would be hopping then either... Perhaps they're nearby on the minimap, even though not trying to fight whatever you are?

    Are you manually rotating the screen? If that's the case then it doesn't really have anything to handle that as the walking and detection is heavily based on the screen facing angle high north.

    Quote Originally Posted by Martinh92 View Post
    I have a problem. everytime I try too run the script I get this.

    " [Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(281:149): Invalid number of parameters at line 280
    Compiling failed. "
    That's because I use smart8 and you don't have it installed, however, that's a simple fix for you. At the top:
    Simba Code:
    {$DEFINE SMART8}
    should change to
    Simba Code:
    {$DEFINE SMART}

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

    Default

    Ooops my bad but very nice script so far.

  9. #109
    Join Date
    Mar 2008
    Posts
    426
    Mentioned
    1 Post(s)
    Quoted
    116 Post(s)

    Default

    Well its working pretty solid for me.. Gotta babysit as sometimes it'll run for a few hours n sometimes only 30 mins..
    almost 45 slayer now , time to leave the banshees and try the next monsters ! :P
    Though i'm not sure whats causing it to stop exactly..

    This script is gonna 6 - 85 slayer me.

  10. #110
    Join Date
    Dec 2011
    Posts
    51
    Mentioned
    1 Post(s)
    Quoted
    19 Post(s)

    Default

    Error: Out Of Range at line 2014
    The following DTMs were not freed: [SRL - Lamp bitmap, 1, 2, 3, 4]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap, SRL - NavBar Bitmap, SRL - Options Bitmap, 5, 6, 7]

    Keep getting this error, i installed the dtm thing like it said and already had the sps updated. What can i do to fix this?

  11. #111
    Join Date
    Mar 2012
    Location
    Australia
    Posts
    625
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    the slayer tower on powerbot has gone to vip

    i guess i can come back here
    Bored of playing rs, and bored of botting it, why am i here?

  12. #112
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    Quote Originally Posted by Martinh92 View Post
    Ooops my bad but very nice script so far.
    Thank you!
    Quote Originally Posted by Peanuts View Post
    Well its working pretty solid for me.. Gotta babysit as sometimes it'll run for a few hours n sometimes only 30 mins..
    almost 45 slayer now , time to leave the banshees and try the next monsters ! :P
    Though i'm not sure whats causing it to stop exactly..

    This script is gonna 6 - 85 slayer me.
    Hmm... I'll have to work on stability I guess, what message is it giving you when it fails each time now?
    Quote Originally Posted by mrisperfect View Post
    Error: Out Of Range at line 2014
    The following DTMs were not freed: [SRL - Lamp bitmap, 1, 2, 3, 4]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap, SRL - NavBar Bitmap, SRL - Options Bitmap, 5, 6, 7]

    Keep getting this error, i installed the dtm thing like it said and already had the sps updated. What can i do to fix this?
    That means you set your Threshold Slot as a number that is not between 0 and 11 (I need to make an update for it to be more user friendly for 1-12).
    Quote Originally Posted by stuartroad View Post
    the slayer tower on powerbot has gone to vip

    i guess i can come back here
    Go me I guess! I want to add plenty more in the near future, I just need to finish a side project first before I can release all my new additions.

  13. #113
    Join Date
    Feb 2013
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    22 Post(s)

    Default

    Quote Originally Posted by Kevin View Post
    I'm not sure why it would be hopping then either... Perhaps they're nearby on the minimap, even though not trying to fight whatever you are?

    Are you manually rotating the screen? If that's the case then it doesn't really have anything to handle that as the walking and detection is heavily based on the screen facing angle high north.



    That's because I use smart8 and you don't have it installed, however, that's a simple fix for you. At the top:
    Simba Code:
    {$DEFINE SMART8}
    should change to
    Simba Code:
    {$DEFINE SMART}
    It always starts at high north, but when it gets stuck i have to manually rotate it to make it find more monsters. if i don't, it just stays stuck until i do so.

  14. #114
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    Quote Originally Posted by sd999444 View Post
    It always starts at high north, but when it gets stuck i have to manually rotate it to make it find more monsters. if i don't, it just stays stuck until i do so.
    What exactly does it get stuck doing? What do the debug messages say? Right now it should look for monsters for a little while and if it doesn't find anyone in 10 seconds (might be a slightly different number) - this being time where it may look like it's doing nothing, but is instead searching the mainscreen - then it will reset its position to be at the main spawn area of the related monster and start searching again. If you let it go for a little while, it should resolve itself.

  15. #115
    Join Date
    May 2012
    Posts
    49
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Quote Originally Posted by Kevin View Post
    Did you actually get 99 att and str using this script? Because if so, I'll totally add you to the OP!
    99 attack, strength and defence now. =D all from this script haha

  16. #116
    Join Date
    Dec 2011
    Posts
    51
    Mentioned
    1 Post(s)
    Quoted
    19 Post(s)

    Default

    But kevin, I don't use that spot so i left it at 0

  17. #117
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    Quote Originally Posted by Praize View Post
    99 attack, strength and defence now. =D all from this script haha
    Will be added to OP! Any chance you have a copy of a long proggy? :P

    Quote Originally Posted by mrisperfect View Post
    But kevin, I don't use that spot so i left it at 0
    0 should be fine... I'll try and look into it when I get the time as for why that doesn't work.
    Is there a reason you don't want to use a threshold ability?

  18. #118
    Join Date
    Dec 2011
    Posts
    51
    Mentioned
    1 Post(s)
    Quoted
    19 Post(s)

    Default

    Tbh i don't really know what that is, also I noticed the script was having problems with the banking :I

  19. #119
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    Quote Originally Posted by mrisperfect View Post
    Tbh i don't really know what that is, also I noticed the script was having problems with the banking :I
    That's one of the EOC abilities that require 50%+ of your ability bar.

    As I mention in the OP, there is no banking. The only time "banking" occurs at the moment, is when your character can't keep up with the damage he's taking and he runs to the bank to heal because banks heal at somewhere around 1k hp/second.

  20. #120
    Join Date
    Dec 2011
    Posts
    51
    Mentioned
    1 Post(s)
    Quoted
    19 Post(s)

    Default

    Quote Originally Posted by Kevin View Post
    That's one of the EOC abilities that require 50%+ of your ability bar.

    As I mention in the OP, there is no banking. The only time "banking" occurs at the moment, is when your character can't keep up with the damage he's taking and he runs to the bank to heal because banks heal at somewhere around 1k hp/second.
    Oh ok, so because i'm fighting infernal mages, they hit small damage but it adds up on me over time. What do you recommend?

  21. #121
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    Quote Originally Posted by mrisperfect View Post
    Oh ok, so because i'm fighting infernal mages, they hit small damage but it adds up on me over time. What do you recommend?
    Setting up Regenerate should have it work fairly well for the most part, with running to the bank as a back up if even that fails.

  22. #122
    Join Date
    May 2012
    Posts
    49
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Quote Originally Posted by Kevin View Post
    Will be added to OP! Any chance you have a copy of a long proggy? :P


    0 should be fine... I'll try and look into it when I get the time as for why that doesn't work.
    Is there a reason you don't want to use a threshold ability?
    I had a 40 hour one but my computer crashed, sorry :/

  23. #123
    Join Date
    Dec 2011
    Posts
    51
    Mentioned
    1 Post(s)
    Quoted
    19 Post(s)

    Default

    Quote Originally Posted by Praize View Post
    I had a 40 hour one but my computer crashed, sorry :/
    Nice Praize, what were you fighting to get 500k+ combat xp per hour?

  24. #124
    Join Date
    May 2012
    Posts
    49
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Quote Originally Posted by mrisperfect View Post
    Nice Praize, what were you fighting to get 500k+ combat xp per hour?
    500k? when did I say that? haha, and I killed nechryael for when I used this script.

  25. #125
    Join Date
    Dec 2011
    Posts
    51
    Mentioned
    1 Post(s)
    Quoted
    19 Post(s)

    Default

    Quote Originally Posted by Praize View Post
    500k? when did I say that? haha, and I killed nechryael for when I used this script.
    What melee armor and weapons are good for leveling in the tower, if I got 30mill to spend?

Page 5 of 7 FirstFirst ... 34567 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
  •