Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/25/16 in all areas

  1. Hello Osbotters! Since today is Christmas, I'll be doing something special for you all. I'm going to give away some monthly trials for any of my scripts. What do we have to do? All you have to do is leave a post below and like this topic, multiple post are allowed!! In several hours (will be random) the topic will be closed and I'll generate 5 random numbers between 1 and the amount of posts on this topic. I'll announce the winners asap. What can we win?! You can win 5 trials of 31 days on any script that I own. You can find all my scripts on the link below: http://osbot.org/forum/topic/66292-khal-scripts-trial-topic-%E2%96%90-next-level-botting%E2%96%90-very-dedicated-scipter%E2%96%90-request-your-free-trials-now/ Goodluck to you all and have a Merry Christmas! Khaleesi
    26 points
  2. Dear Community, I've lowered the price on Sponsor + lifetime sponsor until the end of December, once we roll the new year in the prices will return to normal!! Sponsor for 6 months = $45.99 http://osbot.org/forum/store/product/5-sponsor/ Lifetime Sponsor = $100.00 http://osbot.org/forum/store/product/291-lifetime-sponsor/ Thanks, OSBot Staff
    5 points
  3. You're just as retarded as he is, you both scammed cause you both got salty and you both let your pubescent feelings take action. Don't expect to come back anytime soon buddy.
    5 points
  4. How can I justify giving you $100.00 donor if you donated any lower than $100.00?
    4 points
  5. Mio ruined this community - was great until that specimen who doesnt bot, doesnt script, doesnt farm, doesnt even know anything about RS became a Forum moderator here on a RS related bot site lmao
    3 points
  6. 10k posts ... Oh God Don't forget to participate in the script giveaway! http://osbot.org/forum/topic/112685-%E2%AD%90khal-scripts-giveaway-%E2%AD%90-christmas-special/
    3 points
  7. @FusionRS Check your messages bro Sent you a voucher Happy holidays
    3 points
  8. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Account builder mode to level your firemaking to level 50 or even higher. - Equips pyromancer gear option - Chopping and burning logs (base Option) - Relights brazier - Fletch option - Fix brazier option - Make potion and heal pyromancer when down option - Tons of food supported - Brazier swicthing when pyromancer is down - Advanced game settings to skip games, smart caluclate points, afk at certain points, ... - Bank or Open crates - Dragon axe special attack - Fletch at brazier option - Chop in safespot option - Worldhopping - 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 909:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager 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 managers you do not need to specify -script 909): -script 909:TaskList1.4515breaks (With breaks) -script 909:TaskList1.4515breaks.discord1 (With breaks & discord) -script 909:TaskList1..discord1 (NO breaks & discord) Proggies:
    2 points
  9. Molly's Chaos Druids This script fights chaos druids in Taverly dungeon, Edgeville dungeon and Ardougne. Profits can easily exceed 200k p/h and 60k combat exp/ph, this is a great method for training low level accounts and pures. Buy HERE Like this post and then post on this thread requesting a 24hr trial. When I have given you a trial I will like your post so you will receive a notification letting you know you got a trial. Requirements - 46 Thieving for Ardougne -82 Thieving and a Lockpick for Yanille - 5 Agility for Taverly(recommended) - No other requirements! Though I do recommend combat stats of 20+ as a minimum Features: - Supports eating any food - Hopping out of bot worlds - Recovers from deaths(respawn point must be lumbridge), includes re-equipping items on death - Potion support - Automatically detects and withdraws/uses Falador teleport tabs if using Taverly dungeon - Automatically detects and withdraws/equips/uses glories if using Edgeville dungeon - Supports looting bag Setup: Start the script, fill out the GUI, and be in the general area of where you want to run the script. CLI setup: Proggies: In the works: Known bugs: Bug report form, this is a MUST for problems to be resolved quickly: Description of bug(where, what, when, why): Log: Your settings: Mirror mode: Y/N
    2 points
  10. Temsei's dough maker Information With this script you can make pastry dough, bread dough and pizza bases out of flour. While the script can be an excellent money maker, the market for these ingredients isn't huge so you should be keeping a close eye on your items market if you're planning to use the bot in larger amounts. Requirements Making dough has no skill requirements, start the script in a bank with pots of flour and jugs of water in your bank and you're good to go! Images If you run into any issues with the script or have any suggestions, please make a post about them! Proggies are also much appreciated. Download https://drive.google.com/open?id=0B5zfq4J918uyaWRXbk9CWHM1T3c Save the .jar file in "C:\Users\YourUsername\OSBot\Scripts" and refresh your scripts in the osbot client. Enjoy! Made a lot of GP with the script? Want to give a little something back? While donations obviously aren't any kind of necessity, they definitely will motivate me to create more scripts for the public. If you wish to make a donation, please follow the paypal donate link below or PM me if you want to donate RSGP. https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Y26BKQUXZRBTY
    2 points
  11. Presenting you easy generic SAVE/LOAD implementation, feel free to use : (some of the Load and Save class implementations are copypasted from help section) Save Class: import java.io.*; import java.util.Base64; public class Save { private PrintWriter pw; String localDir = System.getProperty("user.home") + File.separator + "OSBot" + File.separator + "data" + File.separator; public Save(String localName) { try { pw = new PrintWriter(localDir + localName + ".ini"); System.out.println(pw.toString() + "\n" + localDir); } catch (FileNotFoundException e) { e.printStackTrace(); } } public boolean writeString(String s) { pw.println(s); pw.close(); return true; } public boolean writeObject(Serializable o) throws IOException { writeString(toString(o)); System.out.println(toString(o)); return true; } private static String toString(Serializable o) throws IOException { ByteArrayOutputStream baos = new ByteArrayOutputStream(); ObjectOutputStream oos = new ObjectOutputStream(baos); oos.writeObject(o); oos.close(); return Base64.getEncoder().encodeToString(baos.toByteArray()); } } Load class: import java.io.*; import java.nio.charset.Charset; import java.util.Base64; public class Load { private BufferedReader br; private InputStream fis; private InputStreamReader isr; private boolean finished = false; String localDir = System.getProperty("user.home") + File.separator + "OSBot" + File.separator + "data" + File.separator; public Load(String localName) { try { fis = new FileInputStream(localDir + localName + ".ini"); isr = new InputStreamReader(fis, Charset.forName("UTF-8")); br = new BufferedReader(isr); } catch (FileNotFoundException e) { e.printStackTrace(); } } public String readLine() throws IOException { String line = null; if (!finished) { line = br.readLine(); if (line == null) finished = true; } else { if (br != null) { br.close(); fis.close(); isr.close(); br = null; } } return line; } public Object readObject() throws IOException, ClassNotFoundException { return fromString(readLine()); } private static Object fromString( String s ) throws IOException , ClassNotFoundException { byte [] data = Base64.getDecoder().decode( s ); ObjectInputStream ois = new ObjectInputStream( new ByteArrayInputStream( data ) ); Object o = ois.readObject(); ois.close(); return o; } } How it works? FOR SAVING All you have to do is create a Save class that you are going to use: Save save = new Save("Filename"); And saving class that contains information about your bot: //make sure that your Properties class implements "Serializable" Properties propertiesofBot = new Properties("My properties class"); save.writeObject(propertiesofBot); FOR LOADING: //Make sure you create Load class with same name as the Save class Load load = new Load("Filename"); And all you need to do is load and save the class to the variable Properties properties = (Properties) load.readObject(); Saving or loading classes that differ is not supported. Hope this helps!
    2 points
  12. @nicksep are you fucking retarded? go back to your moms nipple.
    2 points
  13. he runs a service with 10 other people in it lmao,randy kids who know nothing le0le0le0
    2 points
  14. Ran out of forum likes for today Thanks everyone for the script feedback I will be working on the next update immediately and will be adding all suggestions/bugfixes/tweaks for the next version. The eating bugfix (v164) update should 100% most definitely be live today, once again apologies everyone for the inconvenience
    2 points
  15. Ability to set custom Magic and Ranged armour sets βœ“ No limits on Kills per trip βœ“ Using a mix of user inputs and built-in logic, the script will determine if you have enough supplies for another kill without banking. Options to decide how much food you’re like to take into the next fight as a minimum. Customisable Stop Conditions Stop after 'x' kills Stop after 'x' profit Stop after 'x' runtime Stop after 'x' consecutive deaths Efficient Zulrah Fight Executor βœ“ Knows what have, is and will happen Longrange mode, gain defence XP passively with no time loss βœ“ Multiple Travel Routines Zul-Andra teleport scrolls VIA Clan Wars βœ“ Zul-Andra Teleports VIA PoH βœ“ Charter Travel βœ“ Caterby charter [via Camelot teleports] Fairy Rings βœ“ Ability to select staff to use or not use one at all for fairy rings βœ“ Summer Pie Support (72+ Agility recommended) βœ“ Fairy ring via Slayer Ring βœ“ Fairy ring via House Teleport βœ“ Ornate pool support βœ“ Jewellery box Support βœ“ Mounted Glory Support βœ“ Construction Cape Support βœ“ Ability to select Magic Only βœ“ Changes Rotations and Phases for the best possible fight experience. No need to quest for Ava’s or Level range. Swaps prayers & equipment efficiently βœ“ Option to use quick switch mode, removes mouse travel time for even faster switching Prayer Flicking on Jad Phases βœ“ Supports Raids Prayers βœ“ 55 Prayer βœ“ 74 Prayer βœ“ 77 Prayer βœ“ Options to Dynamically pray against Snakelings when Zulrah is not focused on player. βœ“ Calculates: Total loot value βœ“ Total cost of supplies used βœ“ Profit after costs βœ“ Ability to sell all your loot when you run out of supplies βœ“ Ability to top up your supplies if you run out with auto-exchange βœ“ Death-walking βœ“ Safe death boss Rechargeable item support Trident of Seas βœ“ Trident of Swamp βœ“ Blowpipe βœ“ Dynamically detects darts used (Must start with darts inside the blowpipe for it to work!) Serpentine Helm βœ“ Ring of suffering βœ“ Barrows Repairing βœ“ Using Lumbridge teleports or the Home teleport, the script will withdraw coins, travel to Bob and repair your armour then continue to run. Potion Decanting βœ“ Efficiently decants all types of potions allowing FruityZulrah to run for longer. Inventory Organising βœ“ Organises your inventory to minimise mouse movement, increasing time spent elsewhere. Combo eating Karambwams βœ“ Will combo eat karambwams to help prevent death from Zulrah and Snakelings stacks Supports blowpipe special attack βœ“ Uses the Blowpipe special attack to help replenish HP Multiple stat boosts supported Prayer βœ“ Super Restore βœ“ Magic βœ“ Ranging βœ“ Bastion βœ“ Stamina βœ“ Anti-venom+ βœ“ Imbued Heart βœ“ Supports Lunars β€˜Cure Me’ spell to cure Venom βœ“ Requires: 1 2 2 Ability to use rune pouch Level 71 Magic Lunars Quest Ideal for Ironman accounts with no access to anti-venom+ Supports Lunars Vengeance spell βœ“ Requires: 2 4 10 Perfectly times vengeance casts to Magic Phase ranged attacks for best results. Ability to use rune pouch Level 94 Magic World hopping support βœ“ Options to hop world between x and x minutes. will randomly select a time every hop. Ability to skip rotations by Hopping worlds Ability to decide on your own custom world list or just to hop to any P2P world Grand Exchange Add-on βœ“ Add-on script for free Save/load buy/sell presets Ability to dump all zulrah loot in 2 clicks Command Line Support βœ“ Start the script on multiple accounts with a single click Script ID - 903 Command: -script "903:profile=Test hours_limit=10 kills_limit=5 deaths_limit=5 profit_limit=1m" profile = saved profile name, if you've been using CLI to run the script, this will need to be updated to suit. hours_limit = Complete after 'x' run hours. kills_limit = Complete after 'x' zulrah kills deaths_limit = Complete after 'x' deaths. profit_limit = Complete after 'x' accumulated profit Pro-active calculations βœ“ Calculates next mouse position for next action whilst first action is being performed Asynchronous actions βœ“ Can perform multiple tasks at once saving time Banks Pet drops βœ“ Loot table βœ“ http://fruityscripts.com/zulrah/loot/ Displays total loot as well as a live feed of drops Hiscores βœ“ http://fruityscripts.com/zulrah/hiscores/ Compare and compete against other users Dynamic Signatures βœ“ Show off your gains with FruityZulrah url: http://fruityscripts.com/zulrah/signature/signature.php?username={USERNAME} Replace {USERNAME} with your username http://fruityscripts.com/zulrah/signature/signature.php Notifications Get Notifications for: Valuable drops βœ“ Deaths βœ“ On Exit βœ“ Timely Data dumps (GP, GP/HR, Kills, Kills/HR, Deaths, Runtime) βœ“ Types of Notifications Email βœ“ Discord ~ Desktop βœ“ βœ“ Implemented into the script ~ Work in progress View a collection of Screenshots posted by FruityZulrah users showing their progress with the script. Watch a collection of FruityZulrah videos below If you have a video you'd like to be added to the Playlist, send me a pm with a link. Videos must of course include the FruityZulrah script. If you wish to purchase FruityZulrah VIA PayPal, please follow the store link below: If you'd like to purchase FruityZulrah using OSRS GP, SEND ME A PM and i can give you my current $$:GP Rates! Discord Community: https://discord.gg/WzXRk2bWTV Trial bot has been implemented (100 post count required if you're not VIP/Sponsor!) @fruityscripts on Discord
    1 point
  16. Before buying, please ensure you check-out with the correct script. Swapping scripts is not possible. View in store $4.99 for lifetime access Features: All spawns - Supports every multi-crab spawn point both along the south coast of Zeah and Crab Claw Isle All combat styles - Supports Ranged, Magic and Melee combat training. The script will not bank runes of any type Saving GUI - Intuitive, re-sizeable and fully tool tipped GUI (Graphical User Interface) allowing you to tailor the script session to your needs, with configuration saving / loading Human replication - Designed with human simulation in mind - multiple options to replicate human behaviour available in the GUI Setup customiser - Inventory customiser allows you to visually see your trip setup CLI support - The script can be started from the command line All potions - Supports all relevant potion types (including divine potions!), multiple potion types simultaneously and varying potion ratios Healing in a range - Dual slider allows you to specify a range within which to consume food. Exact eat percentages are calculated using a Gaussian distributed generator at run time Healing to full at the bank - When banking, the script will eat up to full hit points to extend trip times Safe breaking - Working alongside the OSBot break manager, the script will walk to safe place approximately two minutes before a break starts to ensure a successful log out Anti-crash - Smart crash detection supports multiple anti-crash modes (chosen in the GUI): Hop worlds if crashed - the script will walk to a safe place and hop worlds until it finds a free one, at which point it will resume training Force attack if crashed - the script will fight back and manually fight pre-spawned sand crabs until the crasher leaves Stop if crashed - the script will walk to a safe place and stop Ammo and Clue looting - Clue scroll and Ammo looting system based on a Gaussian-randomised timing scheme All ammo - Supports all OSRS ammo types and qualities Spec activation - Special attack support for the current weapon to maximise your exp per hour Auto-retaliate toggling - The script will toggle auto-retaliate on if you forget Move mouse outside screen - Option to move the mouse outside the screen while idle, simulating an AFK player switching tabs Refresh delay - Option to add a Gaussian-randomised delay before refreshing the chosen session location, simulating an AFK player's reaction delay Visual Paint and Logger - Optional movable self-generating Paint and Timeout Scrolling Logger show all the information you would need to know about the script and your progress Progress bars - Automatically generated exp progress bars track the combat skills that you are using Web walking - Utilises the OSBot Web alongside a custom local path network to navigate the area. This means the script can be started from anywhere! Safe banking - Custom banking system ensures the script will safely stop if you run out of any configured items Safe stopping - Safely and automatically stops when out of supplies, ammo or runes Dropping - Drops useless/accidentally looted items to prevent inventory and bank clutter All food - Supports pretty much every OSRS food known to man. Seriously - there's too many to list! ... and many more - if you haven't already, trial it! Things to consider before trying/buying: Mirror mode - currently there appear to be some inconsistencies with behaviour between Mirror mode and Stealth Injection meaning the script can behave or stop unexpectedly while running on Mirror. I would urge users to use the script with Stealth Injection to ensure a flawless experience! Since Stealth Injection is widely considered equally 'safe' to mirror mode and comes with a host of other benefits such as lower resource usage, this hopefully shouldn't be a problem. Using breaks - the script supports breaks and will walk to a safe place ready to log out approximately two minutes before a configured break starts. However, upon logging back in, your spot may no longer be open. If you configure the crash mode to be either 'Hop if crashed' (default) or 'Stop if crashed', this will not prove to be a problem. However if using 'Force attack if crashed', the script will attempt to take back the spot by crashing the occupying player and manually attacking spawned sand crabs. Be aware that players have a tendency to report anti-social behaviour such as this! Avoiding bans - while I have done my utmost to make the script move and behave naturally, bans do occasionally happen, albeit rarely. To minimise your chances of receiving a ban, I would strongly suggest reviewing this thread written by the lead content developer of OSBot. If you take on board the advice given in that thread and run sensible botting periods with generous breaks, you should be fine. That being said, please keep in mind that botting is against the Oldschool Runescape game rules, thus your account will never be completely safe and you use this software at your own risk. Setting the script up - I have done my best to make the GUI (Graphical User Interface) as intuitive as possible by making all options as self explanatory as I could, however if you are not sure as to what a particular setting does, you can hover over it for more information. If that doesn't help, just ask on this thread! Web-walking - alongside a network of paths, the script moves around with the OSBot web-walking system, using it when in unknown territory. While it has proven very reliable, there are naturally some areas for which the web-walker may struggle. As a result, prior to starting the script, I would highly recommend manually navigating your player close to the sand crabs bank, however in practice, anywhere on Zeah should be fine. Script trials: I believe that trying a script before buying is paramount. After trying the script, hopefully you will be convinced to get a copy for yourself, but if not you will have gained some precious combat experience! If you're interested in a trial, please follow the instructions on my trials thread which can be found here. Gallery: Start up GUI (Graphical User Interface): Paint (optional, movable and self-generating): User screenshots: Recent Testimonials: Starting from CLI: This script can be started from the command line interface. There is a single parameter, which can take two (and only two) values: 'gui' or 'nogui'. 'gui' will start the script and show the gui, 'nogui' will skip the GUI setup and start the script using your save file as the configuration. To start from CLI with 'nogui', the script requires a valid GUI save file to be present - if you haven't already, start the script manually and configure the GUI to suit your needs. Then hit 'Save configuration' and in future starting from CLI will use these configured settings. The script ID is 886. Example CLI startup: java -jar "osbot 2.4.137.jar" -login apaec:password -bot apaec@example.com:password:1234 -debug 5005 -script 886:nogui
    1 point
  17. This tutorial will cover everything required to write your own OSBot scripts. Although it is quite lengthy, don't let this put you off - it shouldn't take more than a couple of hours to follow through, at the end of which you will have learned the scripting basics and will have your very own tea thieving script which you can modify to your liking. Good luck! Previous required knowledge: None Knowledge of basic java helps but is not required! What this guide covers: Downloading your code editor (IDE) Basic programming concepts A quick guide to java Writing a script with the OSBot API Running your script Downloading Eclipse: Setting up your project: Language basics: Java basics: Script backbone: Compiling the script: Writing the script: Best practices and conventions: Completed Tea thieving source code: That's the end of this tutorial, hopefully it was useful and concise enough. As I mentioned earlier, remember to ask LOTS OF QUESTIONS! Also remember that google is your friend! ? Although it may seem OSBot scripting is a niche use of java, many questions can translate to more widely adopted counterparts - use this to your advantage. If you have any questions do not hesitate to post as a reply below. Since I follow this thread, I will receive a notification if you do and will do my best to get back to you ASAP! - Apaec
    1 point
  18. Molly's Thiever This script is designed to quickly and efficiently level your thieving! Check out the features below. Buy HERE Features: - Capable of 200k+ per hour and 30k+ exp/ph on mid-level thieving accounts. - Quickly reaches 38 thieving to get started on those master farmers for ranarr and snap seeds! - Fixes itself if stuck. - Hopping from bot-worlds. - Stun handling so the bot doesn't just continually spam click the npc. - Drops bad seeds if inventory is full at master farmers. - Eats any food at the hp of your choosing. Supports: -Lumbridge men -Varrock tea -Ardougne cake -Ardougne silk -Ardougne fur -Kourend Fruit Stalls -Ardougne/Draynor master farmer -Ardougne/Varrock/Falador guards -Ardougne knight -Ardougne paladin -Ardougne hero -Blackjacking bandits as well as Menaphite thugs, this has limitations, click the spoiler below to see them Setup: Select your option from the drop down menu, it will tell you the location where the target is located. Fill out the gui and hit start. Simple setup! Proggies: Proggy from an acc started at 38 theiving:
    1 point
  19. 'the intelligent choice' by @Czar Want to buy the bot, but only have rs gp? Buy an OSBot voucher here
    1 point
  20. Want to purchase using RSGP? Click here! Script Trial - A 24h trial is available for this script. You may request one HERE
    1 point
  21. Hello! I need these quests done: Eadgar's Ruse Dream mentor Favor: 60% Arceeus Please post both price and skype. This is a high-levelled account.
    1 point
  22. The 5 random numbers are: Number 1: 185 -> @drapi Number 2: 217 -> @Krys Number 3: 215 -> @Ragme Number 4: 45 -> @Jowsiej Number 5: 168 -> @ez11 The winners can message me with the script they want a 31 day trial on Merry X-mas everyone Khaleesi
    1 point
  23. I believe it was the door closest to the flesh crawlers and also the door leading to the lv 30 zombies.
    1 point
  24. Al-Kharid is nice, but the scorpions could be a problem if you're a low level.
    1 point
  25. Added a quick patch for sand crabs, the webwalker tiles were messed up and now they are fixed. (this is an instant update and requires no waiting since only nodes were modified) just restart the script. As for rock crabs, so the script is running too far (all the way to the hills) and not returning? I will test and re-write rock crabs plugin for the next version, I just don't know the actual bug. I will test the script again though. For stronghold, which tiles are causing problems? Will be an easy fix. As for script dying/not eating, hang on guys, just a few more hours until the devs add my latest update to the script (which fixes eating system)
    1 point
  26. i will send the guy who buys pic of the card ( its bought from a shop irl ) lol
    1 point
  27. Authed P.S Saiyan's God Wars will be released soon me and him are making it together: Stealth Godwars :xdoge:
    1 point
  28. Made a happy amount from botting thanks to OSBot Just had to buy this
    1 point
  29. 1 point
  30. vouch for this guy, he a good dude good luck mate
    1 point
  31. Good luck on Sales bro!
    1 point
  32. May I has 24 hour trial? vaporizer4
    1 point
  33. Hi, so is the eating fixed now? love the script by the way
    1 point
  34. thanks captain obvious, doesnt mean its not fun though
    1 point
  35. As long as you keep reading and commenting i'll be here my man Update: 12/24/2016 - ​Sold my first level 3, 85+ mining account, finally seeing some return from all this hard work very happy lately, still been working on a P2P farm, lots of logic to deal with and of course the ban hammer things are going smooth, thanks for anyone who supports and keeps this thread juiced up ! Pm me if you need any scripts made at a reasonable price - promise to be built logically can never promise no bans Also pm me if you would like to purchase any level 3 miner ranging from 41+ to 80+ atm! Much love and happy holidays everyone!
    1 point
  36. Can I get a Trial I asked on trial forum but nothing...
    1 point
  37. could i get the trial? I'm stuck between this one and the other pc script
    1 point
  38. Sounds like the .jar file is opening with a file archiving software like WinRar You can run this tool to set your .jar file associations to open with Java.
    1 point
Γ—
Γ—
  • Create New...