Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Bug WorldHop

Joined
Nov 4, 2016
Messages
47
Hello,

system info: ------------------ System Information ------------------ Time of this r - Pastebin.com

Java JRE and JDK are v8u121

Manifest:
Code:
<manifest>
    <main-class>com.runemate.warrior55.whop.Main</main-class>
    <name>whop</name>
    <description>whop</description>
    <version>1.0.0</version>
    <compatibility>
        <game-type>RS3</game-type>
        <game-type>OSRS</game-type>
    </compatibility>
    <categories>
        <category>MONEYMAKING</category>
    </categories>
</manifest>

Code:
Code:
package com.runemate.warrior55.whop;

import com.runemate.game.api.hybrid.local.hud.interfaces.WorldHop;
import com.runemate.game.api.script.framework.LoopingBot;

public class Main extends LoopingBot {
    @Override
    public void onLoop() {
        System.out.println(WorldHop.hopTo(2));
    }
}

Problem:
It doesn't hop to w2. It opens options menu:
whop1.png
Then opens world select:
whop2.png
Then opens options menu again, then world select and so on.

NOTE: works on other pc and will probably work for you.

EDIT: also problem with WorldSelect.
I start the following code with world select menu open:
Code:
package com.runemate.warrior55.whop;

import com.runemate.game.api.hybrid.GameEvents;
import com.runemate.game.api.hybrid.local.hud.interfaces.WorldHop;
import com.runemate.game.api.hybrid.local.hud.interfaces.WorldSelect;
import com.runemate.game.api.script.framework.LoopingBot;

public class Main extends LoopingBot {
    @Override
    public void onLoop() {
        System.out.println(/*WorldHop.hopTo(2)*/WorldSelect.select(2));
    }
   
    @Override
    public void onStart(String... args) {
        GameEvents.Universal.LOBBY_HANDLER.disable();
    }
}
Always prints false. I saw world 2 highlighted (blue color), but not clicked to select it. When I manually clicked to select it (became dark blue color), it started to print true. Then I manually clicked another world and again same problem (getting on world, but not clicking it) with printing false.

@Party please look into this.
 
Last edited:
Top