sigex Posted June 19, 2013 Posted June 19, 2013 Doesn't show up in the client, help. I'm new, but i know Java
Bradsta Posted June 20, 2013 Posted June 20, 2013 Looks great man! Not sure if this will help with the worldHop feature but I've outlined two arrays of the worlds one including F2P, and one not including F2P. If you wish you could make a third list, and eliminate World 301 & 302 since those are almost always the only possible full ones. public final int[] ALL_WORLDS_EXCLUDE_F2P = { 301, 302, 303, 304, 305, 309, 310, 311, 312, 313, 314, 318, 319, 320, 321, 322, 325, 326, 327, 328, 329, 330, 333, 334, 335, 336, 337, 338, 341, 342, 343, 344, 345, 346, 349, 350, 351, 352, 353, 354, 357, 358, 359, 360, 361, 362, 365, 366, 367, 368, 369, 370, 373, 374, 375, 376, 377, 378 }; public final int[] ALL_WORLDS_INCLUDE_F2P = { 301, 302, 303, 304, 305, 306, 309, 310, 311, 312, 313, 314, 317, 318, 319, 320, 321, 322, 325, 326, 327, 328, 329, 330, 333, 334, 335, 336, 337, 338, 341, 342, 343, 344, 345, 346, 349, 350, 351, 352, 353, 354, 357, 358, 359, 360, 361, 362, 365, 366, 367, 368, 369, 370, 373, 374, 375, 376, 377, 378 }; public int getRandomWorld(int[] worldList) { return worldList[random(0, worldList.length)]; } Also I tried using wordHopper.hop() and it logs me out successfully, but doesn't proceed any further. Am I using the method wrong, or is it not fully working?
Nicholas Posted June 21, 2013 Posted June 21, 2013 cheers, random finder bot makers will apreciate this
DJay Posted July 29, 2013 Posted July 29, 2013 Looks great man! Not sure if this will help with the worldHop feature but I've outlined two arrays of the worlds one including F2P, and one not including F2P. If you wish you could make a third list, and eliminate World 301 & 302 since those are almost always the only possible full ones. public final int[] ALL_WORLDS_EXCLUDE_F2P = { 301, 302, 303, 304, 305, 309, 310, 311, 312, 313, 314, 318, 319, 320, 321, 322, 325, 326, 327, 328, 329, 330, 333, 334, 335, 336, 337, 338, 341, 342, 343, 344, 345, 346, 349, 350, 351, 352, 353, 354, 357, 358, 359, 360, 361, 362, 365, 366, 367, 368, 369, 370, 373, 374, 375, 376, 377, 378 }; public final int[] ALL_WORLDS_INCLUDE_F2P = { 301, 302, 303, 304, 305, 306, 309, 310, 311, 312, 313, 314, 317, 318, 319, 320, 321, 322, 325, 326, 327, 328, 329, 330, 333, 334, 335, 336, 337, 338, 341, 342, 343, 344, 345, 346, 349, 350, 351, 352, 353, 354, 357, 358, 359, 360, 361, 362, 365, 366, 367, 368, 369, 370, 373, 374, 375, 376, 377, 378 }; public int getRandomWorld(int[] worldList) { return worldList[random(0, worldList.length)]; } Also I tried using wordHopper.hop() and it logs me out successfully, but doesn't proceed any further. Am I using the method wrong, or is it not fully working? Will after update :p
Jaybro02049494 Posted August 11, 2013 Posted August 11, 2013 nice, i got stuck alot on world hopping glad its fixed