Jump to content

Ragnar Lothbrok

Members
  • Posts

    210
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    100%

Posts posted by Ragnar Lothbrok

  1. 1 minute ago, Simple79001 said:

    Of course it's possible, its the same kind of principle with mules i'm guessing, 

    Slim chance of the ban hammer coming down on your main but there's definitely opportunity for it to happen

     

    I accept there's always that level of risk and no one really knows.

    More curious to hear how other people got on if they have tried this. i.e did they get a ban, how long did they do it for ban free ect?

    Need to weigh up that risk/reward factory xD

  2. Tempted to set-up 3 or 4 bots to run pure ess to my main for faster rc xp.

    Curious if anyone has any experience with this, i.e is there any know bans on the account that was not botted for this?

    I expect that my bots will will be ban - I'm just worried about getting chained on my main.

  3. Would it be possible to take a snapshot of your current bank layout to save as a preset.

    I find doing my bank myself more to my taste - however if I could then save this as a preset to load up at a future date to save myself redoing that would be sick

  4. I'd like to know the current status of this account, has it been recovered and now in use or even resold?

    If the account can't be returned then I'd like the full 30m 07 refunded.

    The account was leveled via nmz to around flat 70's but don't exactly have any proof of that.

  5. Disputed member: @gearing

    Thread Link:

    No thread - sale was sorted via discord. However see my previous resolved dispute as it is the same account: 

    Explanation:

    Back from a long break and tried to log into an account previously supplied by gearing.

    Password incorrect so try to recover - the following email is attached to the account now: b*********@g****.com

    This email is inline with the email it was previously reset to in the last dispute and one he mentiond on discord:

    clqg6TE.png

    Evidence: ^^

  6. On 4/4/2020 at 7:09 PM, Rob Owen said:

    Anyway i can get hold of a default setup? I've not opened it yet but can already tell from screenshots ill be too lazy to build it all out

    I'd also appreciate this - my lazy ass can't be bothered!

    • Like 1
  7. 30 minutes ago, Durky said:
    
      
    getInventory().interact(getInventory().getSlotForNameThatContains(Item1Name), "Use");
    
    getInventory().interact(28, "Use"); // Slotid = 11
    
    if (getInventory().contains(item1Name) && getInventory().contains(item2Name)) {
    					getInventory().getItem(item1Name).interact("Use");
    					sleep(250); // slight delay to allow the script to select it, should be a conditional for "lagg" etc. 
    					getInventory().getItem(item2Name).interact("Use");
    
    

     

    3 options above.

    Now if you want to drag the item and switch it with something else you're going to need to use the 

    
    continualClick(MouseDestination destination, org.osbot.rs07.utility.Condition condition)

    Please perform checks on your methods:

    if (getInventory().contains(ITEM1) && getInventory().contains(ITEM2)) {
        if (!getInventory().isItemSelected()) {
         	// Select Item then sleep until an item is selected
        } else {
         	// Use Items together then sleep until no item is selected
        }
    }

    I just wrote this up so I haven't tested this or verified that the method names are correct but you should get the gist.

    • Like 1
  8. 8 minutes ago, ThatGamerBlue said:

    Some of the spaces are \u00a0 instead of a space, try this:

    
    p.getName().toLowerCase().replaceAll("\u00a0", " ").equals("other player")

     

    Why would some names be like this and not others - doesn't make much sense but I'll give it a go thanks!

  9. 4 hours ago, Zach said:

    What are you using this for? It looks like it's been disabled and we haven't hooked it for public use since March 2017. Though we probably should remove it.

    I'm not using it - IDE pre-filled the method name for me to this by mistake! Just thought I'd let yous know though just incase.

  10. getPlayers().filter(p -> p.getName().toLowerCase().equals("nospace"));

    This works fine - the player if found if they're nearby.

    getPlayers().filter(p -> p.getName().toLowerCase().equals("name with space"));

    This seems to work randomly - some names work and others don't. Does anyone have any idea why that could be?

×
×
  • Create New...