Proto Posted November 22, 2020 Share Posted November 22, 2020 (edited) Text version: Quote Launch the client at least once to download the dependencies Create new project using JDK 1.8. Add dependencies - File -> Project Structure -> Libraries -> add epicbot-api-1.0.jar Select build path - File -> Project Structure -> Modules -> Paths -> Choose 'Use module compile output path' and select C:\Users\USERNAME\EpicBot\Scripts\SCRIPTNAME (If scripts folder isn't there, create it) Copy and paste basic skeleton from below to your main java class import com.epicbot.api.shared.GameType; import com.epicbot.api.shared.script.LoopScript; import com.epicbot.api.shared.script.ScriptManifest; @ScriptManifest(name = "ProScript", gameType = GameType.OS) public class main extends LoopScript { @Override protected int loop() { return 0; } @Override public boolean onStart(String... strings) { return false; } } Tip: You can press CTRL + O to show all implement/override methods in your main class. Edited November 22, 2020 by Proto 5 Quote Link to post Share on other sites
Revolt Posted November 22, 2020 Share Posted November 22, 2020 Thanks for this, now i can code some koality scripts 1 Quote Link to post Share on other sites
Sellout Posted November 22, 2020 Share Posted November 22, 2020 hella sexy ❤️ 1 Quote Link to post Share on other sites
CSGoslave Posted November 26, 2020 Share Posted November 26, 2020 That smoooth sexy Proto voice 💦 Great vid 1 Quote Link to post Share on other sites
Global Moderators Euan Posted November 27, 2020 Global Moderators Share Posted November 27, 2020 PrtoScript Quote Link to post Share on other sites
Proto Posted November 27, 2020 Author Share Posted November 27, 2020 15 minutes ago, Euan said: PrtoScript PrtoScript Quote Link to post Share on other sites
rlstric1 Posted January 27 Share Posted January 27 Where can I download the api.jar? Quote Link to post Share on other sites
Global Moderators Koala Posted January 28 Global Moderators Share Posted January 28 2 hours ago, rlstric1 said: Where can I download the api.jar? It's in your dependencies folder. On windows, that's C:/Users/<user>/EpicBot/dependencies Quote Link to post Share on other sites
rlstric1 Posted January 28 Share Posted January 28 Yeah I wish I could delete that post because I eventually found it. Thanks for answering though Quote Link to post Share on other sites
nukingking Posted March 21 Share Posted March 21 (edited) nvm got it Edited March 23 by nukingking fixed Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.