Jump to content

Anaesthetic

Members
  • Posts

    1007
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Anaesthetic

  1. Hmm okay thanks a lot. You need str levels for barb fishing
  2. Actually follow up on the promised giveaway... Would you rather shove a glass tube up your penishole and repeatedly smash it with a hammer, or castrate yourself with blunt rocks?
  3. Why not? It saves the staff time and it couldn't possibly do any harm. This. I fee like ANYONE should have ability to lock own threads and change own thread titles. No harm can be done, and it saves mods time and effort for more important matters. Support. I don't see any harm in people locking their own threads.
  4. Tru dat. RS is turning into a pay-to-win game, and I don't that this forums wants to turn into a pay to get moderator forums. Juuuuust saying, ~~TF~~
  5. Would anyone be willing to make a 1-99 fishing guide for Old School Runescape? It would be much appreciated I think. Cheers, ~~TF~~
  6. Agreed, no support for this. I don't want to see this implemented anytime soon
  7. IF you would like to collaborate on making scripts, feel free to PM me, i'll give you my skype. I am currently a newish scripter who is starting making scripts. I am currently working on a basic fisher, and I would love to collaborate with someone on the script! Thanks, ~~TF~~
  8. Damn. Have you seen Iceland's president? Now there is one chill guy.
  9. Interesting. Stupid government... interfering with our private affairs and whatnot. Stupid NSA and sh*t.
  10. sweeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeet
  11. There is function to get the Nearest NPC, I'm pretty sure.
  12. You must be new to java, you can change the class name at any time as long as you change the file name. I am new to Java, that I right, but I do know that you can change the class name, I just haven't gotten around to it. I just wanted to clarify so that people weren't confused
  13. BTW the main class is called woodcutter because it was originally supposed to be a woodcutter, but I changed my mind.
  14. Hi all, this is my first project that I am working on here. It is going to be a simple lobster fisher than fish lobbies at Catherby. I am wondering if any of you experienced programmers out there would like to maybe take a look at it and give me any feedback? I have not implemented banking yet, but this is just simply the clicking on the fishing spots. Here it is, please feel free to give constructive feedback and if there are any errors, if you could point them out, that would be great. thanks, package Woodcutter;import java.awt.Graphics;import org.osbot.script.Script;import org.osbot.script.ScriptManifest;import org.osbot.script.rs2.model.Entity;import org.osbot.script.rs2.ui.Inventory;@ScriptManifest(author = "TF", info = "Fishes lobsters in the fishing guild", name = "Woodcutter", version = 0.1)public class Woodcutter extends Script{ final String FISHINGSPOT_NAME = "Fishing spot"; public void onExit(){ //code to be exectuted at the end } public void onStart(){ //code used at start } public int onLoop() throws InterruptedException{ //loops the code Inventory invent = client.getInventory(); //defines inventory and gets it Player player = client.getMyPlayer(); if(client.getInventory().isFull()){ //chop Entity fishSpot = closestObjectForName(FISHINGSPOT_NAME); if(fishSpot != null){ if(fishSpot.isVisible()) if(player.isAnimating()) fishSpot.interact("Cage"); sleep(random(700,800)); }else{ client.moveCameraToEntity(fishSpot); } } else{ //bank } return 50; } private void sleep(int i, int j) { // TODO Auto-generated method stub } public void onPaint(Graphics g){ //inports the paint }}~~TF~~
  15. Anaesthetic

    Veteran

    Although this isn't really going to affect me, I do support it
  16. I know that p****bot offers name changes
  17. I am a new programmer that is looking to test my skills. I am willing to troubleshoot and beta test and help with the scripts. Add me on skype: bemidji98
  18. Hello all, I am an avid runescape player (mostly RS3, but now I'm getting more into 07) and I am wondering if there are any good tutorials for getting to know the OSBOT API and how to script using OSBOT. I have minimal experience with Java, and I'm wondering if you guys know of any internet tutorials that are helpful/insightful, or you guys know of anyone who is willing to teach me. Thanks a lot! ~~Turd Ferguson~~
×
×
  • Create New...