Jump to content

Need a script


mathaaa
 Share

Recommended Posts

Don't know why you would need that for but here you go

Also as said above post in the request section instead

 

import xobot.script.ActiveScript;
import xobot.script.Manifest;
import xobot.script.methods.Game;

@Manifest(authors = { "Noiro" }, name = "LoginScript")

public class LoginScript extends ActiveScript {
    
    @Override
    public int loop() {
    	if (!Game.isLoggedIn()) {
    		Game.Login("USERNAME", "PASSWORD", true);
    	}
    	return 1000;
    }

}

 

Link to comment
Share on other sites

  • Neo locked this topic
Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...