Jump to content

Zackaery

Members
  • Posts

    313
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by Zackaery

  1. 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.
  2. @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.
  3. 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]
  4. 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?
  5. 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>
  6. 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.
  7. 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...
  8. You'll need to own the Standard version before you can purchase pro edition. Standard = $25/Lifetime Pro = $5/Month Pro Edition:
  9. HUGE UPDATE! THANK YOU!!!!!
  10. 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,*
  11. 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.
  12. The Script Factory Quick Tutorials series will be posted below!
  13. Damn, that's insane for f2p. Would love to see a p2p Botting To Ban
  14. 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
  15. 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.
  16. https://osbot.org/forum/topic/170211-script-factory-request-if-string-is-not/
  17. That's probably for the best, you seem like a terrible person to want to even be around. Go back to third party client plugins.
  18. And we will welcome you with open arms to our amazing community when that happens. The free scripts that come with commnuity alone is worth the $25, even if you have to spend 10 minutes on a script to update some missing code. We have verified scripts that are written by SF Scripters and generally kept updated/actively being worked on. These scripts include: Guardians of the Rift, Wintertodt, Motherlode Mine, Tithe Farm, Fishing Trawler, AIO Herblore, AIO Woodcutting, AIO Crafter, AIO Smither, AIO Runecrafting, AIO Agility, Tabmaker, Plankmaker, Tutorial island, Pest Control, Warrior's Guild, Rogue's den, More Myre Fungus, & Warrior Barrel. This is just a small amount of the free Verified stuff that is available for free that wouldn't have been given away if there wasn't a strong growing community. It really sucks to see people trash a script with so much value for so little cost.
  19. It advertises FREE OPEN SOURCE COMMUNITY SCRIPTS that come with, it's just a benefit to having the commmunity. If there was no community, the network wouldn't have any of that. The script is not (Project Pacts Script Network) it's SCRIPT FACTORY, where YOU create the script YOU want. The thread is just showing some added bonuses of what you get with your purchase/what can be done with Script Factory. It does not say all 200+ scripts are 100% up to date and that he fixes every single persons script for them.
  20. Imagine purchasing a script that should cost $25/month, but only paying it one time, then getting FREE ACCESS to the community scripts that are 100% OPEN SOURCE and available to ANYONE that has access to Script Factory. You download a scripting tool that is used to create any scripts your little pea brain can come up with, yet you're so triggered at the fact the FREE COMMUNITY SCRIPTS aren't being fixed, and you expect the script writers to run them every day to keep it updated for YOU. You're a huge piece of shit, judging by your previous track record with feedback on scripts. You're DOGSHIT. "Got this dogshit user called @iamspecs that just constantly crys about trying to do things he hasnt even attempted." Boy you should changed your name to "I am special". I bet you probably go flame any free script you own when it breaks every game update, minutes after saying some stupid shit like "Was working a second ago, now this dogshit ass script doesn't work, scripter is trash and im the greatest alive, sit kids, i pay good money for this type of stuff". Get a fucking life bro, and dont you fucking dare try to ruin the reputation of this community. You're a terrible person, and genuinely not worth keeping around. I genuinely hope you NEVER use script factory again, because you don't deserve it. Get fucking bent.
  21. GOAT Thank you for putting in so much effort. This client is starting to get some huge updates that are going to change the scene entirely! Keep up the great work Pat.
×
×
  • Create New...