Jump to content

KEVzilla

Members
  • Posts

    175
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by KEVzilla

  1. Nice job, but I do think most use builders though.
  2. Thanks! For combat Strength and HP. And the others are Cooking, Fishing and Thieving Thank you very much lad! Cheers m8 Noted, thanks. Heh, thanks man.
  3. Alright, thanks man. No need to call the super btw. Can just do #getGroundItems().
  4. Yeah, as I said in my reply that I'm not familiar with the API. And I just rewrote his broken script to work.
  5. Does this help you buddy? @ScriptManifest(author = "FFTL", info = "First", name = "main", version = 1.0, logo = "") public class FFTLFeathers extends Script { private State state; public enum State { LOOTING, WALKING, FILLTHISINMAN } @Override public int onLoop() throws InterruptedException { getState(); switch (state) { case LOOTING: lootFeather(); break; } return 750; } private void getState() { final GroundItem feather = closestGroundItemForName("Feather"); if (feather != null) { if (feather.isVisible()) { state = State.LOOTING; } } } public void lootFeather() { GroundItem feather = closestGroundItemForName("Feather"); if (feather != null) feather.interact("Take"); } private GroundItem closestGroundItemForName(final String name) { final GroundItems groundItems = new GroundItems(); final List<GroundItem> list = groundItems.filter(new NameFilter<>(name)); for (GroundItem g : list) { if (g.isOnScreen() && g.exists()) { //You could implement a null-check here return g; } } return null; } } Edit: not so familiar with the API yet, let me know if there are better ways lol.
  6. Started today my Deadman's account and will be updating this thread accordingly.. Even though I died like 3 times, lol. 1-12-2015:
  7. KEVzilla

    Sup.

    Yah, I know got members lol. Cheers lad. Will be careful =P, thanks man.
  8. KEVzilla

    Sup.

    What's good boys? Been a while since I have touched OSRS and just decided to come back and check out deadman mode. And try to bot it for le fast EXP's. ..Other than that I'm 21 years old, Dutch, certified Java programmer (4 years solid experience, junior rn) and attending uni. Lata.
×
×
  • Create New...