Everything posted by Bobrocket
- Finally
-
Trying to make a new logo
You chatting shit about my scripts bruh?
-
Im just gonna leave this here........ (SERIOUS: IF YOU SUFFER FROM EPILEPSY DO NOT CLICK)
- AIO Farming(Premium)
Each scripter has their own style, if you will. Some people prefer Czar's scripts over other people because he is more well known, as an example. It's the same principle that you would probably rather buy a car from a trusted brand than from some guy in a Walmart restroom: brand identity. The market is never divided, as you can't either buy one or the other, you can buy both.- Script help needed! [What not to do & how I can do it better]
It's better to learn things like this early on, it's simple and it's gonna remove a lot of redundant code (1000+ lines in onLoop was mainstream anyway, right guys?)- Script help needed! [What not to do & how I can do it better]
I can: use nodes public abstract class _Node { protected Script script; public _Node(Script script) { this.script = script; } public abstract boolean canProcess(); public abstract void process(); public void run() { if (canProcess()) process(); } } public class Bank extends _Node { public Bank(Script script) { super(script); } @Override public boolean canProcess() { return script.getInventory().isFull(); } @Override public void process() { //stuff } } //in onStart List<_Node> nodes = new ArrayList<_Node>(); nodes.add(new Bank(this)); //in onLoop nodes.forEach(node -> node.run());- What is the best way?
I don't think spending half of your dev time planning is a bad idea. Here's my (personal) process: Think of script idea and all the complex details and write them down Boil it down to the super basics and flowchart it (eg a NPC killer would be things like "walk to nearest bank -> prepare inventory -> (loop) has item? (y/n) -> walk to mob -> kill mobs until out of food/no more items -> repeat") Write the basics Start adding complex details (try and keep an OOP structure to ensure it's easy to add more stuff to) Refine your script and finetune it until it is ready for release An example for your complex details, an NPC killer may have these points: If in wilderness, search for a looting bag in your bank to use Must be able to start anywhere and work anywhere Support changing combat styles on demand Dynamic safespots for range/mage The script must check if the mob is at full hp for loot- Omni Scripts - Request your trials here
Authed. Enjoy!- Need quests done
- OSBot Store Link
Hi guys, just want to thank you all.. remember everything is possible! I'm now 7th on the latest products list, hopefully together we can make it #1 Seriously though, congrats dude, you deserve it- Who is your favorite OSBot member?
- What is the best way?
Write a flowchart to understand the flow of the script, and then build the basic script and finetune as you go.- Lol windows 10 rip
Windows 10 is fucking amazing. I'm just now trying to set up an email account so I can say "Hey cortana, send an email to <x> saying he sucks".- [Experts please help!] Hosting website for an event (Scenario)
Well, for starters, let's assume you're renting a 1U dedicated server in a datacentre for $99.99/mo. Your server has 16GB RAM, a quad core 2.8GHz intel xeon and a 1TB HDD, with a 1gbps uplink. You pay approximately $0.01/gb incoming traffic, and about $0.03/gb outgoing traffic. You'd be paying $0.60/day when not in games peroid, and about $3.15/day when in the games period. You're going to be paying 90x $0.60 and 20x $3.15 which is a total of $117 in terms of bandwidth. Including incoming traffic may get you to around $125. Your server would be running some form of Linux (eg CentOS), so you do not pay for the OS. To further save money, you use php5 and nginx for your web server and web language of choice. These are both free. However, since you are not setting it up, expect to pay around $100 for some IT technicians to do it for you. Since you are also looking for a managed solution, you would probably pay another $50/mo. In terms of security, you don't need too much. You could probably get your IT technicians to change the SSH port, enable RSA keys for SSH, disable root login, and add iptables rules to protect further for another $100 or so. You can do the calculations yourself. If you are looking for totally in-house solutions, the server would cost around $399 to purchase and maybe a static $59 per month to keep the server up 24/7. These are all estimates though, so don't take them seriously (do your own research)- Need f2p quest done
I've messaged you regarding this- need waterfall quest fast - lvl 3
Done in 15 minutes: Enjoy- If you purchase a script, how long do you have it for?
It should say when you purchase the script if you end up with a monthly contract or not.- OSBot & Windows 10
Will see about testing now. Just got on win10 and I fucking love it! This shit is fucking amazing!!!! EDIT: Works just fine. Only problem (seen above in console log) is a lack of AAing. Same happens in my script GUIs.- Windows 10 Discussion
44% upgrading, hope its worth it. Looks amazing and MS have taken some great turns recently so I have high hopes!- Random Password Generator
Yeah looks great- OSBot with Windows 10
There's a reason you need visual c++ redist...- OSBot with Windows 10
Let's find out B)- Omni Scripts - Request your trials here
No problem.- JLPHOST - A custom VPS that fits all your runescape needs (Runs 5S/4M Clients) 24x7 Supports IPv4+IPv6 (Secure Checkout)
Alright, so let's say your server has 2 quad core xeon CPUs and 16GB RAM. You sell "6 cores" to one person, and "6 cores" yet again to another. You only have 8 cores there alone, so how does that work? Moreso, how do you even profit from this? Also, your KVM servers are unmanaged by default. You have to pay an extra $100/month for them to be managed.- Selling codes
Almost definitely through some form of exploit (or bought from someone who has received them through an exploit). - AIO Farming(Premium)