You got lucky, i had 2 banned this morning. your offense is macroing minor. I am assuming if you get a major then you will be insta perm banned. and wont get ur accounts back.
So I had something more complicated made up, but nothing was showing up so I made this real quick just to check and it doesn't show up when I start the script... What am I doing wrong?
public void onPaint(Graphics g1) {
Graphics2D g = (Graphics2D)g1;
g.drawString("GP/HR:", 364, 376);
g.setColor(Color.WHITE);
g.setFont(new Font("Ariel", Font.PLAIN,14));
g.drawString("Gold made: ", 25, 50);
}
is the F2P world hopping bugged out or is something wrong? It will go to the world switcher and sometimes just not finish clicking the world. Like it will go to it and all, just not click it.
Thank you for the help really appreciate it. I hate being spoon fed so could you tell me why my code didn't work. Was it because i didnt check if i was in dialogue in the beginning? minus the shit code of course. XD
I am sorry for being a complete noob, but how would I use that.
I tried entering it like this.
if(npc != null)
if(npc.isOnScreen()){
npc.interact("Talk-to");
if(dialogues.isPendingContinuation() || dialogues.clickContinue()
|| dialogues.completeDialogue("option 1"))
return random(300,600);
}else{
if (!npc.isOnScreen());
localWalker.walk(npc);
}
But it's not working.
What is the best way to talk to NPC's if there are a few click to continue buttons and a few multiple choices... I have so far used widgets for this, but my script sometimes stops randomly. I want this to be flawless.