Jump to content

Gengar

Members
  • Posts

    251
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Gengar

  1. I just have one question, why are you discriminating screamo music? I personally take offence to that seeing as most of my playlists are screamo, I personally think that that should not be a rules and or a reason to be kicked from the session, that is the same discrimination as saying someone is a different race or religion than you. I know that my comment means little to what the OP will give two shits about, but I personally take offence to that.
  2. Alright thanks! I am currently studying more and I sometimes mix things up between java and C++ :P
  3. Sorry lol, I had my headphones turned down at the very beginning, and I am currently in college for java programming so I figured that this would some good practice on the side.
  4. Hey Guys, I was following Swizzbeat's youtube video and the written guide for two example scripts and whenever I put them into the OSBot folder it will not play the script. The mouse cursor will simply sit there and not interact with anything even though I followed his guide perfectly. Can anyone help me? I will post my code below for my cow killer script to see if anyone can help. package CowKillerProject; import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.model.Entity; @ScriptManifest(author = "Gengar", info = "Cow Killer", name = "CowKiller .1", version = 0.1) public class cowkiller extends Script{ final String Cow_Name = "cow"; public void onStart(){ log("Start at cows!"); } public int onLoop() throws InterruptedException { Entity cow = closestAttackableNPCForName("Cow_Name"); if (cow !=null){ if (!client.getMyPlayer().isUnderAttack()) if (cow.isVisible()){ cow.interact("Attack"); }else{ client.moveCameraToEntity(cow); } } return 50; } public void onExit(){ log("Thank you for using my script!"); } }
  5. Hurray! Thanks a lot I hope your tutorial will explain how to write scripts for osbot, I would really like to try and make a fletching script.
×
×
  • Create New...