Zompies 20 Posted October 21, 2015 I found a quick money making method where you can buy hammers and sell at G.E for a big profit. I don't want the code anymore so here it is http://pastebin.com/xwXD2aKQ Turned 300 gp into 46k Features - Banking - World Hopping - Draws Square Tile On Closest Shop Keeper Problems with script - Attempts to go to any world regardless if your f2p or not or if you don't have total skill level for attempted world (The script will NOT go to High-Risk worlds) Have fun!
Diddy 265 Posted October 21, 2015 World f2phop = getWorlds().getRandomWorld(); f2phop = getWorlds().getRandomWorld(new Filter<World>() { public boolean match(World world) { return world != null && world.isF2P() && !world.isHighRisk(); } }); You are welcome
Dreamlicker 750 Posted October 21, 2015 World f2phop = getWorlds().getRandomWorld(); f2phop = getWorlds().getRandomWorld(new Filter<World>() { public boolean match(World world) { return world != null && world.isF2P() && !world.isHighRisk(); } }); You are welcome World f2pHop = getWorlds().getRandomWorld(w -> w != null && w.isF2P() && !w.isHighRisk()); Lambdas are your best friend
Club 32 Posted October 21, 2015 World f2pHop = getWorlds().getRandomWorld(w -> w != null && w.isF2P() && !w.isHighRisk()); Lambdas are your best friend I dont understand them at all! xD
adamthompy123 0 Posted November 10, 2015 This wont load for me when i put it in the scripts folder D: i dont see it on local, its a .jar also
Dreamlicker 750 Posted November 10, 2015 This wont load for me when i put it in the scripts folder D: i dont see it on local, its a .jar also click "Refresh All" in the script selector
adamthompy123 0 Posted November 10, 2015 click "Refresh All" in the script selector Doesnt seem to show up still, does it have anything to do with the script? do i need to change anything in the pastebin or anything
Lempimlol 0 Posted November 10, 2015 Could this script be outdated or something? I really need this script D: its the perfect method for me i know its simple maybe someone could help me out?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.