Cinct Posted June 11, 2014 Posted June 11, 2014 Well, this is my first post here on osbot, and also my somewhat first real signature. Opinions? Also Encircled Scripters isn't really a thing, just needed something to put on there.
Pseudo Posted June 11, 2014 Posted June 11, 2014 (edited) I like it, it is as you say, clean. Please look into package naming conventions though, hehe. Edited June 11, 2014 by Pseudo 1
Cinct Posted June 11, 2014 Author Posted June 11, 2014 (edited) I like it, it is as you say, clean. Please look into package naming conventions though, hehe. You're right, I should make code exactly correct when it's in a picture! Well for your first time its amazing. Thanks, I've messed around in photoshop for a bit though. Looks dope. Nice job. You're dope. It looks good man I appreciate the feedback guys, thanks. Edited June 11, 2014 by Cinct
Jack Posted June 11, 2014 Posted June 11, 2014 (edited) package org.osbot.encircledscripts; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.api.model.Player; import org.osbot.rs07.api.ui.Message; @ScriptManifest(author = "Encircled", name = "Encircled AIO", version = 2.1) public class ScriptBase extends Script { long startTime; int mouseX,mouseY; public void onStart() { startTime = System.currentTimeMillis(); getBot().setHumanInputEnabled(false); } Use code like this ^ Edited June 11, 2014 by Jack