Skip to content

Instantly share code, notes, and snippets.

@ChrisBPB
Created March 28, 2020 11:55
Show Gist options
  • Save ChrisBPB/a8005781c7cbc956528c86fc13ef4f6e to your computer and use it in GitHub Desktop.
Save ChrisBPB/a8005781c7cbc956528c86fc13ef4f6e to your computer and use it in GitHub Desktop.
package tutorial;
import org.powerbot.script.PollingScript;
import org.powerbot.script.Script;
import org.powerbot.script.rt4.ClientContext;
@Script.Manifest(name="Hello World", description="Tutorial", properties="client=4; author=Chris; topic=999;")
public class HelloWorld extends PollingScript<ClientContext>
{
@Override
public void start() {
System.out.println("Hello World");
}
@Override
public void poll() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment