Everything posted by Markoz
-
Im back for some 07 botting and...
Jagex really upped their game , got my first ban today after some days botting (my fault though). It wasn't at all like this, how are you guys coping with it and how did it change for you in terms of amount of botting per day?
-
My pet RS character - [Offline Single Player Servers for Botting?]
I can see why, some people just like to see their character developing without having to actually to the work.. But I guess it would become boring after some time, so I don't see anyone doing such a project
- Get Mouse Destination
-
Get Mouse Destination
How do i get a NPC/Entity Mouse destination?
-
Safe Spotter attempt
Does anyone have any idea on where to test safespotting? I was thinking of tzhaar caves but im only 15 range atm..
-
Safe Spotter attempt
Since im on vacation and dying of boredom i decided i should try do script something different, i searched on the request script page and saw some guy talking about safe-spotting some NPC and that gave me the idea to make some kind of universal safe spotter: First iteration - Working, but very roughly and weird, but im happy with it: http://www.youtube.com/watch?v=C90HQaeqX40&feature=youtu.be I first thought this was easy, at least this first part was, but there's so much more to make and i've only done the easiest part, hope i can make it though =]...
-
Numb penis problem
3 times in a row? Damn, talk about resistance...
-
Scrub's Script Installer
This is actually very useful
-
▬★★[ [Verified Transactor] Selling OSBot Gift Vouchers, VIP/Scripts {07} ] ★★▬ [150+ FB]
Bought a $25 dollar voucher, thanks =]
-
MAccountStarter
xD It was fun developing it, you should try
-
★☆#1 VOUCHER SELLER ON OSBOT☆★ Selling OSBot VIP and Scripts ($800 USD WORTH OeedBack!F VOUCHERS SOLD SO FAR) 300+ F
I would like to buy a voucher Skype name: marksofthe
-
MUnicows - 200k+ P/H | Low Requirements
MUnicows Make Money killing Unicows! 01/02/2014 - RELEASED Script Features: - Kills Unicows - Loots Unicorn horns - Uses food if selected - Banks using teleport runes or teletabs - Hops if another player is using our machine - Can get up to 250 Unicorn horns a hour (Depends on gear) Requirements: The only oficial requirements are completion of Tower of Life and Plague City, but if you want to make the best out of it, 30+ defence is recommended How to use: Have your items setup like this in your bank: If using teletabs, replace runes with teletabs When using the GUI: The Food Name is case-sensitive, so write it carefully, for example: Lobster - will work lobster - wont work The rest is self explanatory. Check out my goal thread using this script: Road to 25M using MUnicows Media: Proggies/Trades (loot per hour is glitched on these) Download: Currently being tested for the SDN http://osbot.org/forum/store/product/250-municows/ Graphics artists: Im in need of a paint, PM me if your interested in making one(paying)
- MAccountStarter
-
MAccountStarter
Thanks! And it might be released for free if most of the people are okay with that
-
MAccountStarter
So i decided i should learn how to make a script perform tasks and since i had a low level account i decided to make a script that would kill chickens, and when it was ready, swapped to cows, this is the result so far: http://www.youtube.com/watch?v=hHWmYFgaDL0&feature=youtu.be Edit: Added looting, banking, burying bones http://www.youtube.com/watch?v=r7YItDWlsSU&feature=youtu.be Script switching between Strength and defence:
-
6:00 AM LOL
I relate to this, except it doesn't snow in my country, the thing is my car does'nt have AC and when it rains i have to ride with the windows open, or clean it every five minutes with a pijama that i always forget to remove from the car
-
Blind Walk
Yes i used to hace that problem too, the bot would try to walk somewhere and sometimes it would try to click the same destination multiple times... That was fixed using walkMinimap() instead of walk, now i just iterate through the path and it works like a charm. Edit: But it's good to have a custom method, it differs your script from others, preventing bans.
-
5uck: Malicious content report!
Good job finding this before more harm was done, I still can't think of why someone who had such a potential to profit selling scripts would do something like this, it's a shame really
-
MRoguesDen
Can you tell me if you were using the 0.7 version? it was updated today and i havent had the time to test the script correctly EDIT: UPDATED SCRIPT, check page 1 for details
-
MRoguesDen
You're right, can't believe i didnt check for that . Ive been away from osbot and rs for a good amount time but i plan to come back and fix this script EDIT: Fixed camera and stopping when out of food, script should be updated within 72 hours if im not wrong, the admins need to scan it for malicious code before pushing it to the sdn
-
MRoguesDen
Hmm thats weird... I know you said that you started with raw food in inventory but was it at the first slot?
- MRoguesDen
-
MRoguesDen
Thanks for the feedback, that's really helpful Will fix those problems and will try to set up a gui. Abou the clicking too fast, i dont think its really a problem, it really helped on performance, but nevertheless its going on the GUI for the user to choose.
-
MRoguesDen
Script needs update then.. updating it atm Edit: Updated! should be working now =]
-
Stronghold of security door solver
I was going to use this on a script but i decided to stop the development, so before scrapping it i decided to release it: This holds the answers: String[] strongholdTexts = { "To help me recover my password if I forget it or it is stolen", "Use the 'Recover a Lost Password' section on the RuneScape website", "Don't give them the information and send an", "Nowhere", "Recovering your account if it is stolen.", "Every couple of months", "Don't tell them anything and click the", "Virus scan my computer then change my password and recoveries", "does not block your password", "Only on the RuneScape website", "Game Inbox on the RuneScape website", "No", "No, it might steal my password", "Don't give him my password", "Nobody", "Don't tell them anything and inform", "Memorable", "The birthday of a famous person or event", "Politely tell them no and then use the" }; This clicks the first interface: if (client.getInterface(242) != null) { if (client.getInterface(242).getChild(2).getMessage() .contains("To pass you must answer me this:")) { if (client.getInterface(242).getChild(4) != null) { selectInterfaceOption(242, 4, "Continue"); sleep(1000); } } } This answers the second one: if (client.getInterface(230) != null) { if (client.getInterface(230).getChild(6) != null) { int childLength = client.getInterface(230).getChildren().length; for (int i = 0; i < childLength; i++) { for (int a = 0; a < strongholdTexts.length; a++) { if (client.getInterface(230).getChild(i).getMessage() .contains(strongholdTexts[a])) { selectInterfaceOption(230, i, "Continue"); sleep(1000); } } } } } And this clicks the last interface(which vary interface child and parent numbers, idk why): It may not be the best way to do this, but it was a working quick fix for me =p, feel free to grab the code or even clean it a little bit for us. And if someone with bigger knowledge could point out some bad pratices, etc. I would be grateful ps: i know its simple.. but could save someones time