Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/10/16 in all areas

  1. Changelog: -Patched Chatbox API (reported by @@FrostBug) -Improved Chatbox message collection -Improved Chatbox stability -Attempted fix for starting scripts through CLI not working for some users (reported by @@Abuse) Also updated the Control Panel to the "Advanced User Panel" to avoid confusion. Updated CLI usage chart: Happy Botting
    8 points
  2. Premium is like: and private is like:
    7 points
  3. Hello there people who jump to conclusions! First of all you did not purchase the script i have given to @Badluckgp under the name "HGoldAmuletSlave AND HGoldAmuletMule". The only involvement you had with the script "HGoldAmuletSlave AND HGoldAmuletMule" was me giving a copy of it to you for use granted i receive a % of it. I did i not sell you that script or grant you unique usage for it. What you probably saw was the README.txt file which contained the names "HFlax" which is a placeholder for the setup guide i give with all my scripts. The only scripts Xylate has purchased from me are scripts called "HFlaxSlave AND HFlaxMule" which have not been sold to anyone else. You have not mentioned the name of the script in this entire dispute and while helping @badluckgp set up his VPS you stumbled upon what you believe to be "your script" which is completely not true. Thus you made @badluckgp post "yes i bought the script off him" but that is an invalid proof because @badluckgp does not even know which script i gave you. Please post any proof here that @badluckgp has received the script "HFlaxSlave AND HFlaxMule" from ME through purchase or any means here if you wish to pursue this dispute. You need to realize i sold him a script which is not the one i sold you what so ever. @Xylate left negative feedback and have not contacted me about it and waited for a reply. @Xylate contacted me today 4 hours ago and i have no been online till now. @Xylate also posted in my thread for private scripts trying to throw mud on my name. I see this as unacceptable^ Thanks, House EDIT: Had some text that was not supposed to be public.
    4 points
  4. I safety-banned @liverare for now. He'll have to refund you upon appealing.
    4 points
  5. I will be keeping track of what I do each day in scripting and how it has improved my Java knowledge. I hope to one day be able to script flawless bots with many features added. *Remember I am starting with no prior Java knowledge. I am also a college student doing 16 credit hours this semester so my progress on here might be slow.* Day 1 Day 2 Day 3 ​Day 4 Day 5 Day 6 Day 7 Day 8 Day 12 Day 14 Day 21
    3 points
  6. I requested @House to reply here and explain his side of the story + I moved him to TWC for the time being. @Badluckgp Can you confirm that you bought the script off @House? @Badluckgp and Is it possible to provide me the skype logs of you buying it? Would it be possible to retrieve both the zip files you 2 got from @House so I can check if the code actually matches? Kind regards Khaleesi
    3 points
  7. Do not refund devry until he is cleared of the other disputes, you will most likely be refunding one of the scammed users, since devry has not paid anything back yet.
    3 points
  8. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Supports all rooftops (Draynor, Al-Kharid, Varrock, Canafis, Falador, Seers, Polivneach, Relekka, Ardougne) - Supports most courses (Gnome stronghold, Shayzien basic, Barbarian stronghold, Ape toll, Varlamore basic, Wilderness (Legacy), Varlamore advanced, Werewolf, Priffddinas) - Supports Agility pyramid - All food + option to choose when to eat - (Super) Energy potions + Stamina potions support - Progressive course/rooftop option - Waterskin support - Option to loot and sell pyramid top - CLI support for goldfarmers Custom Breakmanager: - Setup Bot and break times - Randomize your break times - Stop script on certain conditions (Stop on first break, Stop after X amount of minutes, Stop when skill level is reached) - Worldhopping - Crucial part to botting in 2023! Script queueing: - Support queueing multiple script in a row - All Khal scripts support flawless transitions in between scripts - Start creating your acc in a few clicks from scratch to multiple 99's - Flawless CLI support - Learn more here: How to use CLI parameters: - Example Usage: -script 463:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename DISCORDFILE= discordSettings Filename - SAVEFILE: Save file can be created in the GUI. Navigate to the tab you want to run and press "Save As CLI file". Please choose your filename wisely (No special characters) - BREAKFILE (Optional): Breakfile can also be create in the GUI, set the breaksettings you wish to use and press "Save new CLI BreakFile". Please choose your filename wisely (No special characters) - Final form (Note that with some bot manager you do not need to specify '-script 463'): -script 463:TaskList1.4515breaks (With breaks) -script 463:TaskList1.4515breaks.discord1 (With breaks & discord) -script 463:TaskList1..discord1 (NO breaks & discord, leave 2nd parameter empty) Proggies:
    2 points
  9. 24 hour progress report!! Setup Window Highly intuitive and visual, and easy to use! Portal Prediction knows which portals are going to drop - prioritises them! Full Void in <24 hours It takes only 850 points for full void, go go go! Screenshots & Results
    2 points
  10. CURRENT RECORD: 201 HOURS RUNTIME NEW: Sandstone mining + hopper support Humidify/water circlet/bandit unnote Ardy cloak tele support Setup Screen Preview Results 84 HOURS ON NEW LEVEL 20 ACCOUNT Suicided account with mirror mode near rock crabs, 81 mining! I will probably go for 99 Even supports Ancient Essence Crystal mining! Preview: Mine 1 drop 1 item drop pre-hover feature:
    2 points
  11. private List<String> getOthersEquipment(Player p) { List<String> equipmentList = new LinkedList<String>(); if(p != null) { int[] equipment = p.getDefinition().getAppearance(); for (int i = 0; i < equipment.length; i++) { if (equipment[i] - 512 > 0) equipmentList.add(ItemDefinition.forId(equipment[i] - 512).getName()); } } return equipmentList; } Note: int[] equipment = p.getDefinition().getAppearance(); Index Order: [0] = helmet [1] = cape [2] = necklace [3] = weapon [4] = chest [5] = shield [7] = legs [9] = gloves [10] = boots - Can only grab visible items (no ring or ammo, etc.) - Each value from getAppearance() needs to have 512 subtracted from it in order to get the item id Or if you want it so you can grab specific pieces: private HashMap<EquipmentSlot, String> getOthersEquipment(Player p) { HashMap<EquipmentSlot, String> equipmentList = new HashMap<EquipmentSlot, String>(); if (p != null) { int[] equipment = p.getDefinition().getAppearance(); for (int i = 0; i < equipment.length; i++) { if(equipment[i] - 512 > 0){ switch(i){ case 0: equipmentList.put(EquipmentSlot.HAT, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 1: equipmentList.put(EquipmentSlot.CAPE, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 2: equipmentList.put(EquipmentSlot.AMULET, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 3: equipmentList.put(EquipmentSlot.WEAPON, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 4: equipmentList.put(EquipmentSlot.CHEST, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 5: equipmentList.put(EquipmentSlot.SHIELD, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 7: equipmentList.put(EquipmentSlot.LEGS, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 9: equipmentList.put(EquipmentSlot.HANDS, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 10: equipmentList.put(EquipmentSlot.FEET, ItemDefinition.forId(equipment[i] - 512).getName()); break; } } } } return equipmentList; }
    2 points
  12. My last dispute I posted was invalid, I used the wrong user who received the privatescript. Okay, so House sold me a PRIVATE script and agreed it wasn't to be resold. Turns out he resold it to badluckgp. I paid $50 and we agreed on 50% profits would go to him to continue to make scripts. 8. Script Sales Selling and buying of scripts is only permitted through our official store. Donations for projects are allowed, however they cannot be required. It should be made clear that the donations are going towards you for development and do not benefit OSBot directly. Authentication systems, script loaders, and distribution systems need prior approval from any Admin and/or Developer. These types of miscellaneous software are reviewed on a case-by-case basis and may be audited/reassessed at any point in time. Selling a single copy of a private script to a single person is tolerated. Releasing a private script a customer paid for to the public is also not allowed. Selling multiple copies of a private script will result in a permanent ban when caught for the script writer and the customers (if the customers are aware). The staff will not assist in any disputes with regards to private script transactions. Will post skype logs if its needed
    2 points
  13. You have 48 hours to pay him, and yes the ban is quashed, but you clearly botted it. We are done with the botting services and people getting away with it.
    2 points
  14. So far so good! Thanks Czar for making this awesome script has anyone gotten 99 str/99atk/99def ?
    2 points
  15. 23m is cool with me. There is no proof you didn't bot, because the acc getting unbanned proves that you did. The big deal is that you botted a service that was requested to be hand done.
    2 points
  16. No smoke added: Smoke added: A banner for Starlight - Sadly because its a GIF, it can't be as HQ as the AVI version
    2 points
  17. all these pokemon go bots
    2 points
  18. 2 points
  19. mfw no one is answering his questions 1. http://osrsbanrates.com 2. Have not used but I think it might do something. 3.For agility: Acerd Rooftops , on a serious note: FrostBarrows , Stealth Quester , ProjectPact AIO Hunter, FruityNMZ and more. 4. I've been doing pretty bad
    2 points
  20. @Devry123 is it possible to provide ALL the pictures, not edited ones? Because apparently you only sent @Starcraft a few of them.
    2 points
  21. This is an AIO (All-in-one) bot that has almost every thieving style except blackjack, ask for a free trial by liking thread or making a post! Vyres and elves are now supported! Both can make solid profit per hour, decent passive income! BIG THANK YOU TO ALL OUR SUPPORTERS! WE ARE THE MOST SOLD THIEVING BOT IN OSBOT HISTORY. MOST REPLIES, MOST USERS, LONGEST PROGGIES #1 Thiever | Most Overall Sales | Most Total Replies | Most Results | 10+ Years Maintained | 'the intelligent choice' by Czar SUPPORTS VYRES 224M made in a single sitting of 77 hours 1.1B made from elves and vyres!! ELVES SUPPORTED TOO! (NEW) 2.1m/hr, 6 crystals in 7 hrs 99 THIEVING MANY MANY TIMES, 35M EXP IN ONE BOTTING RUN!! 99 thieving in ~43k xp (12 minutes remaining)! Just got 99 proggy! Gratz to @iz0n THIEVING PET AT LVL 22 FROM TEA STALLS 11.5 HOURS, WITH PET TOO!! 610k/hr getting 99s on deadman worlds!
    1 point
  22. Buying after trial, thanks!
    1 point
  23. can i have a free trial please? also how long do u give me a trial for? thanks a lot
    1 point
  24. Here's the full screenshot/convo of the part you've just posted for some more background: I don't see how I 'agreed' to anything, I said that I thought you were correct in saying it took you two weeks. I think you may see this as "Hell no, you can't keep my account, but sure, here's 18m!" but your perception is wrong. Ready when you are in terms of a refund.
    1 point
  25. i don't blame you for not trusting they grey names. ~ Support.
    1 point
  26. Oh no I knew I was missing a feature; I will add antifires ASAP, so the mechanics for antifires are: - Sip antifire potion before reaching fight area - Sip antifire potion when a message in chatbox says: "your antifire potion effect is running out" - Perhaps a banking condition called "bank_when_no_antifire" Any other features missing? Update coming up ASAP
    1 point
  27. Both files I received matched perfectly, date created, size and the code was 100% the same. @House has 24 hours to reply and explain this before getting banned.
    1 point
  28. Heard really good things about your scripts czar, could I get a trial for this please?
    1 point
  29. may i have a trial please
    1 point
  30. Hello Czar, love your scripts, does this also support antifire pots/extended antifire pots? I want to try this out at iron/steel dragons.
    1 point
  31. All I can say is do more search before you continue deeper. I am still a very big noob when it comes to gold farming in comparison to others but I do see some main key errors with how you were running your setup. 1. Don't use a money making method that generally known to be botted, and already gets many people banned (like plank making) 2. Kinda goes hand-in-hand with #1, choose your time/risk vs reward. Some money making methods will require you to have little to no requirements, causing you to start making profit on a new account very quickly, but also meaning it's most likely WAY more popular for many bots to be doing this already. ************************NEVER SPEND ALL OF YOUR MONEY ON SUPPLIES/BONDS****************** As long as you have 6M+, you should never spend all of your money on bonds/supplies. IF you can't buy another bond, you risk putting yourself in the situation you are now, literally one bond is all you ever need to get yourself running again ---- Honestly, read juggles guide, spend time in the chat box, and take advice from higher ups here, most will steer you in the right direction
    1 point
  32. 1 point
  33. Can i get a trial on this please?
    1 point
  34. will try and improve some parts once i have some time. Thanks for your review
    1 point
  35. i tried the random item option but it simply just bank loops despositing and taking out its odd? :L
    1 point
  36. 1 point
  37. Pushed an update, leaving the field for when to repot empty no longer throws an error. Bot now will enable auto retaliate if it's off and also supports use of regular combat potions.
    1 point
×
×
  • Create New...