Jump to content

lovelypker

Members
  • Posts

    37
  • Joined

  • Last visited

  • Feedback

    100%

Profile Information

  • Gender
    Male

lovelypker's Achievements

Bronze Poster

Bronze Poster (2/10)

2

Reputation

  1. Bought package 2. Awesome vps and great guy to deal with! Helped me out with all my questions and set it up perfectly for me, even setting it up to match my special request!! Will be buying from him again!
  2. Is there a way to use the old world hopper? I think jagex may be tracking this. I have my own script which hops to buy an item from the store and when it instant hops the shop stock is always set to 1, but when I pause the script, hop back to the same world manually the stock is up to the maximum amount. Either jagex is fucking up or they are detecting the instant hoping.
  3. Thought it was a chain ban at first when my accounts all got logged out lol
  4. Thanks for your help! I'll test this out and see how it goes. Ohh ok, that makes a lot of sense actually. I think your method sounds very logical, I'll try it out.
  5. Hello. I've tried to implement a systematic world hopping feature into my script that will follow a list of worlds. It starts off fine but then after a few hops it will just hop back and forth between two worlds, occasionally hopping to another world on the list. Sometimes it will hop, log in, and then log right back out and hop again. Here is my world hopping code: Ohh and it tends to hop between 381 and 394 mainly. public int[] worlds = {308, 316, 381, 382, 383, 384, 393, 394}; public int i; for(i = 1; i < 8;) { worldHopper.hop(worlds[i]); i++; new ConditionalSleep(1000) { @Override public boolean condition() throws InterruptedException { return myPlayer().isVisible(); } }.sleep(); }
  6. I've been suicide goldfarming near the area you mentioned for the past couple of days in f2p and no ban yet. I've also observed on every world there are about 5-10 bots with similar names running from the rimmington mine to the bank deposit box
  7. I'd like to thank you both for your help! Ended up figuring out what I was doing wrong with casting so I got it to find the central point but these are nice methods to know as well
  8. I tried that but it wouldn't use the item with object. After i had selected the item my code was bankbox.interact("Use Bones ->"); but that did nothing I tried casting but that's when I got the error that double cannot be dereferenced. Maybe I made a mistake.
  9. I've tried this however the center x and y are doubles and when I try to convert them into integers I get an error that double cannot be dereferenced.
  10. Hey guys I'm working on my first script and I'd like to use an inventory item on an RS object. I couldn't find anything in the API on how to do this so I figured all I needed to do was select the item in the inventory and then click on the RS object to use them together. In order to do this I am using mouse#move but can't figure out how to get the central point (or any point for that matter) of the entity. I know this is a very basic question but it's my first go so any help would be appreciated!
  11. I'm having some troubles adding this. After I download and extract do I move the .class files to my script folder? Or is there supposed to be a .jar file? Sorry I'm a noob
×
×
  • Create New...