Allowkid Posted April 26, 2015 Share Posted April 26, 2015 Hey guuys, no matter how much I try, I can't seem to get the worlds hopper to work... I have tried everything from worlds.hop(381); to this import org.osbot.rs07.api.filter.Filter; import org.osbot.rs07.api.ui.World; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "Mike", info = "Muler", logo = "", name = "Mulaaaaa", version = 1.1) public class EdgeMuler extends Script{ @Override public void onStart() throws InterruptedException { } @Override public int onLoop() throws InterruptedException { //getWorlds().hop((World w) -> { return w.getId() == 381; }); worlds.hop(new Filter<World>(){ public boolean match(World w){ return !w.isMembers(); } }); log("Hopped"); return(5000); } } someone please help? Quote Link to comment Share on other sites More sharing options...
Apaec Posted April 26, 2015 Share Posted April 26, 2015 try worlds.hopToP2PWorld() Quote Link to comment Share on other sites More sharing options...
Allowkid Posted April 26, 2015 Author Share Posted April 26, 2015 try worlds.hopToP2PWorld() doesn't work either Quote Link to comment Share on other sites More sharing options...
Alek Posted April 26, 2015 Share Posted April 26, 2015 Doesn't work is not very descriptive. Are you logged in our out when you try executing? Quote Link to comment Share on other sites More sharing options...
Allowkid Posted April 26, 2015 Author Share Posted April 26, 2015 Doesn't work is not very descriptive. Are you logged in our out when you try executing? Logged in and it just dosnt do anything Quote Link to comment Share on other sites More sharing options...
Tom Posted April 26, 2015 Share Posted April 26, 2015 Any errors in the log? Quote Link to comment Share on other sites More sharing options...
Allowkid Posted April 26, 2015 Author Share Posted April 26, 2015 Any errors in the log? Nope it doesnt say anything Quote Link to comment Share on other sites More sharing options...