Jump to content

erenjwz

Members
  • Posts

    101
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by erenjwz

  1. Hello, Wanted to start scripting again but got a problem. getting this error : https://imgur.com/a/Bm0z2oL I already added that JAr path. Any help? Thnks
  2. Dude I Got BANNED.. I used your 'Premium' script 2 days ago and got my account disabled. How do I know? Here are the facts: Script works, but is still slow and robotic. Used your script for 5,5 hours Did not use any other script (longer than 14 min) in the last 4 days ....Still not 100% sure You should look into your script code Any help i can get? PM me plz
  3. Eren's Fish Cooker V1.3 Script aimed at: Free players who want some quick and easy cooking XP Location: Al Kharid Fishes: Shrimp Anchovies Trout Salmon Tuna Lobster Swordfish (No p2p fish since its better off cooking them at Rouges den) Speed: Cooking 930 fish per/hour My progress: Began: at 65 cooking 28 Oktober 85 Cooking 6 November: 90 cooking Aiming for 99 Progress of the bot: Download: RSCooker.jar Proof for edge-gamers ?
  4. It's night here wanna finish this but also want to sleep, brain is half working. Can you help?
  5. Hi, Had been gone for 2 yearsl lost my Scripter 2 status / :p I'm still rusty. But okay so one of my script doesnt work anymore since the localwalker has changed I tried: private Position[] path1 = { new Position(random(3274, 3278), random(3176, 3178), 0 ) }; to private List path1 = (random(3274, 3278), random(3176, 3178), 0 ); But i don't get how Lists, I think I'm doing something wrong, can somebody push me in the right directions. Much Thanks...
  6. Sounds good, if you have any more ideas i would love to add it all in.
  7. It's up, try it out. Feedback is much appreciated
  8. Eren's Constructor(light) v1.1 Simple Construction script (Full version coming soon) Download link -> http://www.mediafire.com/download/07myopqshka6yqd/ErensConstructions.jar Info: This script is very basic and the beginning of something even bigger. Currently makes: Chairs 1 - 4 Bookcases 4 - infinitly more soon to come Requirements: Iron nails Planks (normal) 1 saw (in inventory) 1 hammer (in inventory) House teletabs or Air, Earth and Law runes Games Necklace Important: Have your inventory look like this: Script will only withdraw planks and games necklaces Script will stop if no more Planks or games necklaces in bank Script will stop if no hammer, saw, nails, games necklace or teletabs/runes in inventory Bugs or ideas? PM me and i'll respond as soon as possibly V1.1 Added Paint Overall improvement Always open for feedback
  9. i have changed my JDK java from 1.7 to 1.8 but it seems the problem is still ocuring in eclipse would you mind helping me : - ) (or pushing me in the right direction)
  10. Thanks for the code but getting error on the ( -> ) , osbot syntax error on "-" -- expected. Does "o" supposed have value? or do i have to import something? (Srry, I'm not to familiar with these types of complicated code in OSbot)
  11. How do I get all Objects in a range? Lets say i wanna get all Bird_snare object in a range of 10 what whould be the best way to do that?
  12. hi guys, I'm currently making a (simple) free 9-30 hunter script, but a problem occured when another player arrived and started placing his Bird snares. The bot didn't know the differnce between his placed and my placed bird snares. I tried looking with the "objects" to find a difference, but there doesn't seem to be any. (Left one: mine) (Right one : other player) Does anyone know how i can fix this problem? Any tipe are appreciated ! P.S. (If there isn't a solution I'm going to remember to bird_snare by saving the coordinates, to know which one it is but it seemed to much of a hassle).
  13. erenjwz

    RS Update

    takes around 2,3, maybe 4, maybe 5
  14. Link to the reqeust: http://osbot.org/forum/topic/83941-sdn-account-request/ Btw the 15 views are probably mine since i checked on it almost every day for 2 weeks Aah alright thank you, much appreciated
  15. Hi guys, made a cool little script i want to release for everyone to use for free, But I'm having problems getting a response on my SDN REQEUST. After 1 and a half week i still haven't gotten a response, am i doing something wrong? All responses are welcome!
  16. I have 2 classes: one "main.java" and the other "Gui.java". i want to start running the code from Gui when main.java starts but I'm getting errors (it's probably one line of code that's wrong). Tried everything also is this my first JFrame code if somone could advise me on how i could approach it better; (main.java) public class main extends Script { private Gui Kies = new Gui(); ... Kies.getKeuze(); (Jfarme.java) import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JComboBox; import javax.swing.JFrame; public class Gui extends JFrame implements ActionListener { private static final long serialVersionUID = 1L; private String[] fish = {"Trout", "Tuna", "Lobster"}; private String Keuze; private JComboBox<String> Dropdown = new JComboBox<String>(); public static void main(String[] args) { new Gui().setVisible(true); } public Gui() { super("Hylian selector"); setSize(380, 250); setResizable(false); setDefaultCloseOperation(EXIT_ON_CLOSE); setLayout(new FlowLayout()); JButton button = new JButton("Select"); button.addActionListener(this); for(int i = 0; i < 3; i++){ Dropdown.addItem(fish); } add(button); add(Dropdown); } void Derp(){ System.out.println("Derp"); } @Override public void actionPerformed(ActionEvent e) { this.Keuze = (String) (Dropdown.getSelectedItem()); System.out.println(this.Keuze); dispose(); } public String getKeuze() { return this.Keuze; } }
×
×
  • Create New...