Jump to content

Neodork

Members
  • Posts

    166
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by Neodork

  1. like it matters, this is for the people running multiple accounts and if one gets banned they just make a new one, ( dont try telling me people dont do this ) 

    Im just sayin i want some cheap nats lol

    Good luck with creating a new account every 12 hours. I have been testing this for my script.. Runs longer then 12 hours result in an insta 2 day ban.

    • Like 1
  2. I don't see why you are being completely blatant.

    Tell me this, if you go to a job and you are told you will be paid every certain day but after that days go by two times without being paid will you do something to question why or simply sit back and say "Oh it's only been 8 days."

    Also, I have messaged Laz, Maxi, and Raflesia.

     

    You really have no place of even replying to this thread as you are no body in this community, beside the fact that you probably know the basics of Java and can put together a few scripts.

     

    Clearly this thread was a last resort to get an Administrators attention.

    Now now I know you can't stand me but no need to get offensive. I have as many rights to post in this thread as anyone else. As far as the job comparison, I don't remember signing any contracts which state that you will be payed EXACTLY every 7 days. Not to mention if I remember correctly the SDN section says that they will do their best to pay you every 7 days.

  3. Archon has waited 2 weeks.

    That's not a few days.

     

    I don't like to do this but let me write this out for you Archon said the following:

     

    *removed*

    I cannot see my Archon Agility script on this page.

     

    Also, when does OSBot pay scrtipers? I was told every Wednesday but it's been two Wednesdays now without anything.

    Now we're going to do some simple counting:

    Wed nr 1 - Start

    Thu - Day nr 1

    Fri - Day nr 2

    Sat - Day nr 3

    Sun - Day nr 4

    Mon - Day nr 5

    Tue - Day nr 6

    Wed nr 2 - Day nr 7

    Thu - Complain day

    According to this 8 days passed since the pay date. The complaints started the 8th day. So he has been waiting a maximum of 8 days (which isn't that long in my opinion). And instead of PMing the admin for information he goes public with it causing people to spread rumors like: "seeing so many scripters not getting paid. its ridicilious. staff doesnt give a fuck.". I made this up using the information in the thread correct me if I am wrong.

  4. I'm using depositAllExcept(String ...names); it spams the "deposit all from inventory" button in runescape. This only happens when the items in the filter were not found in the inventory. Hence why it's pressing the deposit all button.

     

    it never stops spamming it.

  5. I'm using depositAllExcept(String ...names); it spams the "deposit all from inventory" button in runescape. This only happens when the items in the filter were not found in the inventory. Hence why it's pressing the deposit all button.

  6. Experience rewards: in the case you have an item selected it will make sure it is deselected first, also some minor changes that Jagex made are accounted for now

     

    Thanks I appreciate it!

  7.  

    I will also need a couple of accounts in drill demon to fix the issue people are having in world 1 with it!

     

    Edit:

     

    Currently I have worked on these randoms and have improved side cases where they would break or fix them entirely as far as I could test myself:

     

    • Miles, Giles and Niles: little fix to account for the possibility of the interface not containing the childs, letting it wait for them to be set and after a couple of retries restart the random handler
    • Exp rewards should now have a fix to account for cases where you have selected an item
    • Strange box should now have a fix to account for cases where you have selected an item
    • Strange plant should now be prioritized again to pick the fruit, running away from combat should only occur anymore if the plant has it's attacking form
    • Molly has some modifications made, these still need to be tested
    • Frog cave has some modifications made to account for the rare cases where it will sit there and do nothing, this is untested and will have to be confirmed by the community as it seems this case is quite rare to encounter

    Things I'm still looking for are:

     

    • Beehive stuck accounts
    • Screenshots of the strange plant in all its forms with the entity debugger enabled and the mouse pointed at the strange plant
    • Lost & found stuck accounts
    • Account in Drill Demon: not stuck accounts, but to gather some needed information to fix the bug people encounter in highly populated area's where the sergeant wanders around sometimes grabbing other people
    • Accounts stuck in maze

     

     

    Appreciate it! Thanks for the fixes.

  8. That's a nice snippet.. There is no need for 2 loops though, OSBot already has a method which searches for the item name:

    bank.getItemForName();  

    So I formatted a bit, other than that I like it and was already using something similar.

    private String getBankItem(String ...itemNames) {
    	Bank bank = this.client.getBank();
            if(!client.getBank().isOpen() || itemNames == null || itemNames.length < 0) {
                  return null;
            }
            
            for(String name:itemNames){
            	Item selectedItem = bank.getItemForName(name);
            	if(selectedItem !=null){
            		return name;
            	}
            }
            
            return null;
        } 
    
  9. I might be wrong, but cant you just use Store store = new Store(this);

     

     

    Pretty sure using this will just use everything. Meaning, less typing and less confusing.

    I could do that, but in that case I would be passing an instance of Script to the Store library. There is no need for us to use the methods inside the Script class all we need is to use the MethodProvider which is the super class of Script. But if you prefer to pass the instance of the class Script to the Store library I won't stop you. You're able to cast from sub to super class so there will be no problem in doing so.

  10. StoreItem#interact(String action) is bad. 

     

    Better

     

    StoreItem#buy(int amount). You handle the rest.

     

    I didn't check the source so this method may exist but if it doesn't make it.

     

     

    I'm guessing StoreItem extends w/e the item class in OSBot is (I don't develop for this client).

     

    StoreItem i = Inventory.get(id).

     

    StoreItem.sell(int amount) 

     

    Actually storeItem.interact(String action); is the right way to go, because it is not necessarily used for buying, you can also select the value action for example. In this case the interact method can be used to select all options in the store. I would not understand the logic of passing an integer argument as the is no Buy X action in a store. 

    I don't intend to use all fields the OSBot so I didn't extend it. Also casting from a super class to a subclass is not possible.

  11. I think this needs to be worked on slightly as the loading time is too slow. When the run away from combat random starts and attacks a level 3 by time the bot has noticed the user has died.

     

    I know not everyone runs a level 3 but alot of people do and the run away from combat randoms loading time needs to be improved i feel.

     

    Actually that's script dependent as there is a hook for running away from combat.

     

     

    If they don't wanna die, they shouldn't be level 3 >.> it's a risk they take by staying a low combat level

    Lol i play legit, and even i die sometimes while skilling and looking away for 10 seconds, cause my HP sucks

     

    I love how people dare to say they play "Legit" on these forums.

  12.  

    whats the paypal

    this is my Paypal tongue.png

     

    http://puu.sh/3Wfg3.png

     

    Brandon McIntyre is the name happy.png

    I'll send you 2.30$ for free, give (PM) me your paypal e-mail.

    i left you it as a comment tongue.png PMS are not working for me on OSBot keep getting 404 Error.

     

    I Luv yous <3

     

     

    I've seen it remove the E-mail from here please as I do not deem it safe to put your paypal E-mail on the forums. 

     

    WjZkzsa.png

×
×
  • Create New...