Everything posted by aeondenied
-
Tool for mapping cord arrays
forgot to bookmark it. cant find it now.
-
[Hiring] Questers, Minigame, Powerleveling Workers
Hi all looking to expand my services and to do so require a bigger taskforce so I am hiring! Areas of hire : Powerleveling,Questing,Minigames. You will have to deposit 15M oldschool RSGP. You are required to have a clean reputation across other sites. You cannot be banned on any other sites, for whatever reason. You must be able to use Skype to discuss orders. (Discord is acceptable) You must speak English. Your deposit will determine the type of jobs you perform. Skype Application form : Have you read & agreed to my ToS*? : Do you agree to discuss about the deposit? : What is your Skype ? : Have you added my Skype?: What are you applying for? (Powerleveller/Quester/Minigames) : Do you have any experience with a service? : TOS: 1. You cannot use any form of botting or auto clicking whilst working for me, everything has to be HAND DONE (unless otherwise agreed by the client) 2. If you disrespect me or any of your colleague workers you forfeit your deposit. 3. You will never scam in any situation. If you do you forfeit your deposit and will face consequences. 4. Orders always have to go through me. 5. You can advertise but always put my Skype below. 6. Any order you take must be completed. 7. You must notify me when you're gonna be away for a while. 8. You are not allowed to take any payment from customers on your own. Doing so will make you responsible for it and can lead to a kick from the service. 9. You must respond on Skype while logged on a client's account. 10. Whilst working on powerleveling requests you must provide teamviewer access long as u are logged in on the account.
-
how would you trade between two bots
how would you trade between two bots?
-
help a noob
- idea
I have an idea hesitant to invest time into it but here it goes, i would use this client to display and give information to feed into a python script which would read statuses of the player using the debug box and based on those things would have action. but the trouble is do you get banned for just using the client or running scripts? lack of information on this makes me hesitant to waste time with the attempt.- 「 RuneScapeServices 」✨ Hiring Workers & Managers!✨ ⚔️ Powerlevelers ⚔️ ☘️ Questers ☘️ 💥 Account Builders 💥
Have you read & agreed to my ToS*? : YWS Do you agree to discuss about the deposit? :Yes What is your Skype ? : joebozz95 What are you applying for? (Powerleveller/Quester/Minigames) :ALL Do you have any experience with a service? :yes used to for omni If yes, are you willing to supply proof in PM / Skype? :sure- Hokage's Quests and Outfit shop
jungle potion and tai aeon- Khal AIO RuneCrafter
trial for this pls lol- questing/skilling
how much would it be- questing/skilling
65rng-80 39 mage 80 grand tree/tree gnome village- Aeon's Questing & Skilling services
1. You may not log into the account during a service unless you have permission from the owner of the service, doing so will result in the termination of the service with NO Refund. 2. You MUST NOT change the details of the account until the service has been completed, doing so will result in a void service with NO Refund. 3. If there are any items required for the service, it is between you and the service owner to come to an agreement on who covers them 4. You MUST change your password after the service is completed 5. If you have any substantial wealth on the account, it is your responsibility to protect it (Either Bank Pin/Transfer Trade) 6. Once the service is complete you must leave Feedback for the relevant parties involved 7. You MUST Post on the service thread to acknowledge their individual T.O.S and start the service Contact me via skype at AeonDenied- Chatbot snippet
it's a stretch but take a chat log from a shout box and have to bots and have them play it against each other inbetween states- trying to make a 4tick fishing script.
The idea is to get better exp so i can bot for less hours with better results since the bot has the capablities to do it just have to get the timing right and i trying to make it go into crafting when 1 trout or same enters the inv and after it comes out of crafting drop the one trout. the timing as far as sleep goes is going to be a bitch and ping is going to play apart in this i am just frustrated atm. public class main extends Script { @[member='Override'] public void onStart() { } @[member='Override'] public int onLoop() throws InterruptedException { switch (getState()) { case FISH: fishFly(); break; case CRAFT: craftLeather(); break; } return random(20, 42); } private void fish() throws InterruptedException { { if(!this.myPlayer().isAnimating() && this.inventory.contains(new String[]{"Fly fishing rod", "Feather"})) { NPC fishingSpot = (NPC)this.npcs.closest(true, new String[]{"Fishing Spot"}); if(fishingSpot != null) { this.status = "Catching Fish"; fishingSpot.interact(new String[]{"Lure"}); } else { } } private void craftLeather() throws InterruptedException { inventory.interact("Use", "Leather"); sleep(random(20, 20)); inventory.interact("Use", "Needle"); sleep(random(80, 90)); getWidgets().get(542, 103).interact("Armour"); sleep(random(45, 92)); } @[member='Override'] public void onExit() { } private enum State { FISH, CRAFT; }; private State getState() { if(inventory.contains("Trout"),("Salmon")) return State.CRAFT; return State.FISH; } } }- Need some help with my deposit code
- shitcowpicker
import java.util.List; import org.osbot.rs07.api.Bank; import org.osbot.rs07.api.GroundItems; import org.osbot.rs07.api.Inventory; import org.osbot.rs07.api.Skills; import org.osbot.rs07.api.Walking; import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.map.Position; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.model.GroundItem; import org.osbot.rs07.api.model.Player; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; @ScriptManifest(name="shitcowpicker", author="aeondenied", logo="", version=0.0, info="") public class shitcowpicker extends Script { public static Area wildy = new Area(3260, 3258, 3256, 3287); String[] Hide = new String[]{"Cowhide"}; private long startTime; public int onLoop() throws InterruptedException { boolean breaker = false; if (!this.inventory.isFull() && this.skills.getDynamic(Skill.HITPOINTS) > 6 && !this.myPlayer().isUnderAttack()) { if (!wildy.contains((Entity)this.myPlayer())) { this.log("walking randomly"); this.walking.webWalk(new Position[]{wildy.getRandomPosition()}); } breaker = false; int i = 0; while (i < this.Hide.length) { for (GroundItem g : this.groundItems.getAll()) { if (!g.getName().equals(this.Hide[i]) || g == null) continue; if (this.inventory.isFull() || this.skills.getDynamic(Skill.HITPOINTS) <= 6 || this.myPlayer().isUnderAttack()) break; this.log("found item!" + this.Hide[i]); GroundItem a = (GroundItem)this.groundItems.closest(new String[]{this.Hide[i]}); a.interact(new String[]{"Take"}); shitcowpicker.sleep((long)300); do { shitcowpicker.sleep((long)200); } while (this.myPlayer().isAnimating()); breaker = true; break; } if (!(breaker || this.inventory.isFull() || this.skills.getDynamic(Skill.HITPOINTS) <= 6 || this.myPlayer().isUnderAttack())) { ++i; continue; } break; } } else if (this.inventory.isFull() || this.skills.getDynamic(Skill.HITPOINTS) <= 6 || this.myPlayer().isUnderAttack()) { this.walking.webWalk(new Position[]{new Position(3210, 3220, 2)}); this.walking.webWalk(new Position[]{new Position(3210, 3220, 2)}); if (this.bank.open()) { new ConditionalSleep(6000){ public boolean condition() throws InterruptedException { return shitcowpicker.this.bank.isOpen(); } }.sleep(); if (this.skills.getDynamic(Skill.HITPOINTS) <= 6) { this.bank.depositAll(); this.bank.close(); new ConditionalSleep(6000){ public boolean condition() throws InterruptedException { return !shitcowpicker.this.bank.isOpen(); } }.sleep(); } else { this.bank.depositAll(); } } } return 0; } } let me know how to improve it, i am unsure what to do as far as the delays, it will cancel and miss out on grabs just to walk onto the other side and i dont know how to write in to stop walking if back and forth until all the hide is picked up- Botting On My Main
yeah im fearful but lazy- So, how do you guys/girls handle
man, do some volunteer work, internships , and most importantly listen to you, zen out for a bit man. Stop fapping, go on a 1 day water fast once a week. it really helped me out. if you would like to speak further please don't hesitate to pm me.- New to botting
- Goodbye Scotty and Acerd
- Leaving for the hospital
gl hope its not black!- [10% OFF]✮AshDesigns.net Services✮[BANNERS/SIGS/LOGOS]
ordered a siggy , as you can see below is sick, fast and reasonable- Anyone else think Tomi Lahren is retarded...
- [FREE] Lelouch's Shit Designs (Limited Time)
Requested Service: Avatar How urgent is this request: Not at all. Contact: joebozz95 (skype)- skiller
- pc
http://prntscr.com/bezhiz 14 qp dwarf cannon and biohazard and the rc and herb lore quests are done - idea