Jump to content

Zackaery

Members
  • Posts

    313
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Zackaery last won the day on May 15 2022

Zackaery had the most liked content!

5 Followers

Profile Information

  • Gender
    Male

Recent Profile Visitors

5441 profile views

Zackaery's Achievements

Black Poster

Black Poster (5/10)

129

Reputation

  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!
×
×
  • Create New...