Everything posted by Zackaery
-
gabe9345 - chargeback scam
Can you remove his authorization for script factory until then? I think it's kind of messed up he's allowed full access use to all of his scripts when he's openly scamming me. He didn't even deny the claim... Putting him as DNT is doing nothing, unless he's attempting to make an on-site purchase, which I'm sure he will still be allowed to buy stuff from osbot. The scripts he received from me are able to be used on Script Factory, and I cannot remove his authorization. He's practically receiving all of it for free.
-
[NEW] Script Factory 2.0
Congrats on official release!
-
gabe9345 - chargeback scam
@gabe9345 It would be no different than if I had reported you on any other forum as being a scammer. You did not use the script properly. That is not a reason to chargeback and get your money back. You have a lifetime authorization that cannot be taken away. Please, don't be an asshole and fix this situation.
-
gabe9345 - chargeback scam
Disputed member: [member=gabe9345] Thread Link: Discord Explanation: Chargedback $200 on paypal User purchased two private scripts in my discord: Revenants & Account Builder Revenants cost = $125 (Discounted it $25 so that he could purchase Script Factory (required to run the scripts) - paid $100) Account Builder cost = $100 (Early access deposit cost) He messaged me within 24 hours, stating that he was having issues with the Revenants script, and that he could not get it to run. I asked him all of the relevant info (shown in the screenshots below) to understand what the issue was, and if I could resolve it. He did not properly setup his profile, which led to the script not having the info it needed to work properly. I informed him on this, which seems to have resolved his issue, but he did not comment further. He also mentioned that he was not happy with the Account Builder, which was once again, being used improperly. He was trying to force it to do tasks in ways that were not supported, and attempting to prevent it from training skills that were required for his account build that he selected. This again, was something I had pointed out to him, which somewhat resolved his concerns, however, he still was not happy because it couldn't do what he was wanting it to do. No where did I ever say that his methods were supported in the account builder, nor would really ANYONE find real use in such on a botted account. He claims that the Revenants script was only profiting 300k per hour, yet he never posted any proof. I believe his claims are based on the Script Factory loot tracker, which does not track items that enter the looting bag. If he had posted my variables list which has it's own loot tracker shown, I'm sure it would show well over 300k/hour. I have multiple progress reports that show the script working well, and have people that can back it up. He was attempting to create a Blast Furnace account on a 10HP skiller. He tried to stop it from training Magic & Hitpoints, as well as, doing a quest for faster level gains. - Blast Furnace accounts require obtaining Ice Gloves. - Ice gloves are only obtainable from killing the Ice Queen in a lair where multi-combat is enabled. - My script trains the hitpoints & magic levels up to be able to safespot her using magic. It utilizes doing the quest - Witch's house, which awards 24 Hitpoints levels on a fresh level 3 (quick way to prevent having to manually obtain levels from doing combat, which gets these accounts built faster). He claims 1/2 of his accounts that he tried to create on the account builder were banned. He's immediately sourcing the problem as the script, rather than any other underlying factors. (proxies, random.dat, hardware, additional scripts that may have been ran, delayed bans, etc). I've always worked with my users to try to locate any and all bans pertaining to my script to reduce the chance. I have several users who are having great success with the account builder, and can post their reviews if needed. Evidence: I'd be happy to send the discord transcript of our whole interaction from start to finish, reach me on discord @zackaery or direct me to how I can upload a file with the size of 175kb. [STAFF CHECK HIDDEN] Gif of discord UID: [STAFF CHECK HIDDEN] [Plain UID - 241208460140740608]
-
Ways to make script harder to detect?
What in the ChatGPT did I just read?
-
Script Factory Request - GUI Line Select Debug Method
-
Web walking bug - Motherlode Mine
Are you aware of Stronghold of Security as well, or should I make a thread for it? Thanks for your hard work!
-
OSRS Script Factory 2.0
Paint image: https://i.imgur.com/orzIGVI.png Is your firewall or VPN blocking access to the site? @ProjectPact maybe instead of popping up this error, could you force hide the paint image?
-
OSRS Script Factory 2.0
1.) Navigate to \OSBot\Data\ProjectPact\OSRS Script Factory\Profiles 2.) Create a new text document. 3.) THIS IS IMPORTANT! a.) If you have NOT moved the file from the Script Repository folder when you downloaded it, name it: (222)_PPOSB_Pest_Control b.) If you HAVE moved it to your Local Scripts folder, make sure to name this file the same way it's named in your local scripts folder. (The reason why is when the script is launched, it will load any profile that is in the profile directory that has the same name as it.) 4.) Once you've created that file, open it up and paste the text below: <Find>Novice/*/Intermediate/*/Veteran</Find><Replace>Intermediate</Replace> 5.) Save the file, then launch your PPOSB Pest Control script. The selection will automatically be selected for you which will choose Intermediate. If you want to change this later, update the following line from 4.) Novice = <Replace>Novice</Replace> Intermediate = <Replace>Intermediate</Replace> Veteran = <Replace>Veteran</Replace>
-
Counting while webwalk
int count = 0; int counterRandom = random(1, 15); ScheduledExecutorService executor = Executors.newScheduledThreadPool(1); @Override public int onLoop() throws InterruptedException { if (myPlayer().isMoving()) { count += 1; sleep(1000); log(count); } if (count == counterRandom) { log("Done"); counterRandom = random(1, 15); count = 0; } return 0; } // separate thread public void startCounter() { executor.scheduleAtFixedRate(new Runnable() { public void run() { if (!myPlayer().isMoving()) { count = 0; } } }, 0, 1, TimeUnit.SECONDS); } // stop counter public void stopCounter() { executor.shutdown(); } // call start counter method before starting webwalking startCounter(); // perform webwalk // call stop counter method after webwalking is finished stopCounter(); So basically, what you need to do is start a counter before you begin the webwalk. This counter will run in the background while you're moving. It will keep track of the count every second. If your player stops moving, the counter will reset back to zero.
-
OSRS Script Factory 2.0
Considering the fact that you're using a community made script, without testing it, or even looking at the code to verify it's created correctly, I think this is your own fault. Within 10 seconds of looking at the exact script you're referring to, I see loads of errors/ issues with the script. The script network is only a tool to allow other users to use USER MADE scripts, and is not recommended to just press play and run without testing or investigating. You have full capabilities to edit this script, and make it work properly, so the fact that you didn't is baffling to me, especially if you're botting on an account you did not want to lose. I will run through the issues with this script real quick just to point out some key information to help you edit it on your own and make it work properly. All method numbers should contain at minimum one check per action. A line that is marked in yellow = a check (these are checked to see if the statement is true or false) A line that is marked in green = an action (these will only run if the checks are all true) Looking at method 2, there's a missing check to verify that you have prayer points. - This could be a bannable issue if your player is consistently clicking to enable prayer, while it has no prayer points. Looking at method 3, this has ZERO checks attached to the actions, therefore, every script loop (or one game tick), it is running this method, which specifically is telling it to click a south position, sleep for EXACTLY 1 second, click on an east position, sleep for EXACTLY 1 second, click on a north position, sleep for EXACTLY 1 second. - This could be a bannable issue due to your player constantly clicking the exact same positions, while sleeping for the exact same amount of time between each click (consistent same clicks for 2 hours straight is pretty recognizable). Looking at method 4, this also has ZERO checks attached to the actions, therefore, every script loop it is running this method, which specifically is telling it to click a north position, sleep for EXACTLY 500 milliseconds, click on an west position, sleep for EXACTLY 500 milliseconds. Looking at method 6, this also has ZERO checks attached, and is forcing the script to drink a Ranging potion every script cycle, this is so obvious, as there's no checks applied, and you should have noticed this while running for 2 hours, as it chugged all of your potion in less than 30 seconds. Looking at method 7, this also has ZERO checks attached to the actions, therefore, every script loop it is running this method, which specifically is telling it to click a north position, sleep for EXACTLY 750 milliseconds, click on an west position, sleep for EXACTLY 750 milliseconds. Looking at method 8, this is picking up ground items, but is not checking to see if your inventory is full... I'd imagine, if you were using your prayer pots, and did not have the vial smashing on, you're probably trying to loot ground items without your inventory having any empty spaces, and voila, BAN CITY..... Looking at method 9, it's ALWAYS drinking a prayer potion EXACTLY when your prayer drops below 43... Should have some randomization here with a timer, because guess what, this is also easily trackable and could cause a BAN! Moral of the story, @kevthehustla do your due diligence when utilizing a FREE OPEN SOURCE SCRIPT! Especially if it's being used on your main account. If you would have taken less time than it took to launch the script, just to stare at the code, I'm sure you would have realized some issues with the script... Please, don't try to take credit away from Script Factory as a whole, as this is obviously a user issue, rather than a Script issue...
-
OSRS Script Factory 2.0
You'll need to own the Standard version before you can purchase pro edition. Standard = $25/Lifetime Pro = $5/Month Pro Edition:
-
Web walking bug - Motherlode Mine
[INFO][Bot #1][04/03 03:28:34 AM]: [WalkTo]: Attempting to WebWalk [INFO][Bot #1][04/03 03:28:34 AM]: [WalkTo]: Initializing fail-safe timer [INFO][Bot #1][04/03 03:29:20 AM]: WebWalkingEvent; We have reached the final destination! [INFO][Bot #1][04/03 03:29:20 AM]: [WalkTo]: My player position: [x=3735, y=5641, z=0] | Walk to: [x=3749, y=5672, z=0] [INFO][Bot #1][04/03 03:29:20 AM]: [WalkTo]: Attempting to WebWalk [INFO][Bot #1][04/03 03:29:20 AM]: [WalkTo]: Initializing fail-safe timer [INFO][Bot #1][04/03 03:30:03 AM]: WebWalkingEvent; We have reached the final destination! [INFO][Bot #1][04/03 03:30:05 AM]: [WalkTo]: Attempting to WebWalk [INFO][Bot #1][04/03 03:30:05 AM]: [WalkTo]: Initializing fail-safe timer
-
Web walking bug - Motherlode Mine
1. OSBot Version (do NOT put "current version", be specific) 2.6.64 2. A description of the issue. Include relevant logs. When utilizing the web walker to handle walking around Motherlode Mine, it works for the most of the time. Unfortunately, I do see my accounts getting stuck at the Rockfall areas. The web walker handles mining the Rockfalls if you have a pickaxe, and the Rockfall is in the way of your path, however, i've found my account stuck over 5-6 times now in the past 3-4 days trying to walk to my destination, but cannot reach it due to the Rockfall. I'm assuming this may be happening due to a Rockfall falling shortly after the walker starts to move, but I'm not positive. 3. Are you receiving any errors in the client canvas or the logger? No. 4. How can you replicate the issue? I've been using a Script I created in Script Factory. The script's walking ONLY utilizes the Web walker, so there's nothing as far as I'm aware that would interfere with it. 5. Has this issue persisted through multiple versions? If so, how far back? I just started using Motherlode mine on this version.
-
[Release] v2.45
HUGE UPDATE! THANK YOU!!!!!
-
Script Factory Request - Wildcard Z Coords
Instead of having to do XXXX, XXXX, XXXX, 0/1/2 It'd be nice to do: XXXX, XXXX, XXXX, XXXX, * for areas XX, XX, * for positions Example: <Area>Region_AsgarniaMisthalin:3899,2569,2863,4133,* <Position>POSITION_I:3899,2569,*
-
Future of OSBot - candid feedback from a longtime user
Totally agree with the statements made here... I've been a longtime OSBot user, and my time here has been nothing more than successful. Despite all of the success, I've grown to be despondent due to the lackluster updates to the long awaited 3.0. Patrick, you've been knocking out many updates, and from the outside looking in, it seems, you're the only one developing this whole client, which is sad to see. A community that once had hundreds of active users on at all times, has slowly grown to a community that is lucky to see more than 50 online. This client has always been the best, which is why I'm sticking around... But the future isn't looking bright, and I'm scared to see where the client may go if things don't change. So many of us love this client, and will support it, but it's hard to put the blinders on while so many others are successful elsewhere.
-
[Script Factory] SF Quick Tutorials
The Script Factory Quick Tutorials series will be posted below!
-
Botting To Ban # 11
Damn, that's insane for f2p. Would love to see a p2p Botting To Ban
-
OSRS Script Factory 2.0
Hey there buddy! I was scrolling through your profile and noticed you love to ask for trials on these fighter scripts. I have some great news for you! We actually have some amazing community scripts that support everything you'll need! Go ahead and open up Script Factory, navigate to the almighty Script Network, and filter your script search to "Combat". You can also go ahead and give the following script names a search and download any/all of them. Here's some of my recommendations: - PowerCrabber - AIO Fighter - fxLegolas - fxGandalf - fxAragorn - wF2P Range - wF2P Combat I also noticed you asked for a trial recently on Pest Control. I've got some great news for you buddy! We have that one too! - PPOSB Pest Control I see you were worried about how much you spent, and the loss of value. Let's add some things up. - PPOSB Dragon Slayer I - PPOSB Tutorial Island - PPOSB Plank Maker - PPOSB Woodcutter - PPOSB Wintertodt - PPOSB Warriors Guild - PPOSB Tithe Farm - PPOSB Smither - PPOSB Rogue's Den - PPOSB Pest Control - PPOSB Motherlode Mine - PPOSB Mort Myre Fungus - PPOSB Fishing Trawler - PPOSB Agility - PPOSB Herblore - PPOSB Tabmaker These are all Verified Community Scripts, not even 10% of what's currently on the Script Network. How much would just this little slither of scripts cost you on a public market? I totally get that you're frustrated that a certain script was shown on the thread page, and was not available on the network, HOWEVER, have you attempted to join our discord? Have you left a script suggestion anywhere? Maybe one of our friendly community members would be happy to develop it, and release to others that are in need of that script. OR MAYBE - You could consider joining, and leaving a suggestion for our TUTORING CLASS, where we go live and screenshare and walk people through the steps on creating a script. You might get lucky and have your script request chosen as the topic of the class, where you can watch us create it live, and then watch the publicly posted video on that class in our tutoring-video-archives (also posted in the discord). There's so much value here, that you're looking at the smaller picture. - You paid $25 for lifetime access to a tool that should be valued at $25/month. - You received a plethora of FREE COMMUNITY SCRIPTS (located here: https://pposb.org/SDN/repository.php) that could easily be valued at over $300+ - And finally, once you join the discord, you will receive an insane amount of support by probably the most friendly/most accepting discord that the whole Runescape botting scene has ever had. That value is priceless. I know you're upset and angry, but give us a shot. I promise you won't regret putting in the time and effort after you see some of the amazing things we've achieved. Join the discord, stop waiting for a refund, it's not going to happen. EARN YOURSELF A REFUND by making some amazing scripts: https://discord.com/invite/qfcgHsgNsy P.S. Here's an image of a FREE GIVEAWAY that just ended. This was from an account creator that I made entirely with Script Factory. The only thing manually done on this account was doing tutorial island, and putting a bond on it. EDIT: In honor of you @michaeltheman, I've just hosted a giveaway for another Ironman Blood Crafter Starter. Please join our discord, I promise it's worth it. https://discord.com/invite/qfcgHsgNsy
-
Launching account on F2P does not query P2P items when switching to P2P worlds.
- Launching account on F2P does not query P2P items when switching to P2P worlds.
OSBot 2.6.52/3 - Mirror Mode Console output / terminal output - Not Needed Crash report if a crash occurred - Not Available Script that you ran - No Script Ran Hooks that failed - Not Available JVM/Browser bit version (32 / 64) - x64 I loaded up my mirror client, and logged my F2P account into a F2P world. I then muled some items onto the account, and bonded the account up. After redeeming the bond, I logged into P2P, and started doing some questing, the P2P items were not recognized in the Inventory Debugger. I was able to replicate it by closing my client, launching my account in a f2p world. Upon spawning, I checked a P2P item using the Inventory debugger and it reads as a Members object. I switched my account to P2P, and it still reads as a Members Object. I've attached some examples with brief descriptions for reference: Loaded client - First launched on F2P world: Launched Client in Free To Play --- F2P World Active: Launched Client in Free To Play --- P2P World Active: Launched Client in Pay To Play --- P2P World Active: Launched Client in Pay To Play --- F2P World Active: If you need any further information, I can try to provide as much information as I can, but it's pretty self-explanatory.- Method Request - If String is Not
https://osbot.org/forum/topic/170211-script-factory-request-if-string-is-not/- Client Suggestion : Handling scripts in the side bar
https://drive.google.com/file/d/1apcXKrS2wzajpWJq8g7H9zOZyHleb1dc/view?usp=drivesdk Uploaded the file to google drive- Client Suggestion : Handling scripts in the side bar
OSBot Icons.zip - Launching account on F2P does not query P2P items when switching to P2P worlds.