Username and Password are the same on osbot client and forums. And if your password contains special chars, i.e !@#$%^&*() you should change your password so it doesnt contain that.
g.drawString("" + xpGained, 1, 1);
The numbers in that code mean the x, y position of the paint, you need to change it to somethin like 1,15 to draw it correctly. Because it draws text from the bottom up.
class GUI{
MethodProvider m;
public GUI(MethodProvider m){
this.m = m;
}
//example method
private Position getPos(){
return m.myPlayer().getPosition();
}
}
class YourScript extends Script{
GUI gui = new GUI(this);
public void onStart(){
gui.setVisible(true);
}
}
Something like that should work
Alright so spotify is doing this thingy mabob.
You can create a new account, get the 7 week trial and they will give you offer for 0.99$ 3 months of spotify premium.
If you do that, just cancel the subscription so you wont be charged 7$ after 3 months
pls like if dis helped u
if(!getPrayer().isActivated(PrayerButton.PIETY)){
getPrayer().set(PrayerButton.PIETY, true);
}else{
getPrayer().set(PrayerButton.PIETY, false);
}
This is just the basics, modify irpt how you like