Everything posted by harrypotter
-
rly shitty giveaway xd
It will be a public script so you'll be able to use it
-
rly shitty giveaway xd
My next free script will be a sand crab script Just need to get a few private script orders out the way then I can focus on it!
-
Selling 144m 07 - PP/UKBT
/Sold
-
Selling 144m 07 - PP/UKBT
Selling 144m 07, $0.95 per mil. PP from trusted or UKBT.
-
New Chatbox
Showing the timestamp in relative time would be a cool idea: https://momentjs.com/docs/#/displaying/fromnow/
-
Website/ order system
I've added you on skype
-
[Need help] Receiving error from getState
NVM, see @Charlotte's answer
-
[Free-Source] Woodcutter
He's spamming his post count to 100 to try and sell an account. Just ignore, mods will deal with him @Decode @Mio
-
How to check if user is trading you
If you're trying to check that a certain user send the request, you can parse the game message using the API class I sent in my previous post.
-
How to check if user is trading you
Pretty sure you can check your messages: https://osbot.org/api/org/osbot/rs07/api/ui/Message.html
-
Buying starter account 30-80m osgp
Offer? no idea how much it's worth. Paid a friend to level it for me as I was planning to afk it NMZ into a maxed staker but it has sat doing nothing for about 2 months now. PM me though or add my skype. Don't want to highjack this thread
-
Buying starter account 30-80m osgp
I've got a 70/70/70/70 account which is NMZ ready if you're interested, add my skype: live:phatslime
-
Strange issue making pie shells
What I would do is start by structuring your script so that if an event fails at anytime, it will simply retry that action only, not the whole loop again (as @Apaec suggested): if (!inventory.isItemSelected()) { // Use first item // Sleep until inventory.isSelected() } else { // Use first item with second item // Sleep until finished making pie shell } Here is a full example taken from my AIO Herblore script: if (!script.inventory.isItemSelected()) { Item pestle = script.inventory.getItem("Pestle and mortar"); if (pestle != null) { if (pestle.interact("Use")) { Sleep.sleepUntil(() -> script.inventory.isItemSelected(), 5000); } } } else { int clickSlot = script.inventory.getSlot(itemToGrind); InventorySlotDestination itemSlot = new InventorySlotDestination(script.getBot(), clickSlot); script.getMouse().move(itemSlot); if (script.getMouse().click(false)) { Sleep.sleepUntil(() -> !script.inventory.contains(itemToGrind) || script.getDialogues().isPendingContinuation(), 120000); } }
-
Least expected ban you've been issued?
Trump's Travel Ban OT: Last year I used a free fletching script on my DMM account that had never been botted before, was banned a few hours later
-
Combat script help?
Have a look at this: Should be a good learning resource!
-
Trying to figure something out
Tried here? http://www.quodb.com/search/quiet%2C boy!
-
[SYSM] [MM] [FREE] [ACTIVE!] 400+ FB, Lifetime Sponsor!
Do you Agree to the terms of service?: YesWhat is your skype name?: live:phatslimeYour Partners Skype name?: live:sphairai.rsType of trade?: Private ScriptDo you have me on Skype Already?: No but I'm in a group conversation with you
-
Potter's Tanner [GE Support]
I'll have a look into this tonight when I'm home.
-
Potter's Tanner [GE Support]
I wasn't aware it was broken, can you let me know what your settings are?
-
34 Farming + 100% Hosidius favour
Got skype?
-
looking for web developer
Custom build, built in Laravel 5 to your specs. Add me on skype and I'll show you some of my previous work. live:phatslime price will depend on a full spec.
-
help me!!!!
From the snippet you've shown you're not even calling the debug_Connection() function?
-
help me!!!!
I'm not really sure what you mean, if should return an error if the database table doesn't exist. Why would it give a connection success message when it didn't successfully connect? If you're getting an error stating that the db table doesn't exist then double check your table name is correct
-
help me!!!!
Also I believe this: $this->connection = new PDO("mysql:host=$this->db_hostname;$this->db_database", $this->db_username, $this->db_password); Is invalid, you need to specify that $this->db_datebase is the database name: $this->connection = new PDO("mysql:host=$this->db_hostname;dbname=$this->db_database", $this->db_username, $this->db_password); Might be wrong though
-
help me!!!!
If you're using MAMP you need to connect via socket, if not please give more info.