Jump to content

Apaec

Scripter III
  • Posts

    11163
  • Joined

  • Last visited

  • Days Won

    91
  • Feedback

    100%

Everything posted by Apaec

  1. Nope, this is just the data to save you going all the way to jad to find them x)
  2. I think you could maybe put this kind of thing on the premium SDN? I'm not sure if it's allowed as it's not really a bot script but it relates to runescape. Perhaps you could give that a shot!
  3. Heya ! There used to be a delay however I got a complaint that it was handing around and so I removed the delay. I think if you have a delay, it will go attack a crab, realise world is too full and will want to hop, however cant because it's in combat. Admittedly it would hop after killing 1 crab, but idk, It seems to be fine as it is for me. I mean alot of people at rock crabs run this script so even if I added a delay, alot of bots would hop at the same time xD If others want this feature as well, I'll implement it. Thanks for letting me know!
  4. Added - enjoy! I thought I already gave you a trial? If you didn't get round to trying it, i've enabled it for another 12 hours starting now.
  5. random 200,300 is fine! I heard gRandom(215,80) is optimum. Also I think 'Mine Rock' is the incorrect string but I could be wrong
  6. Heya, you sure you exported the correct file? I mean that seems odd as you have the manifest and all... You added the buildpath, right? any red lines in the code?
  7. Nvm i was serious but just realised my frield trolled me using inspect element (facepalm) sorry lads
  8. There's a type on our front page under the scripting section My m8 sent me this :p
  9. Added for both of you. Enjoy!
  10. Apaec

    Ingame Cows

    Got it just before you posted but ty mate! :3
  11. How do people make cows appear ingame like some kind of emote Just saw ppl doing it and wondered how ty apaec
  12. Also he coulda helped instead of critisizing other people helping
  13. Well you could use a stringbuilder but probably easier to use a date formatter Date date = new Date(System.currentTimeMillis() - startTime); DateFormat formatter = new SimpleDateFormat("HH:mm:ss"); formatter.setTimeZone(TimeZone.getTimeZone("UTC")); String dateFormatted = formatter.format(date); Where startTime is a variable defined as: long startTime = System.currentTimeMillis(); Hope I helped Apaec Edit: As I was saying before, here's an example of a timeformatter using a stringbuilder: public static String timeFormat(long time) { StringBuilder t = new StringBuilder(); long total_secs = time / 1000L; long total_mins = total_secs / 60L; long total_hrs = total_mins / 60L; long total_days = total_hrs / 24L; int secs = (int) total_secs % 60; int mins = (int) total_mins % 60; int hrs = (int) total_hrs % 24; int days = (int) total_days; if (days < 10) { t.append("0"); } t.append(days).append(":"); if (hrs < 10) { t.append("0"); } t.append(hrs).append(":"); if (mins < 10) { t.append("0"); } t.append(mins).append(":"); if (secs < 10) { t.append("0"); } t.append(secs); return t.toString(); }
  14. sick proggie ! you can probably already afford the script from the profits in that proggie lel. Glad you like it. There is not much I can do about misclicks however as the mouse algo is the bot's but I'll have a long anyways. Gl! apaec
  15. . If you run into any problems do let me know!
  16. Thanks for the kind words and glad you like it! Feel free to leave a positive review on the store to share your experience. apaec
  17. Nice script mate, good to see more scripters for this SDN! But 1 question, how do you know that it 'Bypasses Jagex's camera bot trap'?
  18. You should have asked! I would have made an exception for your VIP/Sponsor etc
×
×
  • Create New...