top of page

Search Results

48 results found with an empty search

  • API | Really Needy HUD

    API, developer kit Vital Signs API Really Wet API Mega Weather Maker API Acerca de Vital Signs API An API is an interface that allows you access to certain functions provided by a system, in this case the Really Needy HUD or products from the The Really Useful Scripts Corner. There are currently 3 APIs available: The API for Vital Signs and the API for Mega Weather Maker are open APIs - available for anyone to use. The Really Wet API is a licensed API which requires purchase of a script for personal use (copy only) or purchase of a script for inclusion in products for sale. In addition, the Auto-Copulation script is available as open-source on this page . VITAL SIGNS API INTRODUCTION The Really Needy HUD tracks 5 vital signs internally: • Heart rate (HR) • Body temperature (BT) • Respiratory rate (RR) • Blood pressure (BP) • Oxygen saturation (SpO₂) If you are a maker of medical equipment or content creator, and would like to create medical-themed products which are compatible with the Really Needy HUD, this section may be useful to you. It contains information on: - how to request vital signs information from the Really Needy HUD, and - what format the response comes back in. REQUIREMENTS You need to know some basic LSL scripting. I will not be able to teach you scripting but there are other resources eg. https://wiki.secondlife.com/wiki/LSL_Tutorial and the "NCI Scripters " group in SL. You should own a Really Needy HUD so you can test your product with it. ▸ CHANNEL Send your request on channel -444 (using llSay, llWhisper or llRegionSayTo) to the Really Needy HUD of the user. ▸ FORMAT OF REQUEST The message your script is sending should comply with this format: READ,[Vital],[Reply channel] ▸ [Vital] can be any of the following values: HR BT RR BPS BPD SATS ALL ▸ [Reply channel] should be a channel your script is listening on. ▸ FORMAT OF RESPONSE If your request is valid, the Really Needy HUD will respond with a reply on the channel which you have specified. The reply format will be one of the following lines, corresponding to the [Vital] value you used in the request: HR,[value] BT,[value] RR,[value] BPS,[value] BPD,[value] SATS,[value] ALL,HR,[value1],BT,[value2],RR,[value3],BPS,[value4],BPD,[value5],SATS,[value6] ▸ SAMPLE SCRIPT You may refer to the following script as an example of how to format the request and decode the reply message. Please create a new script in your inventory and paste the following contents inside your script and save. //---------------- default { state_entry() { llListen(5,"","",""); // set the listening channel to any channel you want } touch_start(integer total_number) { /* Format of request to Really Needy HUD to read vital signs information is READ,[Vital],[Reply channel] */ llSay(-444, "READ,HR,5"); // the end number should correspond with the channel you are listening on } listen(integer channel, string name, key id, string msg) { llOwnerSay("Patient = "+llKey2Name(llGetOwnerKey(id))); //llOwnerSay("Response received = "+msg); // uncomment start of this line to see response from Really Needy HUD list param = llParseString2List(msg,[","],[""]); string vital = llList2String(param,0); string value = llList2String(param,1); if (vital == "HR") llOwnerSay("Heart Rate = "+value); } } //---------------- REALLY WET API Really Wet API With the Really Wet API (script), you can now access and make use of this function in a couple of ways: You can use your own script to trigger the Waterdrops effect of the Really Needy HUD. For instance, You can add the API to your shower and have your script call the API when the avatar sits on the shower, to trigger the effect. When your avatar steps out of the shower, the water droplets will be showing on the skin and dripping off the body. For this to work, the avatar must be wearing the Really Needy HUD, have RLV enabled, and have the Waterdrops Skin Effects installed. You can use the API in an attachment worn by the avatar to detect the 3 trigger events (in blue text above) where the avatar 'gets wet'. When the API detects these events, it will send a linkmessage in the object. You can program your script to then take certain actions when it hears the linkmessage sent by the API. For example, say you would like the colour of your mesh nails or mesh bikini to change when it gets wet. With the API in your nails or bikini object, it will detect when the avatar enters the sea / pool / rain, which you can use trigger your script to perform the colour change. For this to work, the avatar does not need to be wearing the Really Needy HUD. REQUIREMENTS You need to know some basic LSL scripting. I will not be able to teach you scripting but there are other resources eg. https://wiki.secondlife.com/wiki/LSL_Tutorial and the "NCI Scripters " group in SL. You should own a Really Needy HUD so you can test your product with it. You need to purchase the Really Wet API script for your personal use (no mod, yes copy, no transfer). Alternatively, if you are intending to make products for sale which include the Really Wet API script (and therefore require copy and transfer permissions), please contact me. ▸ FORMAT OF CALL TO API SCRIPT TO ACTIVATE WET SKIN EFFECT [Entering water] To wear the contents of the 'Underwater ' folder (with the bubble maker), have your script to send a linkmessage to the API script with the number 800, and the key of the target avatar. For example: llMessageLinked(LINK_THIS,800,"",id); // id is the key of the target avatar Bonus feature: if the target avatar is wearing Blueberry Noelia line of clothing, the clothes will also get wet. [Exiting water] To wear the contents of the 'Waterdrops ' folder (with the BOM layer for wet skin and the dripping water attachment), have your script to send a linkmessage to the API script with the number 900, and the key of the target avatar. For example: llMessageLinked(LINK_THIS,900,"",id); // id is the key of the target avatar ▸ FORMAT FOR YOUR SCRIPT TO LISTEN FOR TRIGGER EVENTS DETECTED BY API SCRIPT IN SAME OBJECT Have your script to listen for linkmessages from the API script with the numbers 600, 601, 700 and 701. link_message(integer sender, integer num, string str, key id) { // replace the llOwnerSay below with your own code to perform desired action if (num==600) llOwnerSay("Entered SL sea"); else if (num==700) llOwnerSay("Exited SL sea"); else if (num==601) llOwnerSay("Entered scripted pool water or Lumo rain"); else if (num==701) llOwnerSay("Exited scripted pool water or Lumo rain"); } INTRODUCTION The Really Needy HUD has a Waterdrops (also known as 'Wet Skin') effect which is activated when the user enters and exits any of the following: Second Life seas Scripted pool water (such as the pool from the Really Olympic Swimming Poo l and Really International Swimming Pool ) Rain from the Mega Weather Maker v7 (Lumo mesh emitter) This effect will automatically apply a ‘waterdrops’ BOM layer on your avatar's mesh body. Drops of water will also be rezzed automatically so that your avatar will emerge from the sea or swimming pool dripping wet (lasts for a minute). Mega Weather Maker API API FOR MEGA WEATHER MAKER (Version 7) INTRODUCTION This guide allows you to build your own control panel or interface or script to control the Rezpoint Marker to the Mega Weather Maker v7. There are 7 category of commands, with the first 2 being the key categories you would be more likely to use. REQUIREMENTS 1. You need to know some basic LSL scripting. I will not be able to teach you scripting but there are other resources eg. https://wiki.secondlife.com/wiki/ LSL_Tutorial and the "NCI Scripters " group in SL. 2. You should own a Really Useful Mega Weather Maker v7 so you can test your product with it. Specifically, you need the Rezpoint Marker to be rezzed. (The control panels are not required if you are using the commands below). ▸ CHANNEL Send your command on channel 777 (usually using llRegionSayTo). You can declare a constant at the start of the script, for instance: integer WEATHER_CONTROLLER_CHANNEL = 777; ▸ FORMAT The format to use is as follows, where is a string. Note the commands are case-sensitive. llRegionSay(WEATHER_CONTROLLER_CHANNEL,""); Substitute with a command below e.g. llRegionSay(WEATHER_CONTROLLER_CHANNEL,"REZZ_EMITTERS,4,50"); ▸ COMMANDS 1. Initialisation and setup commands ROGIER : Instructs Rezpoint Marker to reset its own script REZZ_EMITTERS,[area],[unit] : Rezzes emitters, where [area] is an integer from 1 to 7 1: 50x50m 2: 50x100m 3: 100x50m 4: 100x100m 5: 150x150m 6: 200x200m 7: 250x250m [unit] is 50 for Fujin, Aeolus, Chaac and Freyr, 16 for Lumo and Ullr, 11 for Khione, and 64 for Ilmatar (Note: After using REZZ_EMITTERS, it is good to wait at least 0.2 seconds before the next command in case there is a lag in the sim before the emitters are rezzed). setheight default : Sets altitude of emitters to be 35m above height of rezpoint marker setheight [absolute height] : Sets altitude of emitters to be at [absolute height] in metres setheight +[relative height] : Sets altitude of emitters to be higher by [relative height] in metres setheight -[relative height] : Sets altitude of emitters to be lower by [relative height] in metres 2. Quick weather scene commands Clearweather : Kills all emitters, stops rain sound of any rain-resistant roofs, and stops simlightning if SimCloud is on kill cloud : Kills all cloud emitters Fairweather : Kills all precipitation emitters (cancels rain/snow and lightning but retains any clouds) cloud all : White clouds storm all : Dark clouds Cloudy50% : Partly cloudy (white clouds) rain all light : Light rain rain all : Tropical rain lightning on : Turns on lightning, and starts simlightning if SimCloud simlightning mode is on Thunderstorm : Dark clouds + tropical rain + lightning snow all light : Light snow snow all : Moderate snow 3. Other emitter control commands revolve on : Turns revolve mode on. When revolve mode is on, emitters rezzed will revolve on own z-axis. This is meant for cloud emitters, to make clouds look less blocky. Note that this is a setting that is remembered by the Rezpoint Marker until cancelled by 'revolve off'. revolve off : Turns revolve mode off damage on : Lightning strike on avatar can cause Health damage in damage-enabled zone damage off : Lightning strike on avatar will not cause Health damage HIDE : Makes emitters invisible SHOW : Makes emitters visible Oscillate on : Makes the prims of a cloud emitter shift slightly from their base position in the x-y plane a few times a minute, to create more random looking clouds. Oscillate off : Cancels oscillation mode sound on : Enables sound of rain and thunder thunder off : Enables sound of rain but disables sound of thunder sound off : Disables both sound of rain and sound of thunder RandomHeight : Makes cloud emitters (that are already rezzed) to distribute themselves in terms of altitude EmitterType : Brings up EmitterType menu for user to choose type of emitter. (Does not rez emitters) Pause : Pauses weather scene without derezzing emitters 4. More weather commands (accessible normally through Extreme Weather menu or Advanced menu) blizzard : Heavy snowfall (for best results, make area small and lower altitude of emitters as much as possible) sleet all : Rain + Snow Hail : Falling hailstones tornado : Rezzes tornado Rez Aurora M : Rezzes medium aurora borealis Rez Aurora L : Rezzes large aurora borealis Derez Aurora : Deletes aurora borealis apples! : Falling apples oranges! : Falling oranges bananas! : Falling bananas mixed fruits! : Falling apples, oranges and bananas catsndogs! : Falling cats and dogs sakura : Falling cherry blossoms (EmitterType has to be set to Fujin first) fall leaves : Falling autumn leaves 5. SimCloud commands (only if you have the SimCloud / SimCloud II) simcloud on : Turns on SimCloud simcloud off : Turns off SimCloud toggle cloudspeed : Changes speed of SimCloud texture moving simcloud fullbright : Makes SimCloud full bright simlightning enable : Turns on SimLightning simlightning disable : Turns off SimLightning 6. Fog commands (only if you have Mega Ground Cover Rezzer) *fog light : Turns on Evaporation Fog *fog medium : Turns on Valley Fog *fog heavy : Turns on Frozen Fog *fog off : Turns off fog 7. Other commands 15 min cycle : auto-cycles through weather scenes in 15 min cycle 60 min cycle : auto-cycles through weather scenes in 60 min cycle Randomcycle : randomly changes weather scenes every few minutes MANUAL : cancels Auto-Cycle / RandomCycle and reverts back to manual control REPORTLOC : reports location of the Rezpoint Marker Hovertext ON : turns on floating text above Rezpoint Marker Hovertext OFF : turns off floating text above Rezpoint Marker

  • HOME | Really Needy HUD

    Comparison of HUD editions Needs About Lifestyle Edition LITE / ADULT Customisation Lifestyle Edition NOVICE Enquiries Buy ready-to-eat food or make your own START FREE TRIAL ABOUT About OVERVIEW PHYSIOLOGICAL NEEDS RESTORING METERS Enhance your roleplay immersive experience by simulating the following physiological conditions of your avatar: Hunger Thirst Energy Health Hygiene Toilet Procreation To satisfy the Need, your avatar needs to eat, drink, rest, shower and use the toilet The HUD interacts with scripted food / drink / furniture / items that will restore the Needs meters. Each of the 5 physiological needs (Hunger, Thirst, Energy, Hygiene, Toilet) has a meter will decrease from 100% to 0% over a period of time. The speed at which each of these 5 meters drops is called the consumption Rate, measured in number of seconds where it will drop by 20%. You can customise * the Rate for each meter. You can customise * the emotes for each Need per 20%. Emotes are owner-only to avoid chat pollution. When any of the Hunger, Thirst, or Energy meters reach 0%, it will have an adverse effect on your avatar's Health. * For authorised users (eg. sim owner) for RPG Edition only To restore Hunger / Thirst meters, your avatar needs to consume food and drinks. To restore Energy meter, your avatar needs to rest. To restore Hygiene meter, your avatar needs to use the shower or bath or amenities for washing. To restore Toilet meter, your avatar need to relieve himself/herself. To restore Health meter, your avatar needs medical treatment. NEEDS Needs Hunger Thirst Energy Health Hygiene Toilet Procreation I REALLY NEED IT NOW ! USING THE HUD Using the HUD To minimise the space that the HUD takes up, click the arrow icon to slide the meters off-screen. (Not available in version 1) STATUS INDICATORS REST INDICATOR Click on the Rest Indicator to check your current consumption Rates. While you are sitting on an object (regardless of any pose or animation), it is assumed your avatar is at rest, so your consumption Rates will be halved. The Rest Indicator will light up. When your avatar stands up, your Rates will go back to normal. PREGNANCY MODE INDICATOR If you click the button with the pregnant icon at the top of the HUD, the HUD will go into pregnancy mode. In pregnancy mode, consumption Rates will be doubled. This button will be disabled if you have the Conception add-on (ie. Lifestyle Edition Adult) CHAT COMMANDS /resetpos /resetsize Resets the position / size of the HUD on your screen (please wear/attach it first) /pause /resume The meters will stop dropping for a period of time. The meters will continue dropping as per their Rate /statson /statsoff Displays / hides the value of each meter as hovertext /stealthon /stealthoff Makes the HUD semi-transparent / opaque /rlvon /rlvoff Enable / disable RLV functions (eg. blurred vision) /male /female Hide / show the pregnancy mode button /restmsgon /restmsgoff Turns on / off the status message on consumption rate when you sit or stand /eat /drink Search for something to eat nearby (to satisfy HUNGER) Search for something to drink nearby (to satisfy THIRST) /rest Search for something to rest on nearby (to restore ENERGY) /treat Search for something nearby to treat a medical condition (to restore HEALTH) /use Search for amenities nearby to clean or relieve yourself (to restore HYGIENE or TOILET) /arousalon /arousaloff Change the PROCREATION meter from Cycle mode to Arousal mode, or vice versa /checkupdate Check for updates CUSTOMISATION CUSTOMISING CONSUMPTION RATES Authorised users (ie. the Game Master) for RPG Edition are able to customise the speed at which Hunger, Thirst, Energy decreases. A QUICK OVERVIEW OF THE HUD Customisation Role Playing Game (RPG) Edition For the RPG Edition of the Really Needy HUD, authorised users (eg. sim owner, Game Master) can adjust how fast roleplayer need meters decrease and what the emotes say. CUSTOMISING NEED EMOTES Authorised users (ie. the Game Master) for RPG Edition can customise the owner emotes when a need meter is at 100%, 80%, 60%, 40%, 20% and 0%. The HUD (and Needy Roleplay Titler) will be auto-attached as part of an Experience. Multiple players can use the HUD without having to acquire/purchase it individually as the Experience will automatically attach the HUD if they are wearing the roleplay group tag. The HUD will detach automatically when they leave the sim. Note: Keyboard shortcuts are available for the common chat commands by using gestures. Refer to notecard in your delivery folder on shortcut keys. Lifestyle Edition For the Lifestyle Edition of the Really Needy HUD, the emotes and rates are not customisable. STANDARD CONSUMPTION RATES The default SL day cycle (if region owner does not set custom time of day or custom day cycle) is four hours long, with three hours of daylight and one hour of night. The following are the standard consumption rates for the Lifestyle Edition (Adult and Lite) which correspond with the SL day of 4 hours RL time. HUNGER consumption rate has been set to 1 hour (3600 seconds), so that roughly speaking your avatar needs to eat 3 times in the SL day. The meter would have fallen to 40% by the end of the SL day if your avatar had not eaten at all. HYGIENE rate is set to 4 hours (14400 seconds). So that you feel the need to take a shower if you have not done so for one SL day. THIRST rate is set to slightly shorter than the Hunger rate (3000 seconds). Usually death by dehydration happens faster than by starvation. TOILET rate is set to slightly more than 1 hour (4000 seconds). Your avatar will need to relieve himself/herself if he/she has not gone to the loo for 3 hours. ENERGY rate is set to 3 hours (10800 seconds). If your avatar does not sleep for 1 SL night, he/she will be tired can still function. If he/she does not sleep for 3 SL days and nights, he/she will be exhausted. CYCLE (PROCREATION) rate is set to 4 hours (14400 seconds) which is one SL day. These Rates (with the exception of Procreation) will become halved when the avatar is resting, and will double if the avatar is pregnant. Rates for the Lifestyle Edition Junior will be faster than the Adult/Lite, depending on their virtual age. Comparison of HUD editions The Lifestyle Edition Adult comes with the Conception add-on, and is thus capable of impregnating a female. The Lifestyle Edition Lite does not include Conception . However it can be purchased & installed separately later. The Lifestyle Edition Junior does not include Procreation need and any of the add-ons. The max values and rates of the meters are lower than grown-ups for players who are roleplaying kids/tweens/teenagers. It works with the Age Controller. The Lifestyle Edition Novice does not include Procreation need and any of the add-ons and is priced at 1L$. Comparison of HUD editions Lifestyle Edition LITE & Lifestyle Edition ADULT Lifestyle Edition LITE / ADULT The Lifestyle Edition LITE or ADULT is for SL residents who desire an immersive experience in Second Life living as their avatars, with a complete set of needs including Procreation. Lifestyle Edition JUNIOR The Lifestyle Edition JUNIOR is for SL residents seeking to roleplay humans of biological ages between 1 to 16 years old, where the needs meters are scaled down from an adult's. The Really Useful Age Controller (sold separately in the store) can be used by another SL resident roleplaying as the parent to change the age setting on the Junior HUD. The maximum needs meter values, and the rates are shown in this table below. The Really Useful Age Controller (Kids) is for ages 1 to 9 . The Really Useful Age Controller (Tweens/Teens) is for ages 10 to 16 . ⚠️ Please note that the HUD is only a roleplay tool for simulating physiological needs. It does not include any avatar shapes. You should note that many of the Really Needy products that have animations may not be customised to kid avatars as well, with a few exceptions (eg. Really Durable Feeding Bottle and Really Comfortable Feeding Pillows). There are also certain products and aspects of the Really Needy ecosystem which have adult themes, so please exercise caution to avoid where required if you have a child avatar and adhere with Second Life Terms of Service at all times. Lifestyle Edition NOVICE Lifestyle Edition NOVICE The Lifestyle Edition NOVICE is for SL residents who do not require the Procreation need or are not ready yet to purchase the LITE or ADULT version. For a detailed comparison with other versions, see here . In addition, Lifestyle Edition NOVICE has the following special features: Earn Sustenance Experience Points (SXP) by eating and drinking. 1 SXP is earned per 20% of Hunger and/or Thirst restored. Earn rewards at each SXP Level when your avatar unlocks a new level on the Novice Leaderboard *. SXP 10 20 50 100 200 400 600 800 1000 1200 1400 1600 SXP Level 0 0 1 2 3 4 5 6 7 8 9 10 Reward Unlock Hygiene need Unlock Toilet need Basket of bread rolls or Plate of bagels or Plate of donuts Really Comfy Teak Chair (with REST script) Really Handy Bathroom Soap Healing potion Unlock ability to take Jobs [Farming - Crop Agriculture] Pack of 5 seeds for beetroot, carrot or spinach [Culinary Arts] Recipe for waffles with strawberries, pancakes with syrup or french toast Lemon sapling, orange sapling or avocado sapling [Farming - Animal Husbandry] Hen Win a Lifestyle Edition LITE HUD * The Really Needy HUD LE Novice Leaderboard is located in The Needy Zone in my in-world store. Note that to receive the reward, your avatar needs to stand within 1m of the leaderboard when the SXP is eligible for reaching the next level. If a level is skipped before going to the board (ie. you did not claim the reward for one level but the SXP is now eligible for a higher level), the reward for the previous level(s) cannot be claimed anymore. Requests for exceptions will not be entertained. Each level reward can only be claimed once. If you lose SXP and gain it back, you cannot claim a reward again. Limitations of the Novice version (1) No Procreation need (2) Cannot install Add-ons (3) Sustenance XP will be lost upon death (4) No RLV features (eg. automatic wearing of BOM layers) (5) Cannot use the Needs Recharging Station (6) Max need is 100% (7) Can only take Jobs from SXP Level 5 onwards Enquiries Enquiries or suggestions? Thanks for submitting! Submit

  • Level 6 | Really Needy HUD

    Level 6 Free weights

  • Conception & Pregnancy | Really Needy HUD

    Condom Conception Add-on Overview Fertility Mobile App Femidom Integration with Mama Allpa and INM Contraceptive Pill Pregnancy Test Kit Physician Bag Auto-Copulation & Auto-Arousal Integration with Physics and VAW Pregnancy Add-on Overview Pregnancy conditions Automatic body changes Baby Baby interactions Cravings Aversions Mood Swings Labour Growth Evolution Baby Prodigy Baby Meds, Supplements and Fruits Affiliate Pharmacies Conception Conception Add-on Overview Conception is an add-on that is included in the Really Needy HUD v3.0 Lifestyle Edition Adult . It is compatible with Physics male genitalia VAW male genitalia Mama-Allpa male and female HUDs It's Not Mine Integration with Mama Allpa and INM For the Pregnancy add-on, please click here to jump below. The design philosophy for the Really Needy Conception & Pregnancy add-ons is a mix of realistic detail (mimicking Real Life) and zany elements (only possible in Second Life). Both add-ons are related to the Procreation need. The Conception add-on covers 4 stages of the mating game: Foreplay Copulation Insemination Conception An optional stage to roleplay before Foreplay is Attraction / Flirtation / Seduction - see Pheromones for more information . Unlike some other fertility HUDs, the Conception add-on allows both Males and Females to initiate copulation. (To change the gender setting on your HUD, just say /male or /female. There is no need to buy different HUDs). The features for male and female avatars are listed in respective columns below. Male 1. FOREPLAY Males will automatically detect Females (with the Conception add-on) in proximity; the Procreation icon will turn purple if a potential mate is detected. When sufficiently aroused (default: Arousal level of 10%), a menu will pop-up to show the nearby Females which your male avatar can copulate with . A copulation request will be sent to the chosen Female, who can choose to say Yes (accept) or No (decline). 2. COPULATION If the Female accepts the copulation request from your avatar, the Procreation icon will turn red to indicate the HUD is in Copulation mode. 3. INSEMINATION If your avatar ejaculates while in copulation mode with the Female, this is insemination. Additional features Withdraw before ejaculation to avoid insemination Condoms to block insemination Configure level of Arousal to ejaculate 4. CONCEPTION Chance of conception (ie. becoming pregnant) depends on combination of male fertility and female fertility Male fertility factors Sperm motility - fitness level Sperm count - body mass index, last time ejaculated Alcohol/tobacco/drugs consumption Female 1. FOREPLAY Females will automatically detect Males (with the Conception add-on) in proximity; the Procreation icon will turn purple if a potential mate is detected. When sufficiently aroused (default: Arousal level of 10%), a menu will pop-up to show the nearby Males which your female avatar can copulate with. Choose which Male your avatar wishes to copulate with. 2. COPULATION The Male will receive a notification that your avatar has opened herself to him. The Procreation icon will turn red to indicate the HUD is in Copulation mode. Additional features Forced mode can be turned on so that Male's copulation request cannot be declined If your avatar is very drunk, she cannot decline copulation requests 3. INSEMINATION If the Male ejaculates while in copulation mode with your avatar, this is insemination. Additional features Contraceptive pill to block insemination Femidom (female condom) to block insemination 4. CONCEPTION Chance of conception (ie. becoming pregnant) depends on combination of male fertility and female fertility Female fertility factors Day of cycle Fitness level Alcohol/tobacco/drugs consumption Arousal/orgasm bonus If conception is successful, your avatar will not know immediately that she is pregnant. There may be certain signs as her Cycle progresses that things are a little different. If pregnancy is suspected, a pregnancy test may be taken. Eventually, your avatar will realise that she is pregnant, and the Pregnant icon on the HUD will light up. Read the section on Pregnancy for what happens next. MALE CONCEPTION SETTINGS Say /24 in chat to summon the Conception Settings menu Mate - use this to manually select a female nearby (with Conception add-on) to copulate with Withdraw - choose this if you intend to withdraw before ejaculation. If you choose too early, your avatar will forget to withdraw when he is in the throes of passion Ejaculation threshold - 100% is the default. Choose 60%, 70%, 80% or 90% for premature ejaculation (still has impregnation risk) Copulation threshold - Choose from 10% to 80%. You will be asked which female nearby your avatar wants to copulate with when your avatar reaches this Arousal level. (The female must have Conception add-on) FEMALE CONCEPTION SETTINGS Say /24 in chat to summon the Conception Settings menu Mate - use this to manually select a male nearby (with Conception add-on) to copulate with Stop - choose this to stop copulating DND (Do Not Disturb) - choose O N to auto-reply that your avatar is not availa ble when she receives a copulation reque st. Choose OFF to ask (default). Forced - Choose ON to auto-accept copulation requests. Choose OFF to ask (default). Copulation threshold - Choose from 10% to 80%. You will be asked which male nearby your avatar wants to copulate with when your avatar reaches this Arousal level. (The male must have Conception add-on) SIM SCAN If there are no potential mates nearby, you may use this chat command "/24 simscan" to scan the region for Really Needy HUD users with Conception add-on . Only users of opposite gender to your avatar will be listed. (You can set the gender for your avatar in the HUD by saying /male or /female) FERTILITY MOBILE APP The "Really Useful Fertility App" (sold separately) will allow you to turn on or off the Fertility Info for your male or female avatar reported by the Really Needy HUD. The Fertility Info is OOC roleplay information which is shown in private chat message and marked with a 🛈 icon in the front of the message. It provides information on your fertility score (%), any modifiers to your fertility score due to changes to the fertility factors (described in section above) and the chance of pregnancy at the point of insemination. Fertility Info excludes information about whether your avatar is pregnant. The "Really Useful Fertility App" takes the form of a mobile phone that attaches to right-hand of your avatar, with two bento hold animations. The screen is a static image for roleplay purposes only. Fertility mobile app Fertility Mobile App Condom CONDOM The "Really Thin Condom" is for use by male avatars, to be worn before copulation. If your avatar wears it properly , there is a 88% chance it will block insemination. If your avatar pretends to wear it properly (ie. intending to impregnate the female rather than prevent it), it will not block insemination, even though it will appear to his mate that he is wearing a condom. A limited number of free condoms per weekend are available via the condom dispenser at the Pharmacy @ Rainy City. Integration with Physics Cock condom feature < NSFW image. Mouseover to reveal Really Thin Condom The "Really Thin Condom" has a special feature that integrates with The Physics Cock (v2.3), allowing the condom to appear automatically on the cock upon wearing. Usage instructions (with Physics cock) Add/wear the condom and it should attach to right hand Click on it. A menu will pop-up asking if your avatar is intending to wear it properly. Choose " Yes " to wear it properly, and " Pretend " to pretend to wear it properly. The condom should appear on the Physics Cock. If your avatar does not have a Physics cock, not to worry. You can still enjoy the contraceptive function even though you will not be able to visually see the condom on your avatar's penis. Usage instructions (WITHOUT Physics cock) Add/wear the condom and it should attach to right hand Click on the condom and HOLD your mouse button down for 3 seconds before letting go. A dialog menu will pop-up with the text "[NO PHYSICS COCK]", asking if your avatar is intending to wear the condom properly. If you did not see this text, then close the dialog and try again. Choose " Yes " to wear it properly, and " Pretend " to pretend to wear it properly. FEMIDOM / CERVICAL CAP / DIAPHRAGM This is a female contraceptive to be inserted by the female into herself. (Copy permissions, re-usable). It is 79% effective in blocking insemination. The Really Needy HUD refers to Cervical Cap and Diaphragm generally as a "femidom" when inserted. For more details on how they work, refer to this page . Femidom CONTRACEPTIVE PILL The pill works by thinning the walls of the womb and preventing the sperm from joining with the egg. The pill lasts for 5 SL days after consumption, so it is recommended to eat it on Day 10 of the Cycle. Contraceptive Pill PREGNANCY TEST KIT The "Really Accurate Home Pregnancy Test Kit" (sold separately) is a pregnancy test your avatar can perform by herself at home without any physician. It is 99% accurate. Steps: Check your avatar has some urine to pass. If Toilet meter is 100%, there is no urine to pass; wait till it goes lower. Right-click on the test kit in inventory and choose Add. It should attach to right-hand. Click on the test kit to remove the overcap and expose the sampling tip. (The overcap is pink in colour). Sit on your toilet and urinate on the sampling tip of the test kit. (Say /use in chat and sit on your toilet, as per what your avatar does normally to relieve Toilet meter.) After the wait period (30 seconds), the test window of the kit will display either one line or two lines. Single line (also known as Control Line) indicates the test is working correctly and your avatar is not pregnant . Double lines indicate the test is working correctly and your avatar is pregnant . No line means the test was not performed correctly. Pregnancy Test Kit Physician Bag PHYSICIAN BAG If your avatar is a doctor or physician, this bag (sold separately) will allow your avatar to do the following for other avatars [1] Fertility test (target must have Conception add-on) [2] Pregnancy test (target must have Conception add-on) [3] Set pregnancy duration * (target must have Pregnancy add-on) - 10 SL days , 10 SL weeks (default), or 10 SL months [4] Check expected delivery date (target must have Pregnancy add-on) - only works when delivery date is close by 🚼 [5] Check baby gender (target must have Pregnancy add-on) 🚼 [6] Check labour duration (target must have Pregnancy add-on) 🚼 NEW [7] Set labour duration (target must have Pregnancy add-on) 🚼 [8] Check avatar weight (target must have Blood Alcohol Content add-on) [9] Set avatar weight (target must have Blood Alcohol Content add-on) [10] Treat priapism (target is male and has prolonged painful erection due to overdosing on aphrodisiac) [11] Check pregnancy difficulty 🩺 NEW [12] Conduct examination 🩺 NEW Notes The target avatar will be asked by the bag to provide consent for the chosen menu option. NEW are features in Version 3.0. * For 10 SL day/week/month durations only. To set duration based on RL months, user needs to choose "RL duration" option during Pregnancy v2.1 installation and use the Really Smart Watch instead. 🚼 Requires Growth Evolution Baby or Prodigy Baby. Otherwise this feature only works if the Bag is owned by the baby's mother. 🩺 These functions are only accessible to users with the Physician role in the Really Needy Roleplay group. Auto-Copulation & Auto-Arousal AUTO-COPULATION AVSitter2-ready furniture can be configured to auto-confirm copulation (based on pre-defined list of couple animations) without going through the copulation request process or choosing who your avatar wishes to copulate with. Making your AVSitter2 furniture enabled with Auto-Copulation only requires the addition of a Auto-Copulate script. The script source-code is provided free of charge if you are able to self-service to install it yourself in your furniture and input the names of the selected animations (where vaginal intercourse is involved) into the script . If you require help with the above, a 300L fee is payable for customising a script for you (no mod, yes copy, no transfer). You will be required to provide the AVPos card and the names of the selected animations. The script will be sent to you. Adult furniture makers may contact me to get the logo to show your product is Auto-Copulation ready. Please provide landmark to your in-world store and link to your MP store. You can integrate the source code with your existing scripts for your furniture instead of having to add one more script. Your store will be added to this directory of furniture makers with Auto-Copulation enabled furniture so that Really Needy HUD users can find your store easily. AUTO-AROUSAL For Auto-Copulation enabled furniture, users also have the option of adding Auto-Arousal - this makes the Arousal meter of your avatar to increase steadily without having to use the Really Erogenous Zones or clicking the Arousal icon manually. If copulation animations are selected on the furniture with both Sitter0 and Sitter1 seated, their Arousal meters will increase at a rate of 3% every 10 seconds. If foreplay animations are selected on the furniture with both Sitter0 and Sitter1 seated, their Arousal meters will increase at a rate of 3% every 20 seconds. The default rate of 3% can be changed by the furniture owner via the configuration notecard. Setting up which animations are categorised as 'copulation' and which animations are 'foreplay' is done through the Auto-Copulation script. Requirement: A [SEX] script (sold separately) and configuration notecard needs to be put into the Contents of the furniture, for Auto-Arousal f eature to work. Your furniture must also be already setup with Auto-Copulation (read above). INTEGRATION WITH MAMA-ALLPA (MA) Cross-insemination between Mama Allpa (MA) and Really Needy HUDs is supported with the Conception add-on. A male with Mama-Allpa HUD is able to inseminate a female with Really Needy HUD Either male or female can initiate Copulation mode with Really Needy HUD, OR female can open herself to the male using MA HUD When male selects ' cum in vagina ' with MA HUD, the female Really Needy HUD will detect the insemination Requirements: Male wearing MA HUD (Really Needy HUD optional) Female wearing MA HUD and Really Needy HUD If the male is not wearing Really Needy HUD, a fertility score of 50% is used for calculating pregnancy chance A male with Really Needy HUD is able to inseminate a female with Mama-Allpa HUD Either female or male can initiate copulation using Really Needy HUD When male ejaculates with Really Needy HUD, the female MA HUD will receive a 'cum in vagina' event Requirements Male wearing Really Needy HUD (MA HUD optional) Female wearing MA HUD and Really Needy HUD INTEGRATION WITH IT'S NOT MINE (INM) The Really Needy HUD can interact with the INM system of your female avatar. She will need to wear the " Really Needy HUD relay for Mama-Allpa and INM v3 " (sold separately, shown in pic below). The features are as follows. I f your female avatar is in Copulation mode with a male, and she receives " cum in pussy " via the INM system, the Conception add-on will detect this event as insemination. If she receives cum in or on other parts of the body via INM, this is not insemination but it will decrease her Hygiene by 10% for each cum-load. She can use a INM shower or the Really Luxurious Shower Cabin with INM cleanup to restore Hygiene to 100%. INTEGRATION WITH THE PHYSICS COCK ("The P") Integration with the condom feature of The P has been described in section above. If your male avatar is in Copulation mode with a female, pressing the Cum button on the Animation HUD for The P will result in ejaculation as well as insemination. INTEGRATION WITH VAW XTC COCK If your male avatar is in Copulation mode with a female, pressing the Cum button on the VAW XTC Cock HUD will result in ejaculation as well as insemination. Integration with Physics and VAW If you have any feedback or suggestions on the Conception add-on, feel free to leave a message via the box at the bottom of this page or contact me for an invite to join our Discord server. Buy the Conception add-on on Marketplace Buy Note: The Conception add-on is included when you buy the Really Needy HUD Lifestyle Edition Adult at my in-world store. Pregnancy Pregnancy Add-on Overview The Pregnancy add-on covers the following stages of roleplay experience, after Conception : Pregnancy first trimester Pregnancy second trimester Pregnancy third trimester Labour The Really Needy HUD pregnancy has a default duration of 10 SL weeks . Your avatar's unborn baby will grow the equivalent of 1 month of a RL baby in a span of 1 SL week. (1 SL day = 4 RL hours, so 1 SL week is 28 RL hours if you do not log off). It is possible to change the pregnancy duration to 10 SL months or 10 SL days using the Physician Bag. Note: If you don't like 10 SL weeks or 10 SL months or 10 SL days, Mama Allpa users have one more option - you can try using the 'Really Needy HUD relay for Mama Allpa' (v3) to synchronise the Really Needy HUD's cycle to your Mama Allpa's cycle. PREGNANCY ADD-ON INTRODUCTION VIDEO Watch on YouTube (age restricted) KEY MOMENTS Automatic shape and skin changes 00:19 Aversions 01:19 Cravings 02:26 Breast Sensitivity 05:31 Baby Interactions 05:58 Breast Tenderness 06:41 Nausea 06:55 Rhinitis 07:13 Bloating 07:28 Nose Bleed 07:55 Acne 08:15 Constipation 08:40 Heartburn 08:50 Dizziness 09:03 Insomnia 09:17 Stretch Marks 09:33 Vaginal Discharge 10:13 Incontinence 10:24 Varicose Veins 10:49 SUMMARY OF KEY FEATURES 1. Chance of developing pregnancy conditions Digestive bloating nausea / vomiting heartburn constipation Circulatory/Respiratory/Neurological dizziness nose bleeds* insomnia* rhinitis* Urinary / Reproductive incontinence vaginal discharge Epidermal acne* breast tenderness^ stretch marks* varicose veins* 2. Automatic changes to avatar shape and skin (month by month) areola darkening* and bumps* breast veins* (trimester 1, trimester 2, trimester 3) user-defined changes in avatar shape and skin (chubby belly and linea nigra) 3. Mesh pregnant belly integration 4. Mesh unborn baby + effects on mommy baby automatically growing in size in mommy's tummy baby interactions cravings mood swings 5. Labour 6. Support for lactation features to be developed in the future * Includi n g automatically activating BOM tattoo layers created by Izzie's . ^ Including integration to Good Moaning Boobs Rubber. If you have any feedback or suggestions, feel free to contact me for an invite to join our Discord server. 1. Pregnancy conditions Pregnancy conditions Depending on which trimester/month of the pregnancy your avatar is in, there is a higher or lower random probability of developing a pregnancy-related medical condition. These are the conditions which have a relatively higher probability to occur, by trimester: Trimester 1: bloating, nausea, rhinitis, acne, breast tenderness Trimester 2: bloating, nausea, heartburn, constipation, nose bleed, rhinitis, acne Trimester 3: bloating, insomnia, varicose veins Once your avatar develops the condition, the condition could worsen unless she takes certain actions to remedy them. Some conditions can also be triggered by specific actions taken by your avatar (eg. aversions to particular foods eaten) or not taking care of certain needs (eg. not drinking enough water or going hungry). In collaboration with leading cosmetics brand Izzie's (very popular for realistic skin imperfections), the following conditions will also trigger BOM layers to be automatically applied on your avatar: Acne - face and body Insomnia - face (dark eye circles) Nose bleed - face Rhinitis - face (runny nose / red nose) Stretch marks - body (breasts, abdomen, lower body) Varicose veins - body (legs) Lelutka Evo X versions are included for face. Bloating TRIGGERS Random EFFECTS Burping, flatulence, bad mood (facial expressions) Read More REMEDIES Drinking water, probiotics, peppermint tea, green bananas, exercise Heartburn TRIGGERS Random, eating particular foods (citrus fruits, chocolate, coffee etc.) EFFECTS Pain in chest, GERD Read More REMEDIES Ginger tea, pineapple, probiotics, [honey milk] Breast Tenderness TRIGGERS Random, touch EFFECTS Pain, loss of arousal Read More REMEDIES Hot compress Nose bleed TRIGGERS Random, teleportation, flying EFFECTS Nose bleed (BOM layer) Read More REMEDIES Hot shower, Vitamin C supplement, fruits with high Vitamin C (pomelo, mikan, kiwifruit, pink strawberries, premium oranges, lemons) Stretch Marks TRIGGERS Random EFFECTS Stretch marks appearing on tummy, breasts, butt and thighs (BOM layers), itchiness Read More REMEDIES Stretch mark cream, [coconut oil massage] Insomnia TRIGGERS Random, caffeinated drinks EFFECTS Resting does not restore Energy, eye-bags (BOM layers) Read More REMEDIES Sleeping pill, orgasm, [honey milk] Vaginal discharge TRIGGERS Random, low hygiene EFFECTS Discharge causing drop in Hygiene (unless wearing tampon/pad) Read More REMEDIES Probiotics, green bananas, [fenugreek seed tea] Nausea TRIGGERS Random, smell/taste (aversions), eating too much EFFECTS Feeling sick, vomiting, hyper-emesis Read More REMEDIES Ginger tea, vitamin B6, green bananas, avocados, bed rest, anti-sickness meds Dizziness TRIGGERS Random, [standing for too long], hungry, thirst, insufficient iron, [heat], EFFECTS Dizziness, vertigo Read More REMEDIES Iron supplement, ginger tea*, almond milk*, [honey milk*], Vitamin C supplement, fruits with high Vitamin C (pomelo, mikan, kiwifruit, pink strawberries, premium oranges, lemons) Rhinitis TRIGGERS Random EFFECTS Sneezing, red / runny nose (BOM layers) Read More REMEDIES Anti-histamine, hot shower, sleeping pill Acne TRIGGERS Random, low hygiene EFFECTS Acne appearing on face / body (BOM layers) Read More REMEDIES Acne cream, [facial] Incontinence TRIGGERS Random, sneezing, laughing, filled bladder EFFECTS Loss of bladder control Read More REMEDIES Peeing, Kegel exercises using Ben Wa Balls Constipation TRIGGERS Random, insufficient hydration, excessive iron EFFECTS Pain, health damage Read More REMEDIES Fibre from fruits (dragonfruit, pomegranate, avocado), probiotics, lots of fluids, exercise, laxative Varicose veins TRIGGERS Random, [Standing for too long] EFFECTS Veins appearing on the legs (BOM layer) Read More REMEDIES Vitamin C supplement, fruits with high Vitamin C (pomelo, mikan, kiwifruit, pink strawberries, premium oranges, lemons), [leg elevation], [compression stockings] Note: 1. Items in [square brackets] above have not been implemented yet. 2. Items marked with * above requires Pregnancy add-on v2.0 for the remedy to work for the condition. TIP: If your avatar is pregnant, the consumption rate for ENERGY is twice as fast as normal. If your avatar is well-hydrated (Thirst >70%) and has sufficient iron though, your avatar will not feel fatigued as easily (ENERGY consumption rate will go back to normal). This is a basic feature that has been in earlier versions of the HUD, and does not require the Pregnancy add-on. 2. Automatic changes to avatar body Automatic body changes Automatic changes in avatar shape You can setup how your avatar's body shape will change over the course of her pregnancy, for each month*. The Pregnancy add-on will automatically wear the shapes based on the month*. Your viewer needs to be RLVa-enabled. Sub-folders need to be created inside the Body folder for each month* You will need to make/edit the avatar shapes and put into each sub-folder in advance. Some suggestions here for the Edit Shape sliders, but feel free to use what visually makes sense for your avatar: Increase Breast Size slightly in each Trimester (eg. by 5 to 10) Increase Body Fat in Trimester 2 (eg. by 5) and Trimester 3 (eg. by another 5) Increase Love Handles slightly each month from Month 3 onwards Increase Butt Size and Saddle Bags from Month 5 onwards * If your avatar's pregnancy duration is the default 10 SL weeks, then each 'month' will actually be 1 SL week. For ease of explanation, 'month' in this section refers to the equivalent of one month in RL pregnancy. Automatic changes in avatar skin (in collaboration with leading cosmetics brand Izz ie's ) Your avatar's areola, breasts and belly may change in appearance over the duration of the pregnancy. You can customise how dark the areola looks or how prominent the breast veins are by choosing the version of the BOM layer you like and copying them into the relevant folder . Month 3 10% chance (per SL day) that your avatar will develop Darkened areola & areola bumps (Montgomery glands) 20% chance (per SL day) that your avatar will develop Breast veins - Trimester 1 Month 5 20% chance (per SL day) that your avatar will develop Breast veins - Trimester 2 Month 8 20% chance (per SL day) that your avatar will develop Breast veins - Trimester 3 User-defined Month You can choose which month to apply the ' pregnancy belly ' and ' pregnancy line ' skin effects on your avatar by copying the layer into the relevant folder For example, M2 or M3 onwards for pregnancy belly and M7 onwards for both pregnancy belly + line The pregnancy line, also known as the Linea Nigra , is a dark vertical line that appears on the skin of the stomach during pregnancy. It runs from the belly button to the pubic area. Not all women will develop this. Breast veins Darkened areola & areola bumps Pregnancy line (Linea Nigra) 3. Mesh pregnant belly integration If you have a pregnancy mesh belly or baby bump which is modifiable and copy, you may save a version with different size in each folder from M2 to M9 . For example, I have the Pregnant Belly v3.01 for Maitreya from Chrysanthemum, and it comes with a HUD for setting a size for each of the 9 months. I then saved each version in the respective month's folder together with the shape. In that way, the pregnant belly of the appropriate size is also worn automatically together with the avatar shape, as the pregnancy progresses to each month. If you are a maker of pregnant mesh bellies, please approach me to explore the possibility to have a communication channel between the Really Needy HUD Pregnancy Add-on with your mesh belly so that the size can automatically adjust based on the month of pregnancy. If you are a Really Needy HUD user, please post in the Discord server regarding which brand mesh belly you use. If we have enough customers of particular brand, we can lobby the brand owner to explore cross-product compatibility. 4. Mesh unborn baby + effects on mommy Baby UNBORN BABY Your avatar may not realise that she is pregnant until she misses her period (unless she takes a pregnancy test). When she realises, the pink pregnancy icon on the HUD will light up. At that point of time, the unborn baby (in the Baby sub-folder under Pregnancy folder) will be automatically attached to the Stomach. The baby will automatically grow in size day-by-day. Your avatar can interact with the baby. The baby will cause your avatar to have cravings and mood swings. The Pregnancy add-on includes a standard "unborn baby" with 2 mesh growth stages. Early stage fetus Unborn baby NEW Check out the Growth Evolution Baby below for more realism and roleplay options. Baby Skin Tone Picker A skin tone picker HUD will be provided so that you may pick a skin tone for the unborn baby closer to your avatar or her partner, if you wish. Note that in RL, the skin of newborn babies tends to have a dark red or purplish color regardless of race. The mesh model of the baby has specular highlights which are purplish. BABY INTERACTIONS From the second trimester onwards, click on the baby to interact with it to develop a bond between your avatar and the baby. Once or twice a SL day is more than enough; regular interactions is good but it is also ok to skip days. If the baby is sleeping, try again later. If the baby is not sleeping, any reaction or response is a successful interaction. After a successful interaction, there is a 'time-out' for a short interval before you can interact again (baby will ignore you if you click again). The bond is a telepathic link to know what the baby is feeling or doing. After about 10 to 20 days of interaction, the baby may let mommy know if it likes the flavour of certain things consumed. The stronger the bond, the more emotes are unlocked including: reactions to laughter, arousal and orgasm; telling mommy when is the expected delivery day. The gender of the baby can also be influenced based on what your avatar eats - watch the video above to find out. If you have suggestions for this feature, please post in the Discord channel #idea-bank. Or use the feedback form below. CRAVINGS Your avatar may develop cravings around the latter part of the first trimester and throughout the second trimester. (Week 3 to 6 for duration of 10-week SL pregnancy). If she satisfies each craving, she will only experience a maximum of 5 cravings during one SL pregnancy. She will only have maximum of 1 craving at any one time (or none). Craving intensity levels will progress from Low to Strong to Intense if not satisfied. The progression from Low to Strong is within an hour (random). The progression from Strong to Intense is within half an hour (random). If a craving is not satisfied by the time it reaches Intense level, she will have a Bad Mood and start to frown (a facial animation will be activated for Lelutka EvoX heads, showing her dissatisfaction). If the craving is ignored, eventually it goes away or may be replaced by another craving. There is an equal chance (randomly determined) to develop cravings for one of the 30 items listed in orange below. The first 28 items are items to be consumed in order to satisfy the craving. To satisfy the SEX craving, your avatar needs to reach an Arousal level of at least 50%. To satisfy the ORGASM craving, your avatar needs to reach an Arousal level of 100% (ie. orgasm). Note: Cravings is an optional feature for your avatar's pregnancy. You can choose not to install this feature when installing the Pregnancy add-on. Baby interactions Cravings CRAVINGS Savory high-calorie foods PIZZA CHIPS HAMBURGER Red meat / animal protein RED MEAT ANIMAL PROTEIN Fruit STRAWBERRIES CHERRIES Carbohydrates CEREAL CARBS (RICE, POTATOES) Cold foods / sweet high-calorie dairy ICE CREAM MILKSHAKE MILK Sour foods PICKLE LEMON Spicy Food SPICY FOOD High-calorie sugary foods SWEETS CHOCOLATE PEANUT BUTTER DONUT Pica ICE CRAYON DIRT ASH CHALK CLAY SO AP TOOTHPASTE DETERGENT Non-food craving SEX ORGASM Note: Some of these items may not exist in the Really Needy economy yet as a consumable. You are welcome to make your own for your own use or to sell to other users. AVERSIONS Proximity to and consumption of certain foods will trigger Nausea . Consumption of certain foods will trigger Heartburn , Bloating or Insomnia . The default installer has Aversions for 28 items. If your avatar is in the second trimester and you are feeling brave or loving the aversions, you can request me to give you the installer for Aversions for 44 items. Note: Aversions is an optional feature for your avatar's pregnancy. You can choose not to install this feature when installing the Pregnancy add-on Aversions Mood Swings MOOD SWINGS Your avatar has a chance of experiencing a Mood Swing each SL day , in certain weeks of her 10-week pregnancy: - 5% in Week 3 and 4 - 10% in Week 5, 6 and 7 - 20% in Week 8, 9 and 10 The 5 basic moods are: Happy, Anxious, Emotional, Irritable, Annoyed Each mood is accompanied by a facial animation (Lelutka EvoX head required) One mood may switch to another swiftly ranging from within a few minutes to several minutes The 3 extra moods are: Baby Brain , Honeymoon Phase , and Power Nesting These moods require a bit more roleplay on your part - this article might help. Baby Brain - Progesterone is at sky-high levels during early pregnancy. While it is a calming hormone, it can also cause fogginess and forgetfulness. Your avatar might make mistakes like watering an artificial plant, or giving cat-food to the dog. Honeymoon Phase - This mood is unlocked in the second trimester. After a difficult first trimester, your avatar might be cruising into the second, feeling like she got a handle on the various pregnancy conditions. Her baby bump is much more noticeable now, and she feels like a celebrity. She may feel more perky, and possibly horny in weird timings. Power Nesting - This mood is unlocked in the third trimester. Due to an increase of oxytocin, the nesting hormone that prepares your avatar's uterus for labour and her breasts for nursing, she has a powerful urge to get everything cleaned, organised, and prepared for the baby's arrival. There is also a Bad Mood , which may be triggered by Not satisfying an intense craving Hunger / Energy / Hygiene needs falling below 50% Note: Moods is an optional feature for your avatar's pregnancy. You can choose not to install this feature when installing the Pregnancy add-on. Labour 5. Labour (Updated in Pregnancy add-on version 1.1 ) What to expect (Mouse-over box to reveal spoilers) PRE-DELIVERY On the day that your avatar is going to give birth, her water will break (Really Wet Pussy required for puddle). 15 minutes after that, the labour starts, so you have a short period of time to get your avatar to the hospital or to call your mid-wife / doctor / partner. STAGE 1 First stage of labour starts from contractions to full cervix dilation. The simulation includes emotes, facial expressions on your avatar (Lelutka Evo-X head required) and the baby moving down the birth canal. STAGE 2 Second stage of labour starts from full cervix dilation till delivery of baby. The simulation includes emotes, facial expressions on your avatar (Lelutka Evo-X head required) and the baby being born. Once the baby is born, the pregnancy icon on your Really Needy HUD should turn off. Note that if you are using Mama Allpa to over-ride the pregnancy duration of the Really Needy HUD, you should update the pregnancy condition in Mama Allpa to not pregnant, or else detach your relay, or detach your Mama Allpa. Otherwise the relay will make your Really Needy HUD status as pregnant again the next time it checks the status of your Mama Allpa. STAGE 3 Third stage of labour is the delivery of the placenta. The simulation includes emotes and facial expressions on your avatar (Lelutka Evo-X head required). The completion of stage 3 will cause your avatar's body to revert back to baseline shape (if you have setup the folders). If you simply detach the 'unborn baby' in inventory after stage 2 without completing stage 3, your avatar's shape / tummy may still look pregnant. LABOUR DURATION Default labour duration is 25 minutes (15 min for stage 1 and 2; 10 min for stage 3). That's pretty quick, so if you would to roleplay out this part of the pregnancy a little longer, you can extend it before delivery date. The Really Useful Physician Bag v2 can extend the labour duration from 25 minutes to 40 minutes or 60 minutes. If you would like to skip stage 3 of labour, detach the 'unborn baby' in inventory (after stage 2), and add it again. It should skip forward to the part where your placenta has already been delivered and allow you to complete stage 3. 6. Lactation features in the future Got milk? (If you have any suggestions for this future feature, feel free to send me a private message or post in Discord.) Buy the Pregnancy add-on on Marketplace Buy See the demo and buy the Growth Evolution Baby in-world Growth Evolution Baby The Growth Evolution Baby is a replacement for the standard baby in the Pregnancy add-on for even greater realism. KEY FEATURES 5 mesh growth stages from fetus to full-term baby Works with Physician Bag (v2 and above) owned by others or self to detect expected date of delivery and gender Support for enhanced labour options for roleplay with qualified Physicians (induction, pausing/resuming labour) 4 skin tones Prodigy Baby The Prodigy Baby has all the features of the Growth Evolution Baby, plus advanced chatbot functions and more. KEY FEATURES 5 mesh growth stages from fetus to full-term baby Works with Physician Bag (v2 and above) owned by others or self to detect expected date of delivery and gender Support for enhanced labour options for roleplay with qualified Physicians (induction, pausing/resuming labour) 4 skin tones Advanced chatbot functions The Prodigy Edition baby comes with two of the three scripts from The Really Useful Chatbot Script series, customised to work with the Pregnancy add-on to provide you and your loved ones with hours of interactive roleplay fun! Key functions: configure different greetings (or emotes) your baby will say upon touch to the mother, father and 2 other family members provide chat phrases (or emotes) which your baby will say randomly and how often (using a notecard) provide responses to key words / phrases which your baby hears in public chat (using a notecard) SmartAttention feature to detect distance and direction of speaker to determine if baby is being spoken to ability to tailor above greetings/chat/responses by trimester Related Items - Medicines, Supplements, Fruits Meds, Supplements and Fruits These are pictures of some items mentioned above. Affiliate Pharmacies Affiliate Pharmacies Here are our Featured Affiliate Pharmacies. Rainy City Pharmacy Urban roleplay Jody's Pharmacy Urban roleplay Montlaur Pharmacy Urban roleplay Breath of Life Maternity Home Medical roleplay (German speakers are welcome) Graceful Beginnings Family Care Urban roleplay Kulture Springs Clinic Urban roleplay Applying to be an affiliate pharmacy If you operate a pharmacy, maternity centre, clinic or hospital (for roleplay) and are interested to become an affiliate by distributing pregnancy-related items for the Really Needy HUD, please contact me with a landmark to your location to apply. [Update as of 9 Aug 2025: An application to become an affiliate pharmacy is no longer required. Simply buy the Affiliate Pharmacy Vendors-in-a-box from my in-world store for 500L.] NOTICE & DISCLAIMER An affiliate pharmacy just means the location is setup with vendors that sell products relating to the Really Needy HUD. It does not mean that the owner or staff of the affiliate pharmacy have the Pharmacist or Physician tag in the roleplay group, or possess the requisite knowledge to provide advice regarding the usage of the products. f you are a Really Needy HUD user with Disease/Conception/Pregnancy add-ons and need advice ( ROLEPLAY ONLY ) on Needy medications, supplements or pregnancy-related products, you may choose to contact Pharmacists/Physicians in the Really Needy Roleplay group, at your own discretion. They are also users / roleplayers and are not actually licensed nor employed by the HUD creator. For customer service or help with the HUD, you are welcome to contact creator directly in-world or submit a support ticket on our Discord server. Users can submit a job application for Pharmacist or Physician if you wish to roleplay as Pharmacist or Physician. A knowledge test will be required and if you pass you will be assigned the tag for Pharmacist or Physician in the Really Needy Roleplay group. The Caspervend vendor type is 'headless vendor' for the above products. Permissions: no modify, yes copy, no transfer. Affiliates have the option to be listed on this webpage section as a Featured Affiliate , along with the name of your SL business, an image and SLurl To apply to be listed, IM me and simultaneously send me a landmark to your location. Your location needs to be ready (not under-construction), and you should also have placed out the above affiliate pharmacy vendors. Listing fee is 600L if your application is accepted. If your location is de-listed, you will have to apply and pay again to be listed. Your location will be de-listed if the vendors cannot be found within 25m of the landing point by taking the SLurl. If your landmark or SLurl leads to a different landing point than that of your pharmacy / clinic location (due to sim teleport routing), your application will be declined / your location may be de-listed. BE A REALLY NEEDY AFFILIATE WITH YOUR OWN PHARMACY Ideas, suggestions and feedback

  • Procreation | Really Needy HUD

    Procreation Pheromones Integration with genitalia Aphrodisiacs Really Wet Pussy Really Orgasmic Vibrator Lovense integration Procreation Procreation Procreation is one of the Needs in The Really Needy HUD Lifestyle Edition Adult and Lifestyle Edition Lite . It is not available for Lifestyle Edition Junior and Lifestyle Edition Novice . Procreation has 2 modes Arousal mode - for both Males and Females Cycle mode - for Females only QUICK TIP Use "/arousalon" and "/arousaloff" in chat to switch between the modes. Or the shortcut keys. The Lifestyle Edition Adult and Lifestyle Edition Lite incl udes the PHEROMONES add-on and support for APHRODISIACS Also, the Really Needy HUD has partnered with popular mesh genitalia brand, VAW in addition to The Physics Cock, The V Bento and Aeros , to bring more realism and pleasure to your Second Life. The enhancements are listed in the section on "Integration with Leading Mesh Genitalia Brands" below . AROUSAL MODE In Arousal mode, the meter will display five levels of arousal and clicking the icon on the meter will increase the level of arousal slowly. Male Your experience can be enhanced with the Really Erogenous Zone (Male) * Touching of your Ero-Zones will also elicit arousal. Self-touching or touching by others are both possible. Arousal level is measured from 0 to 100, where 0 indicates no arousal and 100 indicates orgasm. Integration with The Physics, VAW and Aeros genitals Stroking of the Ero-Zone which you wear over your mesh cock will raise Arousal meter Your mesh cock will grow erect as Arousal meter rises When Arousal reaches 100 (orgasm), the mesh cock will ejaculate. Arousal drops to a low level post-orgasm Pee button on cock HUD restores Toilet need * Sold separately Buy Now Female Your experience can be enhanced with the Really Erogenous Zone (Female) * Touching of your Ero-Zones will also elicit arousal. Self-touching or touching by others are both possible. Arousal level is measured from 0 to 100, where 0 indicates no arousal and 100 indicates orgasm. Upon orgasm, arousal level drops moderately, such that continued stimulation could result in multiple orgasms. Integration with The V Bento and VAW Vagina Masturbation animation in your The V Bento / VAW Vagina HUD increase your avatar's Arousal level Pee button restores Toilet need 'Squat pee' gesture restores Toilet need * Sold separately Buy Now CYCLE MODE Female : In Cycle mode, the meter will simulate 28 days of the female cycle, through owner emotes. Note: If you activate Pregnancy mode, the Cycle mode will be automatically turned off. There are effects on Needs on specific days of the 28 day cycle, as follows Day 1 to 4 : Hygiene will drop by 40% at the start of each Day, unless a Tampon is worn Day 1 to 2: Energy will drop by 20% at the start of each Day Day 5: Hygiene will drop by 20% unless a Tampon is worn Day 27: Hunger will drop by 20% at the start of the Day Buy Now Other features relating to your avatar's Cycle & Pregnancy Automatically apply BOM layers for breast veins due to menstrual cycle and/or pregnancy. Automatically increase breast size due to menstrual cycle and/or pregnancy. Automatically wear a different avatar shape if pregnancy mode in Really Needy HUD is activated. Sync the days of the Cycle and pregnancy status with the Mama Allpa (a third party pregnancy HUD) by wearing a relay . Male : Should there be an equivalent feature for males related perhaps to testosterone or sex drive? Your suggestions on how this feature might work will be most welcome. Integration with genitalia Really Wet Pussy v4 Integration with VAW XTC Vagina (v2.26 and up)** "PLAY" button in the VAW Vagina HUD will slowly increase your Arousal level, until your avatar cums "PEE" button in the VAW Vagina HUD will restore Toilet meter Integration with The V Bento (v1.51 and up)* "Fingering Self" animation in The V Bento HUD will slowly increase your Arousal level Pee button of The V Bento HUD will restore Toilet meter 'Squat pee' gesture will allow you to relieve yourself and restore Toilet meter* (even if you cannot find a toilet :p) If The V Bento is worn, the V Bento pee particle stream will be used instead of the default particle stream* If the VAW Vagina is worn, the VAW Vagina pee particle stream will be used instead of the default particle stream** Drip anywhere on the grid (even if you can't rez) NEW Supports urination restriction, when used with the Needs Restriction Controller. (Note: *Requires Really Needy HUD v2.5 or up. **Requires Really Needy HUD v2.6) Really Erogenous Zone v4 for Males Integration with VAW XTC Cock (v3.31 and up)** Your avatar's cock will grow more erect as the Arousal level increases and ejaculate when Arousal level reaches 100 If you rub the Ero-Zone worn on the groin vigorously, the masturbation animation of the VAW Cock will play for 12 seconds, and Arousal level increases PLAY button on the VAW Cock HUD increases Arousal level every 6 seconds PEE button on the VAW Cock HUD restores Toilet meter Integration with The Physics Cock (v2.3 and up)* Your avatar's cock will grow more erect as the Arousal level increases, and ejaculate when Arousal level reaches 100 If you rub the Ero-Zone worn on the groin vigorously, the "casual wank" animation of The Physics cock will play for 12 seconds, and Arousal level increases "Casual wank" animation on The Physics Cock Animation HUD increases Arousal level every 6 seconds Pee button on the The Physics Cock Animation HUD restores Toilet meter Integration with Aeros Cock Your avatar's cock will grow more erect as the Arousal level increases, and ejaculate when Arousal level reaches 100 Using the pee button on the Aeros cock HUD to pee restores Toilet meter* NEW Supports urination restriction, when used with the Needs Restriction Controller. (Note: *Requires Really Needy HUD v2.5 or up. **Requires Really Needy HUD v2.6) Really Erogenous Zone v3.1 for Females Integration with The V Bento (v1.51)* Rubbing the Ero-Zone for the left Chest vigorously will activate the animation for playing with the boobs Rubbing the Ero-Zone for the right Chest vigorously will activate the animation for playing with the nipples Rubbing the Ero-Zone for the Groin vigorously will activate the animation for playing with the pussy Playing the "Fingering Self" animation in The V Bento HUD will slowly increase your arousal level Integration with VAW XTC Vagina (v2.26)** Rubbing the Ero-Zone for the Groin vigorously will activate the animation for playing with the pussy Activating the "PLAY" button in the VAW Vagina HUD will slowly increase your arousal level (Note: *Requires Really Needy HUD v2.5 or up. **Requires Really Needy HUD v2.6) It's Not Mine (INM) If your avatar is wearing the Really Erogenous Zone for Male, and orgasms from Arousal level reaching 100, this should activate the INM cum system menu worn by your partner's avatar if your avatar has an Aeros Cock, Physics Cock or VAW Cock. Integration with leading mesh genitalia brands Pheromones Pheromones A pheromone is a secreted chemical substance that triggers a biological response in members of the same species. While various types of pheromones are well-documented in the animal kingdom, the existence and role of pheromones in the human species has been debated by scientists, particularly whether pheromones that trigger a sexual response are fact or fiction. Animal attraction? The existence of pheromones in humans has been re-imagined in the Really Needy HUD's Pheromones add-on, where humans have not only re-awakened their dormant vomeronasal organs to detect those primal scents from other individuals, the chemical signals will also trigger physiological responses in them, like in some animal species. PHEROMONE BEHAVIOUR OF FEMALES Releases female pheromones that attract males during certain days of their Cycle Subconsciously detects the presence of male pheromones and gets aroused, especially during ovulation Detects which male is fittest based on their pheromones to facilitate mate selection PHEROMONE BEHAVIOUR OF MALES Releases male pheromones in their perspiration after sustained physical activity (eg. a fitness workout) Subconsciously detects and get aroused by female pheromones CUSTOMISE YOUR AVATAR'S PHEROMONE SETTINGS You can customise the pheromones feature by double-clicking the small triangle in the corner of the Procreation icon to bring up the Pheromone Settings menu. You can change: which gender your avatar is sexually attracted to (male, female, both, or neither). (for females) whether to automatically release pheromones on reaching Day 13 and Day 14 of the Cycle (for females) whether to automatically detect which male is fittest on reaching Day 14 and Day 15 of the Cycle which specific avatars to exclude from attracting (by adding their name to an exclusion list) DID YOU KNOW? Dogs possess up to 300 million olfactory receptors in their noses, compared to about 6 million in humans. A dog’s sense of smell is estimated to be 10,000 to 100,000 times better than that of a human. It has been reported they can smell things as far as 20km away. Many insects produce sex pheromones to attract potential mates from a distance. Silkworm moth males are noted to travel nearly 30 miles to a female, following a sex pheromone trail in the air. If your avatar is attracted to males, nasal detection of male pheromones will trigger Arousal. If your avatar is attracted to females, nasal detection of female pheromones will trigger Arousal. If your avatar is attracted to both genders, detection of male or female pheromones will trigger Arousal. The mechanics of triggering Arousal depends on Pheromone Strength in the originator and Pheromone Sensitivity in the recipient or target, and are further explained below. PHEROMONE STRENGTH Pheromone strength is expressed in terms of how much Arousal it can potentially generate in the target mate . Your avatar's Fitness Level affects the strength of his / her pheromones produced. Starting at a base of 6% (if your avatar is physically inactive), the strength will increase by 3% for each Fitness Level. For example, if Scarlett is Level 4 in Fitness, her pheromones strength will be 18% . (Refer to table on the right). The pheromone strength will diminish the further the distance between the origin and the receiver. For example, If Scarlett is right on top of Frank (distance = 0m) when her pheromones are released, Frank's Arousal level will increase by 18% (full strength), assuming Frank is attracted to females. If Scarlett is a few metres away from Frank, his Arousal level will not increase by 18% but proportionally less, depending on his pheromone sensitivity (see below) and the distance. Fitness level Pheromone Strength 0 6 1 9 2 12 3 15 4 18 5 21 6 24 7 27 8 30 PHEROMONE SENSITIVITY Pheromone sensitivity is expressed in terms of the range in which one can detect the presence of pheromones. Your avatar's orgasm experience (OrgasmXP) affects how sensitive or how far away he/she can be from the originator and still be able to detect the pheromones. (Each time your avatar orgasms, OrgasmXP will increase by 1 point). The distance between the pheromone originator and receiver, compared to the receiver's maximum range will determine how much the pheromone strength is affected. Range of sensitivity is between 1m to 11m for females, and 0m to 10m for males. (Refer to the table on the right. Yes, women have a keener sense of smell than men! ) OrgasmXP Range (m) - Male Range (m) - Female 0 0 1 1 - 5 2 3 6 - 10 4 5 11 - 15 6 7 15 - 20 8 9 More than 20 10 11 WHAT ARE AXILLA AND WHAT DO THEY DO? The axilla (otherwise known as the armpit or underarm) is the soft tissue concave space at the junction of the arm and the torso which houses important vascular and lymphatic structures. The skin covering the lateral axilla contains many hair and sweat glands. In humans, the formation of body odor happens mostly in the axilla, more so than the pubic region. The Really Needy HUD Lifestyle Edition Adult or Lite comes with 2 axillary attachments for your avatar which work with the Pheromones feature. They are invisible objects for optional wearing at the shoulder joints. Each Axilla will generate a purple mist (particle effect) as a visual indicator when pheromones are being released by your avatar. Refer to the README notecard in your HUD delivery folder for configuration options. Female avatars can use the Really Seductive Perfume to stimulate the release of pheromones and boost pheromone strength for a period of time. Aphrodisiacs Aphrodisiacs An aphrodisiac is a type of drug that triggers Arousal in your avatar. This is a prop to spice up adult roleplay only. If your avatar is interested to work as a Sex Therapist, who is licensed to prescribe aphrodisiacs, please apply through the Jobs page. Vaigra is an aphrodisiac for use by adult males. After consuming the drug, some physical stimulation* may be required to elicit an erection (just like in RL). * For example, physical touch with the help of Really Erogenous Zone Aspects of physical and mental health can contribute to erectile dysfunction (ED). While drugs can help manage ED, a physician may recommend trying making lifestyle changes before taking medication. Vaigra may not be suitable to a person who has a cardiovascular health issue. Vaigra 40 is available over-the-counter at the supermarket . Say "/eat" in chat and touch it to consume It will increase your avatar's Arousal level by 40% Stronger dosages require a Physician, Pharmacist or Sex Therapist to prescribe. Female sexual desire is complex and involves various factors including biological, psychological, interpersonal and socio-cultural factors. Research shows that Niagara changes the brain’s serotonin levels in adult females. When low sexual desire or arousal is linked with serotonin levels, Niagara may be effective. A person who may benefit from Niagara is someone who feels that their sex drive is low and wants to have more sex. On the other hand, medication may not treat all causes of low sexual desire. Niagara 40 is available over-the-counter at the supermarket . Say "/eat" in chat and touch it to consume It will increase your avatar's Arousal level by 40% Stronger dosages require a Physician, Pharmacist or Sex Therapist to prescribe. Really Wet Pussy Really Wet Pussy Simulates your female arousal fluids (or urine) dripping from your vulva, and a growing puddle at your feet. Compatible with the Really Needy HUD Procreation meter. In AUTO mode: it will only start to drip if your arousal level is above 10%. the volume and frequency of drip will increase as your arousal level hits 40% and 60% and 80%. a puddle will start to form at your feet when your arousal level is above 90%. it will squirt 'juices' (droplets) when your arousal level hits 100% (orgasm). it will stop dripping if your arousal level falls below 10%. Many configuration options - frequency of drip, volume of drip, transparency of drip and more Compatible with the Really Needy HUD Toilet meter . When your Toilet meter reaches 0%, a stream of droplets will start to dribble from your Really Wet Pussy. a pee-puddle will start to form at your feet. Comes with animation gesture for omorashi play (full bladder desperation, your avatar wetting herself) ♥ The Really Wet Pussy also works as Really Erogenous Zone. That means that if you rub it (or your partner rubs it), your arousal level indicated in the Really Needy HUD will increase! Buy Now ⚠️ IMPORTANT NOTE Despite the name, this product is NOT a mesh pussy or mesh vulva. It is an invisible sphere to wear over your mesh vulva or the crotch of your classic/mesh avatar body. Really Orgasmic Vibrator Really Orgasmic Vibrator Buy Now OVERVIEW A multi-speed, dual-mode vibrator to give your avatar mind-blowing orgasms Comes with remote control app on smartphone, with "bluetooth" connectivity (ability to set a PIN to pair your devices) Compatible with the Really Needy HUD Procreation meter, and Really Wet Pussy Comes with smartphone prop which you can rez in-world or hold in your avatar's hand for roleplay realism Transfer permission so you can pass the iRemote to someone else! INSTRUCTIONS FOR USE WITH REALLY WET PUSSY Wear/Add the Really Orgasmic Vibrator and Really Wet Pussy (Attachment point: Groin) Wear the Really Needy HUD and say /arousalon to switch Procreation meter from Cycle mode to Arousal mode Turn the vibrator on. Your avatar's Arousal meter will increase gradually. The higher the speed setting, the faster the arousal climbs. Your Really Wet Pussy will drip more and more as the vibrator buzzes away. When the arousal meter hits 100%, your Really Wet Pussy will squirt as your avatar climaxes. Lovense (RL vibrator) integration Lovense integration Get demo now OVERVIEW A multi-speed, dual-mode vibrator to give your avatar mind-blowing orgasms Connectivity to Lovense vibrator in RL so that you and your avatar can enjoy simultaneous pleasure in both lives Compatible with the Really Needy HUD and Really Wet Pussy to raise Arousal level and be dripping wet Owner Remote control app (HUD looks like smartphone), with "bluetooth" connectivity (set a PIN to pair devices) Includes 2 Partner Remotes (look like smartphones) that attach to left hand of your partner(s) for roleplay realism. Range increased from 9m to whole region NEW Customisable LeLUTKA head animations / facial expressions NEW Allow other people to control your Vibrator for a limited period specified by you (3 min to max 3 hours). Max range: anywhere in same region NEW Optional EXPANSION PACK sold separately with different Vibrator shapes, sizes, and colour options - see pics below PLEASE TRY THE DEMO BEFORE PURCHASE. No refunds will be entertained. If the demo does not work for you, do not buy. For instructions how to connect to your Lovense vibrator in RL, refer to User Guide or Marketplace listing (click image above). Ideas, suggestions and feedback

  • Animated Ad | Really Needy HUD

    Acerca de ANIMATED GIF Season 1 Season 2

  • Ads | Really Needy HUD

    Acerca de DESIGN 1 DESIGN 3 DESIGN 2 DESIGN 4 DESIGN 5

  • Auto-Copulation | Really Needy HUD

    Furniture brands that are Auto-Copulation ready The following stores have furniture already installed with Auto-Copulation . Really Needy HUD Lifestyle Edition Adult users need not manually select a target avatar to copulate with, when using the featured furniture. Just hop on the furniture, and depending on the pose chosen, the HUD will already know if the furniture sitters are copulating or engaging in foreplay . STORE NAME PRODUCTS (Click to expand) Auto-Copulation Script Below is the sample script to enable your AVSitter2 furniture to interface with the Conception add-on of the Really Needy HUD. If the user chooses certain adult animations from the AVSitter2 menu, the Really Needy HUD will automatically determine that Sitter0 and Sitter1 are in Copulation mode, without requiring the male or female to initiate copulation requests. Instructions: 1. Click on the "Show more" link below to make the source code of the whole script visible. 2. Select the entire source code (in light blue) using your mouse and press Ctrl-C to copy. 3. Go to your Inventory window in your Second Life viewer and choose 'New script'. 4. Press Ctrl-V to paste what you copied into the body of the new script (replacing its default contents). 5. Rename your script as "@ReallyNeedy_auto-copulate" 6. Please set the permission of the script to the same permissions as your furniture. 7. Drop the script into your furniture. By copying the source code, you agree that this source code is being provided to you 'as-is' with no warranty, and it is subject to change at any time at the discretion of the creator of the Really Needy HUD. // Sample script to enable furniture with Auto Copulation feature. For use with Really Needy HUD. // ********************************************************************************************** // add the names (in CAPITALS) of the couple animations in your AVSitter2 AVpos card with vaginal penetration. list copulate = ["DOGGY","MISSIONARY","BOTTOMUP","COWGIRL","BLKSMITH","RABBITS","TANGLE","RIDE"]; // add the names (in CAPITALS) of the couple animations in your AVSitter2 AVpos card which is sexual foreplay list foreplay = ["SERVICE HIM","BLOWJOB","69","OVERLOAD","GO DOWN","TASTE HER","BRAID","FONDLE","ABREAST"]; // DO NOT CHANGE ANYTHING ELSE BELOW key sitter0; key sitter1; default { state_entry() { llOwnerSay("This script makes your furniture compatible with the Conception add-on of the Really Needy HUD."); } link_message(integer senderlink, integer value, string text, key ID) { if (value==90045) // pose is played { list data = llParseStringKeepNulls(text,["|"], []); string SITTER_NUMBER = llList2String(data, 0); string pose = llList2String(data, 1); string ALL_SITTERS = llList2String(data, 4);// A list of UUIDs of all sitting avatars separated by the ( @ ) character list params = llParseString2List(ALL_SITTERS,["@"],[]); sitter0 = llList2Key(params,0); sitter1 = llList2Key(params,1); if (llListFindList(copulate,[llToUpper(pose)])!=-1) // match with the names of the sex anims specified above { if ((ID==sitter0) && (sitter1!="")) { llRegionSayTo(sitter0,-24,"COPULATE,"+(string)sitter1); // send auto-copulate message to Really Needy HUD } else if ((ID==sitter1) && (sitter0!="")) { llRegionSayTo(sitter1,-24,"COPULATE,"+(string)sitter0); // send auto-copulate message to Really Needy HUD } if ((SITTER_NUMBER=="0") && (sitter0!="") && (sitter1!="")) { llMessageLinked(LINK_THIS,69,"COPULATE",""); // notify [SEX] script that users are having intercourse } } else if (llListFindList(foreplay,[llToUpper(pose)])!=-1) // match with the names of the foreplay anims specified above { if ((ID==sitter0) && (sitter1!="")) { llRegionSayTo(sitter0,-24,"FOREPLAY,"+(string)sitter1); } else if ((ID==sitter1) && (sitter0!="")) { llRegionSayTo(sitter1,-24,"FOREPLAY,"+(string)sitter0); } if ((SITTER_NUMBER=="0") && (sitter0!="") && (sitter1!="")) { llMessageLinked(LINK_THIS,69,"FOREPLAY",""); // notify [SEX] script that users are having foreplay } } else { if (ID==sitter0) { llRegionSayTo(sitter0,-24,"INTERCOURSE-STOPPED"); } else if (ID==sitter1) { llRegionSayTo(sitter1,-24,"INTERCOURSE-STOPPED"); } if ((SITTER_NUMBER=="0") && (sitter0!="") && (sitter1!="")) { llMessageLinked(LINK_THIS,69,"INTERCOURSE-STOPPED",""); } } } else if(value==90065) // get up { llRegionSayTo(sitter0,-24,"INTERCOURSE-STOPPED"); llRegionSayTo(sitter1,-24,"INTERCOURSE-STOPPED"); } } }

  • Usables | Really Needy HUD

    Hygiene Usables Energy Toilet Making Usables Suggestions and feedback Usables Usables Usables are scripted objects which can replenish your avatar's Energy , Hygiene and Toilet meters. For example, a bed with Rest value of +20 will restore Energy meter by 20% every 10 seconds that your avatar rests on it. a shower with Cleanse value of +40 will restore Hygiene meter by 40% every 10 seconds that your avatar is using it. a water closet with Relief value of +40 will restore Toilet meter by 40% every 10 seconds that your avatar is using it. Photo by Engelsstaub Resident Energy Energy This meter indicates how much physical energy your avatar has. The lesser the meter, the more tired your avatar is. The meter slowly decreases when your avatar is awake. If Energy is below 40%, your avatar will start to look tired . If your avatar runs out of Energy, your avatar will collapse from exhaustion. Proper rest or sleep will restore Energy meter. When Energy meter reaches 0%, Health meter will also start to drop. Typically items that restore Energy would be furniture like bed, mattress, sofa, chair. An energy drink or caffeine shot could also give a boost. If you have the *Really Needy [USE] script, you can drop it into your own furniture to make it compatible with the Really Needy HUD. Your avatar can also use someone else's furniture (if they have the [USE] script inside) to restore Energy, just like in RL. Sitting will half the rate which Energy meter drops. This works even on furniture without the [USE] script. Buy Hygiene Hygiene This meter will gradually decrease over the course of the day. Taking a shower or bath, or washing face/hands will restore Hygiene meter. The lower the Hygiene meter, the higher probability of catching a disease. When Hygiene drops to 20% or lower, your avatar may look dirty . Typically items that restore Hygiene would be private or public amenities like bath-tub, shower, sink, or personal hygiene products such as shampoo, soap, body wash, hand wash, toothbrush. If you have the *Really Needy [USE] script, you can drop it into your own items to make it compatible with the Really Needy HUD. You can also use another person's bath-tub or shower (if they have the [USE] script inside) to restore your Hygiene, just like in RL. But I would not recommend you use other people's toothbrush! Certain activities will cause your Hygiene to drop faster If Toilet meter reaches 0%, you will lose bladder control which will decrease your Hygiene instantly by 40%. If you are pregnant, the Hygiene meter drops twice as fast. Buy Really Handy Bathroom Soap is sold at the supermarket . Food for thought: If your Hygiene meter is low, should other people near you receive a message that you smell bad? Or perhaps even a stink cloud should appear? Add your comments below or send me a notecard with your thoughts. Buy Toilet Toilet This meter will gradually decrease over the course of the day. When the Toilet meter is low (eg. 20% is the default but this is customisable) your avatar may stand a bit funny and feel the urgent need to go really soon. If it reaches 0%, your avatar will be incontinent (not be able to control his or her bladder anymore), which will be really embarrassing if there are people around. Using a toilet (private or public) will restore the meter ie. relieve the need. If you have the *Really Needy [USE] script, you can drop it into your own items to make it compatible with the Really Needy HUD. Your avatar can also use someone else's toilet (if they have the [USE] script inside) to restore Toilet meter, just like in RL. But it is polite to ask for permission first and don't forget to flush. Certain conditions will cause Toilet meter to drop faster Drinking caffeinated or alcoholic beverages will make it decrease faster. If your avatar is pregnant, the Toilet meter drops twice as fast. If your avatar is infected with certain diseases which makes him or her visit the toilet more frequently. If your avatar has mesh genitalia from Aeros, Physics, The V, or VAW, the urination function that comes with the mesh genitalia is compatible with the Toilet meter. Buy Buy Making Usables Making your own Usables If you would like to make your own furniture which is compatible with the HUD, you can buy the [USE] script, which can be used for restoring Energy, Hygiene and Toilet, or the [REST] script which can be used for restoring Energy only. Your furniture must be AVSitter2 -ready. You can buy a pack of 3 [USE] scripts from my in-world store for L$100. (Reference on box sticker: U1 ). The U1 script has Transfer permissions and can make one furniture into a Usable, with unlimited number of uses. restores up to 20% Energy, 20% Hygiene or 20% Toilet every cycle (10 seconds). Alternatively you can buy the copiable [USE] script (reference on box sticker: U2 ) for L$1000. The U2 script has Copy (no-transfer) permissions and can make unlimited number of furniture you own into Usables, with unlimited number of uses restores up to 1% Energy, 10% Hygiene or 10% Toilet every cycle (10 seconds). ⚡ INSTRUCTIONS FOR INSTALLING *Really Needy [USE] v3.0 (U1) OR *Really Needy [USE] v3.0 (U2) SCRIPT TO MAKE USABLES ❶ Preparing your configuration card Create a notecard in your inventory. Rename it so that it starts with an asterisk *, and is followed by the name of your object. For example if your object is named Comfy Bed , then name your notecard as *Comfy Bed . In the notecard, insert the line "TYPE 0", "TYPE 2" or "TYPE 3". (Without the quotation marks, in capital letters). TYPE 0 are items which will be found by the HUD if the user says "/rest". Main property of item should be to restore Energy TYPE 2 are items which will be found by the HUD if the user says "/use". Main property of item should be to restore Hygiene TYPE 3 are items which will be found by the HUD if the user says "/use". Main property of item should be to restore Toilet Next insert the line "ENERGY 1" or "HYGIENE 1" or "TOILET 1" to restore 1% of your Energy / Hygiene / Toilet meters per cycle of 10 seconds. (You can change the number to adjust the speed of restoration, based on your roleplay needs). Save the notecard. SAMPLE CONFIG CARD If the user clicks on the item, it will show Rest: 1, which means it will allow the user to rest and restore 1% of the Energy meter per cycle. TYPE 0 ENERGY 1 SAMPLE CONFIG CARD If the user clicks on the item, it will show Cleanse: 5, which means it will clean the body and restore 5% of the Hygiene meter per cycle. SAMPLE CONFIG CARD If the user clicks on the item, it will show Relief: 10, which means it will relieve the need to urinate and restore 10% of the Toilet meter per cycle. TYPE 2 HYGIENE 5 TYPE 3 TOILET 1 0 Note: The *Really Needy [REST] script only supports TYPE 0. ❷ Preparing your furniture / object Make sure your object already has AVSitter2 scripts. Right-click on your object and choose Edit. Go to the "Contents" tab of the Edit window. Drop the configuration notecard you have prepared into the Contents of your object. Drag the [USE] script or [REST] script from your inventory into the Contents of the object. That's it! ❸ Using your Usable Wear your Really Needy HUD. Type the command in chat. (For advanced users you can create a gesture that replaces text with an emote or play an animation) For TYPE 0, say "/rest" within 10m of your object. For TYPE 2 or TYPE 3, say "/use" within 10m of your object. Sit on your object and your Energy/Hygiene/Toilet meter should be restored gradually. ADVANCED CONFIGURATION PARAMETERS These are additional configuration options available for advanced users to make Usables. The following parameters are new in version 3.0: AUTO_USE, SUPPRESS_RESTOREMSG, SUPPRESS_PARTICLES Insert this line in the config notecard AUTO_USE SUPPRESS_RESTOREMSG SUPPRESS_PARTICLES Effect Item can be used by sitting on it without needing to say /rest or /use. The message in public chat when item is being used will not be displayed. Example of message: "Comfy Sofa is used by Grace7 Ling (Restores ENERGY)". Particle effects will not appear when item is being used. Ideas, suggestions and feedback Suggestions and feedback

  • Adventure Hunt | Really Needy HUD

    Adventure Hunt If you would like to roleplay as an investigator, or play something like a mash-up between a mystery-solving adventure and scavenger hunt, you can try out this Adventure Hunt. Really Needy HUD users can earn N-Coins from this adventure hunt, as you go about gathering clues to piece together.. where in the world is Yvon Ashford? Non Really Needy HUD users are also welcome to play. To start, teleport to Rainy City and click on the poster which looks like the picture on the right, to receive a notecard with instructions. Caution: dark adult themes.

  • Associate Program | Really Needy HUD

    Needy scripts for Second Life creators to include in products Associate Program What is an Associate? A Really Needy Associate is a content creator in Second Life who is incorporating Really Needy scripts into their creations to make them compatible with the Really Needy ecosystem, in order to sell or re-sell these creations to users. Creations could include food and beverage items for consumption (to restore Hunger and Thirst), or various types of furniture - such as beds and sofas (to restore Energy), showers and bath-tubs (to restore Hygiene) and toilets (to restore Toilet). By paying a flat fee for an Associate License , you agree to the conditions specified for the type of license and are granted certain scripts for use within your creations. This includes: An Associate License which comes in the form of a script (copy permissions) for you to setup your objects with the necessary parameters An end-user script (copy + transfer permissions) for you to include in your objects for further sale and distribution. You will need to set the user script next-owner permissions to either [Transfer, No Copy] or [Copy, No Transfer] before sale. Whether you are a professional mesh designer, existing SL brand owner, Really Needy customer or just a fan of Really Needy products, you are welcome to become an Associate! What is the difference between an Associate and Affiliate? An affiliate places vendors (Caspervend) for Really Needy products on their land, and earns a commission whenever someone buys something from the vendor. Currently the Really Needy Affiliate Program covers pharmacy and pregnancy-related products. An Associate pays a license fee which grants the use of certain Needy scripts for incorporating into products they sell, to make them Needy-compatible. What are the different licenses/scripts for Associates? There are 3 types of licenses for making consumables - refer to C3, C4 and C5 in the table below. They differ mainly by the maximum values for Hunger/Thirst that they are able to restore per feed. There are also 2 types of licenses for making usables - refer to U3 and U4 in the table below. They differ mainly by the maximum values for Energy/Hygiene/Toilet that they can restore per cycle (10 seconds). Associate License Scripts Other configuration parameters supported by C3, C4 and C5 include: REZ_OFFSET, REZ_ROT, HAND_POS, HAND_ROT for specifying position and rotation for objects rezzed or attached to hand, ANIMATION_HOLD, ANIMATION_CONSUME, CONSUME_DURATION, STEAM ON, STEAM OFF. For details, please refer to this page. C3, C4 and C5 comes with the *really needy [LSD CONSUME] v4.0 script with Copy+Transfer permissions. You will need to change the permissions of the script to Transfer only before distributing your product. U3 and U4 comes with the *really needy [LSD USE] v3.0 script with Copy+Transfer permissions. You will need to change the permissions of the script to Transfer only or Copy only before distributing your product. If your product is sold with Copy permissions, the script should be set to Copy only. If your product is sold with Transfer perms, the script should be set to Transfer only. Is there a video walk-through of how to use these scripts? Yes! This 4½ minute clip shows how to make your item a Consumable in 5 easy steps. This 2½ minute clip shows how to make your furniture an Usable in 5 easy steps. Where do I buy the license and scripts? The vendors have been setup at this SLurl . For Associate License related news and discussions, join our Discord server; we have a specific channel here: #associate-program .

  • Skin Effects setup | Really Needy HUD

    Skin effects for Really Needy HUD hangover sickface breast-veins gunshot blood bruises flush farming FAQ Skin Effects Skin Effects setup This page describes how to setup Skin Effects for the Really Needy HUD. The Really Needy HUD will activate the addition of layers automatically to your avatar using RLV if certain conditions are met as described here . (Note: your viewer must support RLVa and your avatar body/head must be BOM-ready). SKIN EFFECTS PACK Installation Instructions skinfx-setup Follow these steps to setup the following skin effects to work with your Really Needy HUD: Waterdrops - Steps 3 to 7 Dirty Face & Body - Steps 8 to 9 Tired Face - Steps 10 to 11 Chapped Lips - Steps 12 to 13 If you bought the Skin Effects Pack from Marketplace, you can jump to the Express Setup Instructions below. Unpack the box you received from your purchase. Open your Inventory window (Recent tab) to find the folders you unpacked. There should be 5 folders: Open a new (second) Inventory window. Make a #Izzie’s folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. Create a subfolder in the #Izzie’s folder and name it “Wet ”. (Optional) Copy the “Underwater” source folder and contents to the “Wet ” folder you created. Explanation: Contents of "Underwater" subfolder will be auto-attached (added) to your avatar when underwater, and auto-detached when not underwater. Create a subfolder in the “Wet” folder you created, and name it “Waterdrops ”. Copy the tattoo layer “Izzie's - Face & Body Waterdrops ” from the source folder into the “Waterdrops” subfolder you created. (Choose the version appropriate for your skintone) (Optional) Copy the “Really dripping wet” object from the source folder into the “Waterdrops” subfolder you created. If you have followed steps 1 to 8, it should look something like this: Explanation: Contents of "Waterdrops" subfolder will be auto-attached (added) when your avatar enters and then exits SL water or compatible scripted water. Attached items will self-detach after a short period of time to simulate skin drying. Create a subfolder in the #Izzie’s folder and name it “Dirt ”. Copy the tattoo layer “Izzie's - Face & Body Dirt ” from the source folder into the “Dirt” subfolder you created. (Choose the version appropriate for your skintone) Create a subfolder in the #Izzie’s folder and name it “Tired ”. Within it, make two more subfolders called “Tired Eyes” and “Tired Face”. Copy the tattoo layers "Izzie's - Tired Eyes " and "Izzie's - Tired Face combined " from the source folder into the subfolders within “Tired”. You can customise your own mix by choosing multiple layers for Tired Face instead of using the combined layer. Also, choose the version appropriate for your skintone. If you have followed steps 9 to 12, it should look something like the following: Create a subfolder in the #Izzie’s folder and name it “Chapped Lips ”. Copy the "Chapped Lips " tattoo layer from the source folder into the "Chapped Lips" folder. Choose the appropriate version for your skintone. It should look something like this: I am going to refer to these folders as the source folders This is a snapshot of my inventory window. I use Firestorm. It may look a little different if you are using a different viewer. Explanation: When your avatar's Thirst meter drops to 40% or below, the contents of the Cracked Lips folder will be auto-attached (added). When Thirst meter is higher than 40%, the contents of the folder will be auto-detached. Congratulations, you are done! If you have finished the above steps to install the Skin Effects Pack, it will look like the pic below, if you collapse the subfolders. EXPRESS SETUP INSTRUCTIONS (FOR MARKETPLACE DELIVERY) Copy and paste the #Izzie's folder in your SKIN EFFECTS PACK delivery folder into the #RLV folder in your Inventory. If you already have a #Izzie's folder in your #RLV folder, copy and paste the contents of the #Izzie's folder from the SKIN EFFECTS PACK into the #Izzie's folder under #RLV. Check that you have a folder structure like the picture on the left. Choose the tattoo layers you want to use by deleting the extra layers in the subfolders on the left. You should still have a copy in your delivery folder. express-setup Installation instructions for other system layers made by Izzie's The Really Needy HUD v2.4 and related add-ons can also work with other tattoo layers created by Izzie's. However, you need to follow the instructions below to put them in the correct folder structure. Your viewer must also support RLVa. Make sure that your avatar is also BOM-ready. Click any of the following links to jump directly to the section below. Hangover Face Sick Face Breast Veins Gunshot wounds Blood Bruises Flush Hangover Face hangover Make a #Izzie’s folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. If you already have a #Izzie's folder, go to step 2. Create a subfolder in the #Izzie’s folder and name it “Hangover ”. Browse through the different tattoo layers in your "Izzie's - Hangover Face Tattoos " folder in your inventory. (Bought separately) Copy the desired tattoo layers into "Hangover" subfolder under #Izzie's. For example, I would like my avatar to have light eyebags, smudged mascara and smeared lipstick, so it looks like this: Explanation: Contents of "Hangover" subfolder will be auto-attached (added) when your avatar reaches Blood Alcohol Content (BAC) level of 0.14 and above, and auto-detach when your avatar is sober. Sick Face sickface Make a #Izzie’s folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. If you already have a #Izzie's folder, go to step 2. Create a subfolder in the #Izzie’s folder and name it “Sick ”. Create subfolders in "Sick" called "Cold" and "Flu". Browse through the different tattoo layers in your "Izzie's - I've Got The Flu " folder in your inventory. (Bought separately) Copy the desired tattoo layers into "Cold" and "Flu", depending on how sick you want your avatar to look. For example, it might look like this after I set it up for my avatar: Explanation: Contents of "Cold" and "Flu" subfolder will be auto-attached (added) when your avatar gets infected with the Cold disease and Flu disease respectively. When your avatar recovers, the contents of the subfolder will be auto-detached. Breast Veins breast-veins Make a #Izzie’s folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. If you already have a #Izzie's folder, go to step 2. Create a subfolder in the #Izzie’s folder and name it “Breasts ”. Create subfolders in "Breasts" called "Baseline", "Cycle" and "Pregnant". Browse through the different tattoo layers in your "Izzie's - Breast Veins & Stretch Marks " folder in your inventory. (Bought separately) Copy the desired tattoo layers into "Cycle" and "Pregnant". If you would like your avatar to have slightly larger breasts due to hormonal changes in the female cycle, or due to pregnancy, make copies of your avatar's shape with different breast sizes. Put the normal shape into "Baseline". Put the shape with slightly larger breasts into "Cycle". Put the shape with enlarged breasts into "Pregnant". For example, my avatar's normal breast size is 55. During Days 18 to 20 of the Cycle, I would like the breast size to slightly increase to 60. If pregnancy button on the HUD is pressed, breast size will increase to 70. To set this up, this is what my folders would look like: Explanation: Contents of "Cycle" subfolder will be auto-attached (added) when your avatar reaches Day 18 of your Cycle, and auto-detach when your avatar reaches Day 21. Contents of "Baseline" subfolder will be auto-attached (added) during other days of the Cycle other than Days 18, 19 and 20. Contents of "Pregnant" subfolder will be auto-attached when pregnant mode is on, and auto-detached when pregnant mode is off. Gunshot wounds gunshot Make a #Izzie’s folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. If you already have a #Izzie's folder, go to step 2. Create a subfolder in the #Izzie’s folder and name it “Gunshot ”. Copy either the tattoo layers or the underwear layers from the Injuries add-on folder into "Gunshot". The layers must be organised in subfolders as indicated in the snapshot below. Blood blood Blood layers from Really Dangerous Explosives Pack Make a #Izzie’s folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. If you already have a #Izzie's folder, go to step 2. Create a subfolder in the #Izzie’s folder and name it “Blood ”. Copy one or more desired tattoo layers in the folder from your purchase of the Really Dangerous Explosives Pack into the "Blood" folder you created in Step 2. There are 5 tattoo layers corresponding to Face, Chest, Back, Legs, Pelvis, depending on where you want blood to appear on your avatar when injured. If you are using the LeLutka Evo X head, use "Izzie's - LeL Evo X - Face Blood Splatters" instead of "Izzie's - Face Blood Splatters". Your RLV folder might look something like the following structure when you are done: Explanation: Contents of "Blood" subfolder will be auto-attached (added) when your avatar receives explosion Fragmentation damage to Health. (Injuries add-on v2.5 is required). Contents will be auto-detached if Health meter is restored to 100%. Blood layers from "Face & Body Blood & Wounds" set from Izzie's Make a #Izzie’s folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. If you already have a #Izzie's folder, go to step 2. Create a subfolder in the #Izzie’s folder and name it “Blood ”. Browse through the different tattoo layers in your "Izzie's - Face and Body Blood & Wounds " folder in your inventory. (Bought separately). Copy the desired tattoo layer into the "Blood" folder you created in Step 2. Explanation: Contents of "Blood" subfolder will be auto-attached (added) when your avatar receives explosion fragmentation damage to Health. (Injuries add-on v2.5 is required). Contents will be auto-detached if Health meter is restored to 100%. Bruises bruises Bruise layers from "Face & Body Bruises" set from Izzie's Make a #Izzie’s folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. If you already have a #Izzie's folder, go to step 2. Create a subfolder in the #Izzie’s folder and name it “Blood ”. If you already have this subfolder, go to step 3. Create another subfolder in the "Blood" subfolder and name it "Bruises ". Browse through the different tattoo layers in your "Izzie's - BOM Layers Face and Body Bruises " folder in your inventory. (Bought separately) Create 5 subfolders in the "Bruises" folder you created in Step 3. Name them as Body01, Body02, Body03, Body04 and Body05. These 5 subfolders correspond to 5 levels of internal bleeding, with 01 being minor bruising to 05 being severe bruising. Copy the desired tattoo layers from your purchase into the subfolders. For example, this is what I chose for my avatar: If you have dark skin tones, you may also try putting in more than 1 layer in the subfolder, as wearing multiple layers will raise the intensity. Explanation: Contents of "Bruises" subfolders will be auto-attached (added) when your avatar receives explosion Shock damage to Health. (Injuries add-on v2.5 is required). Depending on the extent of damage, a different subfolder will be auto-selected by the HUD, with Body01 being the lowest and Body05 being the highest damage. Contents will be auto-detached if Health meter is restored to 100%. Flushed Skin Pack - Alcohol Flush, Blush , Exercise Flush, Sex Flush flush Make a #Izzie’s folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. If you already have a #Izzie's folder, go to step 2. Create a subfolder in the #Izzie’s folder and name it “Flush ”. Copy the contents of 4 sub-folders from the "Flush" folder in your Marketplace delivery folder for Flushed Skin Pack into the "Flush" folder you just created. The folder structure should look like this: The full set of layers copied over to the Flush folder in your #RLV directory would look like the following. Now delete the layers that are not required. You should still have the original copy in your MP delivery folder. For example, for Alcohol Flush, 1. There is one layer for 'Face & Neck' and one layer for 'Ears'. You can choose to have either or both depending on where your avatar would turn red when drunk. 2. There are 3 levels of redness you can choose from - 70%, normal, and stronger. 3. If your avatar has a Lelutka Evo X head, choose from the layers with "LeL Evo X" in the name. Delete the layers that are not required from the folder. Explanation: Contents of "Alcohol", "Blush", "Exercise" and "Sex" subfolders will be auto-attached (added) when your avatar triggers it. Please see the Skin Effects page for the triggering conditions. Farming - Really Dirty Hands & Legs farming Instructions if you bought this through in-world store vendor Make a #NeedyHUD folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. If you already have a #NeedyHUD folder, go to step 2. Create a subfolder in the #NeedyHUD folder and name it “ Agriculture ”. If you already have a Agriculture folder, go to step 3. Create a subfolder in the Agriculture folder and name it “Dirt ”. Under the Dirt , create another 2 more sub-folders and name them "Hands" and "Legs" respectively. In the "Hands" sub-folder, create 3 sub-folders named "1", "2" and "3". In the "Legs" sub-folder, create 3 sub-folders named "1", "2" and "3". Copy the relevant layers from your delivery folder for Really Dirty Hands & Legs into the various sub-folders you just created. Refer to the snapshot on the right for a sample configuration. Instructions if you bought this through Marketplace Make a #NeedyHUD folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. If you already have a #NeedyHUD folder, go to step 2. Copy and paste the folders (including contents) from the MP delivery folder into your #NeedyHUD folder. Check that the folder structure looks like the snapshot on the right above. Explanation: Contents of the numbered subfolders will be auto-attached (added) when your avatar triggers it by planting seeds, starting with 1. As your avatar plants more seeds, it will move from 1 to 2 and lastly to 3 to represent increasing dirtiness of hands and legs. The BOM layers numbered "Level 1" are the lowest intensity of garden dirt, while the layers numbered "Level 3" are the highest intensity of garden dirt. You can configure how dirty your avatar gets by copying the chosen layer into the folders, and whether both the shins & knees, or only knees etc. By showering and restoring your avatar's Hygiene to 100%, the layers will be automatically removed. (You can also manually detach any layer). FAQ Frequently asked questions Q1. Can you list out all the subfolders in the #Izzie's folder, if I have everything? A1. Yes, here you go: Q2. You mentioned "BOM" several times on this page. What is BOM? A2. BOM or Bakes On Mesh is a feature that has been introduced in 2019 by Linden Labs. It allows system layers to show on mesh body parts. Read much more about it here . Flushed Skin Pack - Alcohol Flush, Blush , Exercise Flush, Sex Flush Make a #Izzie’s folder within the #RLV folder in the root level of your inventory. If you don’t already have a #RLV folder, create one. If you already have a #Izzie's folder, go to step 2. Create a subfolder in the #Izzie’s folder and name it “Flush ”. Copy the contents of 4 sub-folders from the "Flush" folder in your Marketplace delivery folder for Flushed Skin Pack into the "Flush" folder you just created. The folder structure should look like this: The full set of layers copied over to the Flush folder in your #RLV directory would look like the following. Now delete the layers that are not required. You should still have the original copy in your MP delivery folder. Q3. Are there any known issues? A3. These are 2 known issues outside of my control. If these occur when you try the demo with your Really Needy HUD, do not buy unless you do not mind them. 1. Avatar turns grey (rebake) for a split second when layer is being applied. No fix known. 2. In some occasions when multiple BOM layers are being worn (by RLV), layer added is not visible. There is also currently no way a script is able to change the order of BOM layers on an avatar. Fix : right-click on avatar, choose Edit Outfit and exit. The layer should become visible. TIP: Do you know that you can also disable your avatar going into the automatic pose when you select Edit Outfit? Go to Preferences > Move & View > Uncheck the box for "Appearance" under "Automatically pose avatar during". Ideas, suggestions and feedback Please leave your comments on this page .

  • Packages | Really Needy HUD

    Packages FAMILY PACKAGE The Family Package is suitable if you have a family roleplay of 5 members* or more in your household. The package includes: 5 Really Needy HUDs (Lifestyle Edition). Cost for Injuries and Disease add-ons are waived. [USE] scripts you can put into 9 of your own furniture eg. 5 beds, 2 toilets, 2 shower/bath 20% discount for food and beverages included in the pack, and some other items Needs Rate Setter (for the head of the family) to control the consumption Rates for your family members All in all, the price of the package represents a 30% discount from the store price! * Note: The Lifestyle Edition LITE has no Conception add-on while the Lifestyle Edition ADULT has Conception add-on pre-installed. Both have the Procreation meter. For Really Needy HUD without Procreation meter, check out the JUNIOR Edition. NA = Not available for sale COMMUNITY PACKAGE If your sim is not quite ready yet for the Sim Package, you can start first with the Community Package. Enjoy a 44% discount from the store price, save the hassle of buying individual products separately, plus get several additional items not available for sale. Lift your roleplay community to the next level by using the Really Needy HUD system as your community roleplay tool. * I will rez a system where your roleplayers can rez food/drinks which are compatible with the Really Needy HUD. Rez rights required. Number of orders per day will be capped. ** I will rez a supermarket selling consumables in your sim. Rez rights and prims required. NA = Not available for sale SIM PACKAGE Sim-owners can enjoy a massive 54% discount off the store price by buying the Sim Package, save the hassle of buying individual products separately, plus get several additional items not available for sale. The Really Needy HUD system is a versatile roleplay system that can be used for different roleplay genres, and does not cost much more than a week of tier, for a much more immersive experience. ^ 5 Male and 5 Female. * I will rez a system where your roleplayers can buy food/drinks which are compatible with the Really Needy HUD. Rez rights required. ** I will rez a supermarket selling consumables in your sim. Rez rights and prims required. NA = Not available for sale

  • Level 4 | Really Needy HUD

    Level 4 Protein shake

  • Partners | Really Needy HUD

    Partners Partners If you are a creator that makes original mesh food & beverage items and are interested to make your creations edible for Really Needy HUD users, please apply here to be a Partner. Please include information about your existing business (SLurl, MP link, Flickr etc.) when you apply. Upon signing license agreement, Partners will be provided a partner script (with Copy + Transfer permissions) for putting into your Consumables to be sold. The script permission has to be set to Transfer only, and the item to be sold has to be no-copy. Revenue share is negotiable and dependent on expected sales volume. Your store will also be featured on the Consumables page of this website, as well as in The Needy Zone of my store. If you are a creator that makes adult furniture , you can easily make your furniture Auto-Copulation enabled with Really Needy HUD. To use Really Needy logo on your marketing material, contact me. If you are a sim-owner with a pharmacy, maternity centre, or medical facility , you can apply to be an Affiliate to distribute Really Needy products and earn commissions. SLurl Izzie's The Injuries add-on for The Really Needy HUD enables gunshot wounds to appear automatically on your BOM-compatible mesh body when you are shot. BOM layers for other skin effects (eg. Wet, Dirty, Tired) specially created by Izzie's for the Really Needy HUD are also available. SLurl Sam Sparks Designs Mesh designer of the Multi-Level Incline Treadmill , Yoga & Exercise Mat , Really Olympic Swimming Pool , Really International Swimming Pool , Dance Barre, and Really Accurate Breathalyser . Sam Sparks Designs specialises in Sports, Art and Clothing. SLurl Infinity Industries Specialist in vehicles and creator of the Infinity Classic Bicycle which works with Fitness Level 2, the Infinity Mountain Bike which works with Fitness Level 4, 5 and 6, and the Agricultural Drone for Farming . Buy at the Partner's Corner of the Needy Zone in my in-world store. SLurl Blueberry Get wet with the Noelia line of clothing from Blueberry when your avatar walks in the rain *. The Skin Effects Pack for the Really Needy HUD is required for the Waterdrops layer to be auto- applied on your avatar's BOM body. *Really Useful Mega Weather Maker required. SLurl CREATiCA The CREATiCA animated body cell shader works with the Really Needy Aura to make your avatar's aura become visible based on physiological states such as low health, full health, low hygiene and orgasm. SLurl HEC The Really Comfortable Diaphragm and Cervical Cap comes with a special feature to automatically take off and put on HEC panties to simulate your avatar inserting the contraceptive. The panties are sold at the Needy Zone. Other products that work with the panties: Really Intelligent Wall-Hung Toilet , Water Closet , Ultra Tampon SLurl The V Bento The Really Needy HUD Adult Edition comes with with integration to The V Bento mesh vulva when used with Really Erogenous Zone (Female) - playing with your avatar's genitals will raise Arousal level. The Really Wet Pussy also integrates with The V Bento to allow your avatar to urinate to relieve Toilet need. SLurl DHB NOBLE Please visit the Partners Corner of the Needy Zone in my store where there are several scripts that work with DHB gags, DHB Urine Bag and the Needs Restriction Controller . The scripts are also available at the DHB store entrance. SLurl Infinity Swim Infinity Swim is an innovative gadget that lets you swim far off sim to no man's sea. It is now compatible with the Fitness feature of the Really Needy HUD, so your avatar can get fitter by swimming in SL's virtual ocean. Swimming is a Level 2 Fitness activity. SLurl The Physics Cock The Really Needy HUD Lifestyle Edition comes with integration to Physics Cock when used with Really Erogenous Zone (Male) . Now your avatar's genital can respond to touch and have erections that correspond to Arousal level. Toilet need can also be relieved through urination. SLurl Mama Allpa The Really Needy HUD Relay for Mama Allpa will allow you to synchronise the Procreation cycle of your Really Needy HUD with the cycle of your Mama Allpa maternity HUD. SLurl KraftWork KraftWork is a home and garden store with 100% mesh items, buildings, furniture, and decor. Our initial collaboration is the KraftWork Home Fitness set (Really Needy Edition) which includes Treadmill, Bike, Punching Bag, Yoga Mat and Dumbbell Bench compatible with different Fitness levels . SLurl Meow Meow Making Mesh designer partner for Really Needy Farming , who have created the Potato plant , the harvested produce for Potatoes, Spinach, Lettuce, Sorrel, Oranges and Lemons , as well as the Really Useful Sprinkler , and Really Nice Chicken Coop . SLurl Velvet Whip Prolific maker of medieval roleplay clothing, furniture, food and more. Our initial collaboration will be a series of finely crafted mesh food items which can restore your avatar's Hunger. Check out also the different pizza recipes and Wood-fired Pizza Oven in the Cooking game. SLurl The Store Mesh designer of the Really Seductive Perfume . You can also find exotic Mikan and Pomelo imported by The Store on sale at the Supermarket. SLurl Alpha Gym Make a stop at the Alpha Gym for workout, weightlifting, training, fitness, spinning, sparring, wrestling, and much more. Treadmills, weight machines, punching bags and yoga mats here which work with the Fitness feature of the Really Needy HUD. SLurl Aka Animations Maker of the Catfight Pro Ring for wrestling, which is sold at the Partner's Corner of the Needy Zone. Wrestling is a Fitness activity for Level 7 Fitness requiring 2 players. SLurl Good Moaning The Pregnancy Add-on for Really Needy HUD integrates with Good Moaning Boobs Rubber to increase Arousal or decrease Arousal, depending on whether your avatar has Breast Tenderness . SLurl Gyro Studio & Design Looking for a realistic heart for your avatar ? Gyro has an animated mesh heart and it is compatible with the Really Needy HUD. The beating sound can synchronise with the Heart Rate you set with the Vital Signs Setter. Buy at the Partners Corner of The Needy Zone in my store. SLurl HD Emergency HD Emergency is one of Second Life's oldest suppliers of fire fighting, police, and medical equipment and vehicles. The Injuries add-on works with fire from HD Emergency to simulate burn injuries. SLu rl Aeros The Really Needy HUD Lifestyle Edition comes with integration to Aeros genitals when used with Really Erogenous Zone (Male) . Your avatar's genital can r espond to touch and have erections corresponding to Arousal level. Toilet need can be relieved by urination. SLurl Voir Animations Three of the drunk animations in the Blood Alcohol Content add-on are from Voir. Buy extra drunk animations (ground-sits) from here that will work with the HUD once you drop them in: "DG Gsit2" , "DG Gsit3", "DG Gsit4". (40L per anim)

  • Cooking | Really Needy HUD

    Video tutorials, blog articles, and links about the Really Needy HUD Culinary Arts NEW Culinary Arts is a cooking game for Really Needy HUD users who would like to roleplay the art of preparing and serving food and drinks. ⚠ CAUTION: This game is currently a beta version. Bugs can be expected and not all features are implemented yet. Play at your own risk. GAME RULES 1. There are 10 fundamental culinary skills. These are unlocked as you advance in level: Level 1: Sauteing (Unlock at 1 CXP) Level 2: Baking (Unlock at 20 CXP) Level 3: Knife (Unlock at 100 CXP) Level 4: Boiling & Simmering (Unlock at 200 CXP) Level 5: Steaming (Unlock at 300 CXP) Level 6: Deep Frying Level 7: Roasting Level 8: Grilling Level 9: Stir Fry Level 10: Slow Cooking 2. To advance in level, you need to earn CXP (Culinary Experience Points) from cooking specific items that requires that fundamental skill. If you cook an item that requires a fundamental skill you don't have, you can still do so, but you do not earn CXP. Your total CXP is the sum of XP for each of the fundamental skills. 3. To cook an item and earn CXP, you would usually need these 4 things i) recipe; ii) ingredients; iii) fundamental skill; iv) utensil 4. These are various methods to acquire a recipe. i) Unlock at new level or specific CXP ii) Buy recipe iii) Learn from TV (not implemented yet) iv) Learn from cooking school (not implemented yet) 5. If one earns more than 10 CXP in 24 hours, any item cooked after 10 CXP earned will only earn 1 CXP. This is to encourage regular play rather than 'binge play'. 6. Some recipes have a chance of failure that may or may not be linked to your experience for a particular fundamental skill. 7. More rules will be introduced later, or at any point of time, at the sole discretion of the creator. GETTING STARTED 1. If you already have the Really Needy Farming HUD v1.2 or earlier, say ' /checkupdate2 ' in chat to receive an upgrade installer. If you do not, but own the Really Needy HUD, you can get the Farming & Culinary HUD from my in-world store for free. Skip to step 4. If you neither own the Really Needy HUD nor the Farming HUD, you can buy the Farming & Culinary HUD on MP here . 2. Take off your Really Needy Farming HUD and rez on the ground. 3. Drag your installer to the ground. Follow the instructions to upgrade your HUD to the Really Needy Farming & Culinary HUD v2 . 4. Wear the Really Needy Farming & Culinary HUD v2 . 5. Click the Culinary Arts icon on your HUD (see picture below). A message will indicate that you have 0 CXP, and no fundamental skills. To earn your first CXP and unlock your first skill, follow the instructions in the video below on FRYING AN EGG to make a fried egg. Really Needy Farming & Culinary HUD 6. Once you have made the fried egg, stand directly in front of your fried egg, facing it. Click and hold the Culinary Arts icon on the HUD, and a Recipe Menu should pop-up after one second. It will show that you already know 1 recipe: Fried egg. (As you acquire more recipes later, they will show up in the Recipe Menu.) 7. Select the Fried egg recipe from the menu and choose Yes within 2 seconds when asked to confirm execution of recipe. If successful, the fried egg will disappear from in front of you. The fried egg will be delivered to your inventory and you will earn 1 Sauteing XP, which will also unlock the Sauteing skill. You can choose whether to rez the fried egg to consume it, or pass it to someone else or just save it in your inventory for later. With the Sauteing skill unlocked, you can earn Sauteing XP when you cook recipes requiring the Sauteing skill The Spatula icon will appear on your Culinary HUD. Clicking it will attach/detach the spatula (setup is required). If you got a warning that some ingredient is missing while trying to execute the recipe, it either means you did not have the ingredient in front of your avatar, or you did not confirm fast enough. Try again and click Yes faster when asked to confirm. EQUIPMENT REQUIRED Buy the Really Non-Stick Frying Pan (boxed) from the Supermarket and it includes the Spatula and Fire Rune INTRODUCTION I - FRYING AN EGG RECIPE: Fried egg Note: You already have this recipe the first time you wear the Culinary HUD. This is the only recipe you don't need to learn first. Ingredients Egg - get this from harvested from Farming, or buy the from Supermarket, or use from your Really Cold Fridge if stocked Skill: Sauteing CXP: 1 Utensil: Really Useful Frying Pan / Really Non-Stick Frying Pan INTRODUCTION II - ADDING A NEW RECIPE This 45-second video shows you how to add (learn) a new recipe you bought or acquired. RECIPE: Fried bacon & egg Note: You will receive this recipe when you reach 4 CXP. Watch the video above on how to add the new recipe. Ingredients Really Tasty Bacon - buy from Supermarket Egg - get this from harvested from Farming, or buy the from Supermarket, or use from your Really Cold Fridge if stocked Skill: Sauteing CXP: 2 Utensil: Really Useful Frying Pan / Really Non-Stick Frying Pan RECIPE: Pancakes with syrup Ingredients Pancake mix - buy from Supermarket Milk - use harvested from Farming, or buy the from Supermarket, or use from your Really Cold Fridge if stocked Maple Syrup Skill: Sauteing CXP: 3 Utensils: Mixing Bowl, Really Non-Stick Frying Pan RECIPE: Pancakes with blueberries & raspberries Ingredients Pancake mix - buy from Supermarket Milk - use harvested from Farming, or buy the from Supermarket, or use from your Really Cold Fridge if stocked Blueberries - harvested from Farming Raspberries - harvested from Farming Skill: Sauteing CXP: 3 Utensils: Mixing Bowl, Really Non-Stick Frying Pan RECIPE: French toast with strawberries and blueberries Ingredients Eggs x 2 - buy from Supermarket or harvest from Farming Milk - buy from Supermarket or harvest from Farming Ground Cinnamon - buy from Supermarket Slice of Bread x 3 - buy Loaf of Bread from Supermarket Strawberries - buy from Supermarket or harvest from Farming Blueberries - harvest from Farming Skill: Sauteing CXP: 3 Utensils: Mixing Bowl, Really Non-Stick Frying Pan UNDER CONSTRUCTION RECIPE: Waffles with strawberries Ingredients Waffle mix - buy from Supermarket Olive oil - buy from Supermarket Water - from Really Quiet Kettle Strawberries - buy from Supermarket or harvest from Farming Skill: Baking CXP: 3 Utensils: Mixing Bowl, Waffle Iron, Really Quiet Kettle v2 Pizza Kit ECONOMY Pizza Kit PREMIUM Really Traditional Pizza Oven+ Pizza Kit ECONOMY 1/4 RECIPE: Pizza Capricciosa Pizza Ham & Mushroom Pizza Pepperoni Pizza Quattro Stagioni Pizza Salami Pizza Vegetarian Pizza Viennese Pizza Ingredients Bag of flour - buy from store Bowl of salt - buy from store Yeast - buy from store Olive oil - buy from Supermarket or from store Warm water - from Really Quiet Kettle Pizza sauce - buy from store Pack of sliced Mozarella - buy from store Jar of pizza seasoning - buy from store Toppings - buy from store Skill: Baking CXP: 6 Utensils: Mixing Bowl v2.3, Really Quiet Kettle v2 Special equipment: Really Traditional Pizza Oven / Oven+ Stacked Firewood Pizza Kit Economy / Pizza Kit Premium - Really Quick Dough Mixer - Really Useful Rolling Pin - Kneading Board - Cheese Grater - Really Long Pizza Peel - Pizza Cutting Board - Really Quick Pizza Cutter CULINARY HUD Culinary HUD The Culinary HUD is integrated with the Farming HUD to save you one attachment spot. This is what it looks like when you are at Level 1 : The Culinary HUD refers to the second row of icons, as highlighted in the red box. The first icon "Culinary Arts" will provide you a summary of statistics when clicked on. The second icon "Spatula" will attach / detach the cooking spatula (setup required as described below). At Level 2 , the "Whisk" icon and the "Rolling Pin" icon appears. Clicking either will attach / detach the whisk and rolling pin (setup required as described below). At Level 3 , the "Knife" icon appears. Clicking it will attach/detach the knife (setup required as described below.) At Level 4 , the "Ladle" icon appears. Clicking it will attach/detach the ladle (setup required as described below.) At Level 5 to Level 10, more icons in the third row will appear. (Details to be released at a later phase). RLV Setting up the RLV folder To enable the automated attachment/detachment of the tools by clicking the icons on the Culinary HUD, follow these steps: Create a #NeedyHUD folder structure (under #RLV in Inventory) as per the picture on the right. Put the cooking tools in the sub-folders as indicated in the picture. Check that your viewer's RLV mode is enabled. (For Firestorm, put a tick next to "RestrainedLove API" in the Advanced menu). This makes it easier for you to equip your avatar with the tools with a touch of a button, without having to look for them in your inventory. BASIC SKILLS IN THE KITCHEN Six lessons in under 10 minutes to make yourself useful in the kitchen. (The Culinary HUD is not required for this section.) Lesson 1: FRYING AN EGG What you need Carton of Eggs or Basket of Eggs Really Useful Frying Pan or Really Non-Stick Frying Pan Lesson 2: MAKING COFFEE What you need Really Hot Coffee Pot Optional: Mug design HUD (comes with Coffee Pot) Lesson 3: MAKING SMOOTHIES OR PROTEIN SHAKES What you need Really Useful Blender (earn it at Level 4 Fitness ) Quart of milk (from Supermarket) or Bottle of Milk (from Farming) Bowl of strawberries (from Supermarket or Farming) Lesson 4: MAKING TEA What you need Really Quiet Kettle Really Infinite Teapot Box of Earl Grey Tea, or Box of Peppermint Tea, or Box of English Breakfast Tea, or Box of Ginger Tea Lesson 5: CUTTING MARBLE CAKE What you need Marble Cake Really Sharp Kitchen Knife / Fruit Knife Lesson 6: MAKING TOAST What you need Really Hot Toaster Loaf of Bread Ideas, suggestions and feedback

  • Level 5 | Really Needy HUD

    Level 5 Machine weights

  • Farming | Really Needy HUD

    Farming game for Really Needy HUD Crop Agriculture Soil Patch Farming Tools Types of Crops Planting Seeds Watering Crops Weeding Turns & Fertiliser Harvesting Animal Husbandry Farming HUD Selling produce Upgrading tools Wiki Video Tutorial Farming A game in the virtual world of Second Life where your avatar can grow crops and rear animals for a self-sustaining lifestyle; unlock new abilities by gaining Farming Experience Points and levelling up; compete for a spot on the Farming Leaderboard; sell what your avatar produces on the farm to others ; .. all while creating your dream farm! For the video tutorial on rearing animals, please click here to jump below VIDEO TUTORIAL KEY MOMENTS Types of crops - 0:06 Tilling - 1:02 Planting seeds - 1:48 Watering Can - 2:17 Refilling watering can (SL sea) - 2:46 Refilling watering can (Tap) - 3:11 Weeding using a trowel - 3:44 Weeding using a hoe - 4:48 Fixing the fence - 5:29 Fertiliser - 6:35 Garden hose - 7:21 Sprinkler - 7:38 Harvesting - 8:27 Harvested produce - 8:54 Crop Agriculture CROP AGRICULTURE GETTING STARTED To get started on Needy Farming, you need: Really Needy Farming HUD Basic farming tools Rake Watering Can Garden Trowel Either a Dirt Row or Soil Plot Seeds HOW TO PLAY Rez a soil patch on your land. Till your soil with a rake, if required. Plant seeds for the type of crop you would like to grow. Make sure your soil patch’s Growth mode is ON. Water your soil patch on a regular (daily) basis. Harvest the crop when it is ready. Soil Patch SOIL Types of soil patches There are two sizes you can choose from, for the soil patch to grow your crops. Really Useful Dirt Row can grow up to 3 plant units (at the same time) at level 0 does not need to be tilled before planting seeds land impact of 1 Really Useful Soil Plot can grow up to 8 plant units (at the same time) at level 0 needs to be tilled before planting seeds land impact of 6 weeds spawned will have additional 3 land impact two types available The first type can be set to Difficulty of Beginner or Intermediate. It cannot be changed to Advanced. The second type is set to Difficulty of Advanced only and cannot be changed to Beginner or Intermediate The maximum plant units will increase as your avatar increases in Farming level After rezzing the soil patch, click on the soil and hold down the mouse button until the SETTINGS menu pops-up. Settings Menu The two most important buttons for a start are Growth and Difficulty. Growth – this toggles Growth mode to be ON or OFF. When it is OFF, your plants will not grow and other things will not happen as well. You can turn it off when you are going to be absent from SL for a while. Difficulty – choose from BEGINNER, INTERMEDIATE or ADVANCED. Here are some basic differences . DIRT ROW SOIL PLOT Beginner Plants will stop growing but will not die if there is insufficient soil moisture No weeds risk No Farming experience points (Farming XP) will be awarded Intermediate Plants can die if there is insufficient / too much soil moisture Risk of weeds 2 Farming XP will be awarded for each crop harvested Advanced Plants can die if there is insufficient / too much soil moisture Risk of weeds Other risks as your avatar advances in level including fence breakdown risk, animal risk, pest risk and crow risk 4 Farming XP will be awarded for each crop harvested ❖ For more details on differences in game mechanics for Beginner / Intermediate / Advanced Difficulty level, check this wiki page . Other settings are: Turn – the amount of time which your crops will grow one stage is called a ‘turn’. The default turn is 24 hours when you start the game. As your avatar levels up, there are more options available to reduce the length of time for each turn by using Fertiliser. Moisture – turn on/off the floating text that shows the soil moisture level in %. Name – change the name of your soil patch. Fence - turn fence visible / invisible. (applicable only for Soil Plot for Beginner/Intermediate) Soil fertility - this is a score from 0-100%. 0-19: Barren; 20-39: Low; 40-59: Medium; 60-79: High; 80-99: Very High; 100: Maximum . Fertility decreases as crops mature, and can be increased with the usage of fertilisers. Fertility does not matter if Difficulty is set to Beginner or Intermediate. Fertility is able to affect the duration of the Turn if Difficulty is set to Advanced. Refer to the section below on Turns & Fertilisers for more details. Soil moisture - this is also a score from 0-100%. See section below on Watering Crops. Soil volume - this is the amount of soil in your soil patch in cubic metres. Roughly speaking, it is: length x breadth x height. FARMING TOOLS You start the game with the ability only to use basic tools - the Rake, Watering Can and Garden Trowel. As you level-up, you will unlock the ability to use more tools. The minimum Farming level required to use each tool is shown below. Farming Tools RAKE For tilling your Soil Plot before planting seeds . Add/attach the Rake to your avatar, stand on your soil and click on the Rake to start tilling your soil. A Soil Plot only needs to be tilled once every 30 turns before planting seeds. A Dirt Row does not need tilling. Use of the Rake will expend Energy. No land impact when attached. Level 0 WATERING CAN For watering your Soil Plot or Dirt Row. Add/attach the Watering Can to your avatar, stand on your soil and click on it to start watering your soil. You need to aim for the CENTRE of the Soil Plot or Dirt Row. (Water the soil plot, not the plants). If you run out of water, walk to the edge of a SL sea / lake and click on the Watering Can to refill (see video ). You can also install a Water Tap for refilling Watering Can (see video ). Use of the Watering Can will expend Energy. No land impact when attached. Level 0 GARDEN TROWEL For removing weeds from your Soil Plot or Dirt Row. Add/attach the Trowel to your avatar, stand parallel to the row of weeds and click on the Trowel to start weeding. Use of the Trowel will expend Energy, and also reduces Hygiene. No land impact when attached. Level 0 GARDEN TAP For refilling your watering can. Rez the garden tap. Rez the watering can next to your garden tap and it should move into position. Click the garden tap to turn it on. (It will turn off by itself). 3 land impact. Level 0 HOE For removing weeds from your Soil Plot or Dirt Row, with greater efficiency than the Garden Trowel. Add/attach the Hoe to your avatar, stand parallel to the row of weeds and click on the Hoe to start weeding. Use of the Hoe will expend Energy. No land impact when attached. Level 1 HAMMER For repairing the fence of your Soil Plot. Fence wood is required too. Add/attach the Hammer, rez the fence wood near your fence, click and hold on the broken fence until a menu pops-up and press the button. Drag the vertical wooden posts to the fence, followed by the horizontal planks to repair. No land impact when attached. Level 2 FERTILISER For accelerating crop growth, and producing bumper/premium crops (Level 4 and above) Soil patch owner must be minimum level 2. Industrial Fertiliser raises soil fertility by 15% while Organic Fertiliser raises fertility by 30%. Rez and move next to (or on) the soil patch. Say /use in chat and click the bag of fertiliser. Use of fertiliser will reduce Hygiene. 1 land impact. Level 2 WEEDKILLER For eradicating all weeds on your soil patch . Soil patch owner must be minimum level 5. Rez and move next to (or on) the soil patch. Say /use in chat and click the bag of Weedkiller. Caution: Causes Health damage if not wearing face mask when using the Weedkiller. Use of Weedkiller will reduce Hygiene. 1 land impact. Level 5 GARDEN HOSE For watering your Soil Plot or Dirt Row . Soil patch owner must be minimum level 3. Position the Hose to point at the centre of the soil patch. Click on it to turn it on. No Energy will be expended in using the Hose. 3 land impact. Level 3 SPRINKLER For watering your Soil Plot or Dirt Row . Soil patch owner must be minimum level 4. The Sprinkler has a timer you can set to turn it on periodically. No Energy is expended in using the Sprinkler. 2 land impact. Level 4 Credit: Sprinkler by LikeMeow QUICKLIME For removing moisture from your soil if you over-watered. Soil patch owner must be minimum level 5. Rez and move next to (or on) the soil patch. Say /use in chat and click the Sack of Quicklime. One Sack removes 0.1 cubic metres (100 litres) of water from the soil. Caution: Causes Health damage if not wearing face mask when using the Quicklime. Even when face mask is worn, there is still an additional 35% chance of 2%-10% Health damage. Use of Quicklime will reduce Hygiene. 1 land impact. Level 5 Level 6* PESTICIDE For preventing insect infestation on your crops. Soil patch owner must be minimum level 6*. Add/attach the Pesticide to your avatar, stand 1m in front of the crop and click on the Pesticide to spray. No land impact when attached . *Note: The minimum level to use Pesticide has been reduced to Level 5 for Soil Plot Advanced v2.5 and Dirt Row v2.5 onwards. SCARECROW For preventing crows from eating your mature crops. Rez the scarecrow and move it near your soil patch. Has an effective range of 10m (distance between the scarecrow and the centre of your soil patch). 2 land impact. *Note: The minimum level to use Scarecrow has been reduced to Level 6 for Soil Plot Advanced v2.5 and Dirt Row v2.5 onwards. Level 7* Overview of Agriculture Pesticide Drone PESTICIDE DRONE For advanced insect risk detection and automatic pesticide application Rez the drone and click for the menu - manual mode or set automatic timer mode. Has an effective range of 100m 5 land impact. Level 7 TYPES OF CROPS The following table shows the minimum level to grow each type of crop, the number of turns from seed to harvest and the plant units it consumes from a soil patch. Produce from the harvested crops can generally be consumed to restore Hunger. Some produce will restore both Hunger and Thirst. Some have special nutritional values (eg. vitamins) that can remedy Pregnancy conditions. Note that Raspberries and Blueberries do not restore any needs but are used for Cooking . Types of Crops VEGETABLES / SHRUBS LETTUCE x 1 Min level: 0 # turns to ha rvest: 5 # plant units: 1 CARROTS x 4 Min level: 0 # turns to ha rvest: 5 # plant units: 4 BLUEBERRIES x 1 Min level: 4 # turns to ha rvest: 8 # plant units: 2 SPINACH x 4 Min level: 0 # turns to ha rvest: 5 # plant units: 4 STRAWBERRIES x 1 Min level: 1 # turns to ha rvest: 10 # plant units: 1 SORREL x 4 Min level: 0 # turns to ha rvest: 5 # plant units: 4 POTATOES x 1 Min level: 2 # turns to ha rvest: 6 # plant units: 2 BEETROOT x 4 Min level: 0 # turns to ha rvest: 5 # plant units: 4 RASPBERRIES x 1 Min level: 3 # turns to ha rvest: 10 # plant units: 2 Credit: Potato plant mesh by LikeMeow TREES FIG TREE Min level: 3 # turns to ha rvest: 10 # plant units: 6 LEMON TREE Min level: 4 # turns to ha rvest: 10 # plant units: 6 ORANGE TREE Min level: 5 # turns to ha rvest: 10 # plant units: 6 AVOCADO TREE Min level: 6 # turns to ha rvest: 10 # plant units: 6 PLANTING SEEDS To plant seeds, rez the Seed object from the folder onto your soil patch. The seed object looks like a glowing sphere or cube to help you to position it. If your avatar is near the seed, the Farming HUD will play a planting animation as well. Bury the seed sphere/cube about half-way into the soil and it should 'vanish' with the message that it is successfully planted. If it does not vanish, use your Edit arrows to move it a little up or down. For every seed planted, your avatar's Hygiene will drop by 10% due to hands and legs getting dirty with soil. If you have the Really Dirty Hands & Legs BOM layers, they will automatically be activated . (See image on the right). If you have planted the seeds, click the soil and hold down the mouse button until the Settings menu pops-up. Then click the Growth button to start the growing phase. (The Growth button is like a start/pause, for example you might want to pause it if logging out, or you will not be in-world for an extended time). Planting Seeds Using Mega Weather Maker to water your soil patches If you own a Really Useful Mega Weather Maker v7, you can also use it for watering your Soil Plots and Dirt Rows. It has the advantage of covering a large area, without needing your avatar to use the Watering Can or Garden Hose on individual soil patches. You can set it to Rain and come back a few hours later. You can even set it to follow the weather of a RL city (using the RL to SL weather converter ) for additional realism. Choose a city which rains often. Tropical Rain delivers 8mm of rain per hour, which works out to be ~5.3% of moisture for the Soil Plot (Adv v2.7) and ~6.2% for the Dirt Row (v2.7). Light Rain delivers half as much moisture as Tropical Rain per hour. WATERING CROPS Soil moisture is probably the most important factor for growing your plants. Keep it between 25% and 80% . (Soil moisture percentage is calculated by volume of water divided by volume of soil.) If it is too dry or too wet, the plants will stop growing. (For Intermediate/Advanced, the plant health will be affected and will eventually die if not rectified). The soil moisture evaporation rate is 1 mm per turn for Beginner and Intermediate, and ranges from 1mm to 3mm per turn for Advanced. (1mm translates to about 0.7% for the Soil Plot). For watering the soil, the basic method is to use the Watering Can . The ability to use a Garden Hose will be unlocked at Level 3, and the ability to use a Sprinkler will be unlocked at Level 4. TIP: you should be aiming your Watering Can or Hose to the middle of the soil patch rather than watering the plants. You can also use the Mega Weather Maker v7 for watering soil - see sidebar. Watering Crops REMOVING WEEDS There is a 5% risk of weeds growing in your soil patch each round. This risk is only applicable for Difficulty mode of Intermediate and Advanced only and not applicable for Beginner. If weeds start to grow in your plot, add/attach the Garden Trowel or Hoe to your avatar, stand parallel to the row of weeds, and click on the Trowel to start weeding. (See the video for guidance). If you do nothing, the row of weeds will multiply each turn to become two rows, three rows, up to maximum of four rows. After that, your crops will start to lose health each turn, until they die or the weeds are eradicated . Weeding TURNS & FERTILISER The table below shows what are the options for setting the duration of a Turn, by level. (For Advanced difficulty only). By using fertiliser to raise the soil's fertility to above 60%, the duration of a Turn will be reduced to the corresponding figure in the Accelerated Turn column. For example: Thomas is currently level 3, so he has the option to set the Turn on his Advanced Soil Plot to either 24 hours or 12 hours. Thomas chooses to set it to 12 hours. Thomas decides that he wants to plant more crops this weekend. He buys some fertiliser and uses it to increase the soil fertility of his soil plot to 70%. While the soil fertility is above 60%, the Turn is reduced to 6 hours. Fertiliser also affects the chance to harvest premium crops and bumper crops at higher levels. Refer to the wiki for more details. Turns & Fertiliser Level Turn (number of hours) Accelerated Turn (number of hours) 1 24 12 2 to 4 24, 12 12, 6 5 to 7 24, 12, 10 12, 6, 5 8 to 10 24, 12, 10, 8 12, 6, 5, 4 Page 1 of 1 HARVESTING If your crop is ripe, wear your Needy Farming HUD and just click on the plant to harvest it. The harvested produce will be delivered to your inventory. (If your avatar is in a region with the Farming Server, it will be delivered to the Contents of your Needy Farming HUD.) The crop on the soil will delete itself shortly after harvesting. The Farming HUD will track the statistics of the number of crops harvested. It will report the statistics if you click on it. What the harvested items can be used for: Your avatar can consume it (restore Hunger, Thirst, or eat for some nutritional benefit if you are pregnant etc.) Your avatar can use it as an ingredient for Cooking (future) You can sell it to a NPC Vegetable Trader for N-coins You can sell it for L$ or trade it with another user You can have it delivered to a container (eg. pantry, storage bin etc.) (future) Harvesting Harvested Produce (Click the > arrow in the picture to see more) Lettuce, spinach, sorrel, strawberries, carrots, beetroot Potatos, lemons, oranges, figs, avocados Just a nice picture of lemons Lettuce, spinach, sorrel, strawberries, carrots, beetroot 1/3 Credit: Bowl of Spinach, Bowl of Sorrel, Basket of Lettuce, Crate of Potatoes, Basket of Oranges by LikeMeow ANIMAL HUSBANDRY Animal Husbandry Besides growing crops, your avatar can also rear animals. It will be dairy farming and poultry farming for a start, but will be expanded to more types of animals over time. Important Notes: Days below refer to RL days. Really Needy Farming HUD v1.1 is required to earn Farming XP. If you currently have an older version, say '/checkupdate2 ' in chat. If your Farming HUD is set to Beginner Difficulty mode, you will not earn any Farming XP. Use a soil patch to set Difficulty. Text in [square brackets] are features which are planned but have not yet been implemented. VIDEO TUTORIAL KEY MOMENTS Dairy Cow Feeding: 0:24 Petting: 1:20 Milking: 1:36 Chickens Wander: 2:20 Feeding: 2:52 Laying eggs: 3:57 Go Home: 4:40 If you follow this link to the video on Youtube, the resolution looks better than watching the embedded video on this page. DAIRY COWS Each animesh cow has a land impact of 20. Animations include standing idle, looking left/right, shaking head and eating. Production A dairy cow will nee d to be fed on a daily basis for 3 days in order to start lactating (ie. produce milk). On the 4th , 5th and 6th day, the cow can be milked if it has been fed for the day. The 6 days form one cycle, after which the cow returns to 'Day 1' and it has to be fed for 3 days before producing milk again. Each milking will produce a bucket of milk (about 6 quarts) Harvested item : Milk Bottle Holder Farming XP awarded : 2 Productive lifespan : 7 lactation cycles (21 harvests of milk in total) Feeding There are 3 types of cattle feed, sold separately Hay - basic nutrition Silage - moderate nutrition, 5% boost to Mood [Grain - premium nutrition, 10% boost to Mood] How to feed Rez the Haystack or Silage and move it in front of the cow. Click the cow and choose "Feed" from the menu. If it says the cow is hungry, the feed is near enough. Otherwise you need to shift the feed nearer the cow. Once the feed is near enough, the cow will automatically start eating the feed. If you do not feed the cow for more than a day (to be exact, more than 26 hours after its last feeding time), its Mood will decrease by 10% but it will not die from hunger. After a feed, you have to wait at least 22 hours before feeding it again. Milking If you are not sure if the cow is lactating, click on the cow and choose "Milk" from the menu. It will say the cow is not ready to be milked if you have not fed the cow for the preceding 3 days or not fed the cow on Day 4, 5 or 6. To milk the cow, right-click on it and choose "Sit". Your avatar will automatically sit on a low stool and a bucket will appear below the cow's udders, and your avatar will start to milk the cow. Once the milking is done, the harvested milk will be delivered to your inventory. If the cow's mood is 100% or more, you have a chance of harvesting Premium Milk . The chance is 50% for Levels 1 to 4, and an additional 5% for each Level above 4. After a successful harvest of Premium Milk, the Mood will drop to 95%. Petting You can improve the Mood of the cow by 5% by petting it daily. Petting more than once a day does not have any increased effect. To pet the cow, have you avatar stand close to it. Click the cow and choose "Pet" from the menu. Milk Bottle Holder can be opened to give 6 Bottles of Milk. each Bottle of Milk (one quart) can be consumed to restore Hunger/Thirst, or used as an ingredient for Cooking (future) sold for N-coins (if unopened) to the NPC Wholesaler sold for L$ or traded with another user Milk Bottle Holder GRASS Min level: 0 # days to harvest: 4 # plant units: 9 Making hay Instead of buying hay to feed your cows, you have the option of growing grass yourself to make hay. Buy grass seeds at the store. (They are sold in pack of 12) Plant the grass seeds in a Soil Plot. You need 9 plant units as they take up quite a lot of space. Harvest the grass after 4 days. Harvested item: Haystack CHICKENS Each animesh hen has a land impact of 20. Animations include standing/pe cking, walking, fast-walking, sitting and laying. [Chickens can be rezze d on your land and left alone. Chickens who are old enough become Hens capable of laying eggs.] Production Hens will produce one egg per day if they are fed. When your avatar collects 6 eggs* from the same Hen, a harvested item will be delivered to your inventory. Harvested item : Basket of Eggs* Farming XP awarded : 2 Productive lifespan: 120 eggs * [If your Hen has Mood of 100% or higher when laying the egg, Premium Egg will be laid and Mood will reduce to 95%. Six Premium Eggs collected will yield harvested item of "Basket of Premium Eggs".] Basket of Eggs Feeding Hens only need to be fed once a day to lay eggs. If you do not feed the Hen, it will not die from hunger. Not feeding a Hen for more than 26 hours after the last feed time will decrease Mood by 10%. Feeding a Hen earlier than due time (22 hours from last feed up to 24 hours from last feed) will increase Mood by 10%. It can store the swallowed food in a pouch-like storage area in its esophagus called a crop, to digest it more leisurely later. As such, if you feed it earlier eg. 1 hour earlier than the 24 hour mark, you don't need to feed it again till 25 hours later. If you try to feed it too early (before 22 hours from last feed), it will not be hungry. There are 2 methods of feeding. Feed by hand Add/attach the "Bag of Chicken Feed " to your avatar Click on the bag and your avatar should play an animation of throwing chicken feed on the ground Hens within 5m will come toward the feed pellets to eat them [Place chicken feed in a trough, click on the Hen and choose "Feed" from the menu.] Bag of Chicken Feed contains 150 feeds. The feed pellets are temporary and will disappear within a minute or two if not eaten by the chickens; hence no land impact. Credit: mesh bag and 2 bento animations by LikeMeow; script and pellets by Grace7 Ling Bag of Chicken Feed Moving around When you rez the Hen, it will save the rez position in the region as its Home location . There are some options you can access in the menu for your Hen to customise its movement. Wander : the Hen will move around, but generally not further than 10m from its home location. Use this option only if the ground is relatively flat or your Hen might tumble. Stay : this cancels the Wander mode and the Hen will stay in its current position. (It will still move towards chicken feed if it is feeding time!) Go Home : the Hen will be moved to its home location and Wander mode will be turned off. Set Home : saves the current position of the Hen as its home location. If the Hen has stumbled or fallen over, you can give it a helping hand by touching it. If your hen has produced more than 90 eggs (ie. a more mature hen that can't run as fast as a younger hen), there is a 3% chance of it being eaten by a fox if it is not fed (as it wanders around, looking for food). A chicken coop will reduce or eliminate that risk if your hen or chicken is near or inside the coop. Laying eggs After a Hen finishes feeding, it will start to lay an egg 10 minutes later. If there is a Chicken Coop nearby, it will try to go to one of the unoccupied nestboxes to lay its egg. If there is no coop, it will just lay its egg wherever it is at. The egg laying will take 30 minutes. Collecting eggs To collect an egg that has been laid, ensure your avatar is wearing the Farming HUD and click on the egg. Collect 6 eggs from the same Hen to make a harvest. If the Farming HUD is not worn when you click the egg, the egg will just vanish and not record that it was collected. If an egg that has been laid is not collected the Hen that laid it will not lay more eggs. the Hen may not move away from the egg (even if Wander mode is on) after laying. (Maternal instincts?) Basket of Eggs can be opened to give 6 Eggs each Egg can be taken into inventory or moved to the Really Useful Frying Pan with a click, or used as an ingredient for Cooking (future) sold for N-coins (if unopened) to the NPC Wholesaler sold for L$ or traded with another user CHICKEN COOP If your avatar is doing serious egg farming and own 3 or more hens, you may like to consider investing in a chicken coop Full mesh with incredible realistic detail at just 10 land impact Two sliding doors , one on each side, which can be open/closed independently, with group access 6 nestboxes for up to 6 hens to lay eggs simultaneously Nestboxes on each side has openable lids to facilitate harvesting of eggs Credit: Coop design and build by LikeMeow. SPECIAL FEATURES Hens that are nearby will come to the coop if they need to lay eggs! Increases the production lifespan for Hens from 120 eggs to 150 eggs +5% Mood for Hens who lay their egg in a nestbox Reduces / eliminates risk of your Hens being eaten by a fox Really Nice Chicken Coop A Brought to you by The Really Useful Scripts Corner in partnership with Meow² Making WARRANTY: If you buy the Coop with Transfer permissions, you can do a 1 to 1 swap with me in case of any malfunctions within a year of purchase. Copy-only permission is available for 3x the price, with no warranty. Useful tips Rez your Hens outside either of the doors of the Coop, so that they don't wander too far away from the Coop. Feed your Hens near either one of the doors of the Coop, so that it is easy for them to enter the Coop to lay eggs after feeding. To access the Coop's menu, say "/1 menu" or "/1m" in chat. You can use the menu to reserve/clear nestboxes if required. (Normally the occupancy of each nestbox is automatically updated when a Hen goes into one to lay an egg and gets up after laying an egg). Known issues and fixes Occasionally the wandering script in the Hen encounters a memory ('stack-heap collision') error. When that happens, click on the Hen, and choose Reset from the menu. If you see the warning "Can't enable physics for keyframed objects" it is probably because you moved the hen while it is going up/down the slope in the coop or making its way to the nestbox. Avoid touching or grabbing the Hen while it is walking, to minimise such warnings. Farming HUD FARMING HUD This is what the Really Needy Farming HUD looks like when your avatar is starting out at Farming Level 0: To update your Farming HUD if you have an older version, say '/checkupdate2 ' in chat Clicking the Arrow icon will cause the HUD to stow-away to the right side of your screen. Clicking the Farm icon will cause the HUD to provide summary statistics of how many crops you have harvested, and how many Farming Experience Points ("Farming XP") you have. Clicking the Rake icon, Watering Can icon or Garden Trowel icon will cause your avatar to attach those tools if you have setup the RLV folder correctly. (See below) When your avatar reaches Level 1, the Trowel icon changes to a Hoe, because the ability to use a Hoe will be unlocked. When your avatar reaches Level 2, the Hammer icon appears, because the ability to use a Hammer to fix a fence will be unlocked. Setting up the RLV folder To enable the automated attachment/detachment of the tools by clicking the icons on the Farming HUD, follow these steps: Create a #NeedyHUD folder structure (under #RLV in Inventory) as per the picture on the right. Put the farming tools in the sub-folders as indicated in the picture. Check that your viewer's RLV mode is enabled. (For Firestorm, put a tick next to "RestrainedLove API" in the Advanced menu). This makes it easier for you to equip your avatar with the tools with a touch of a button, without having to look for them in your inventory. Selling produce EXCHANGING PRODUCE FOR N-COINS You can sell your harvested produce for N-coins if you choose not to consume it. Once you have unpacked the produce or transferred it to someone else, it can no longer be exchanged for N-coins. Steps Talk to Isobelle (NPC trader) in Rainy City about selling your produce . Rez your produce on the crate (one item at a time). Click the crate. You will receive the number of N-coins as follows. Isobelle will also list the prices if you ask her about price. If your produce is of premium quality, it will fetch a higher price. Standard Quality Lettuce : 2 Spinach : 3 Sorrel : 3 Beetroots (4) : 10 Carrots (4) : 10 Strawberries : 5 Potatoes : 18 Figs : 12 Lemons : 16 Oranges : 20 Avocados : 20 Premium Quality Lettuce : 3 Spinach : 5 Sorrel : 5 Beetroots (4) : 14 Carrots (4) : 14 Pink Strawberries : 10 Potatoes : 28 Figs : 15 Lemons : 22 Oranges : 30 Avocados : 30 Isobelle will buy your produce for N-coins Note: Isobelle is capable of simple chit chat as well. If you want to chit chat to her, say "Isobelle" at the start of your sentence and face her so she knows you're talking to her. Upgrading tools UPGRADING TOOLS You can upgrade the following tools at the Blacksmith's workshop to enhance their specifications (refer to tiles below). Really Voluminous Watering Can Really Dandy Rake Really Dirty Hoe Points to note You can upgrade a Standard tool to +1 the first time. Subsequently, you can upgrade a +1 tool to +2, or a +2 tool to +3. You will need to provide the blacksmith with the required mineral ore (see pictures on the right) and leave your tool there for 3 to 5 days. You can buy the ore at the store. You need to be at least Level 1 to use +1/+2/+3 tools. Steps Talk to Gen (NPC blacksmith) in Rainy City about upgrading your Watering Can / Rake / Hoe . Rez your tool on his Appraising Table. Gen will tell you the ore that he needs to upgrade your tool. If you agree, click the Yes button in the dialog box. Right-click on his wooden chest, choose Edit and go to the Contents tab. Drag your tool and your ore inside. You should be informed in 3 to 5 days (RL) that it is ready. Go back to Gen's workshop to collect your tool. Upgrade from Standard to +1 NETHERITE Upgrade from +1 to +2 DURANIUM ORE VIBRANIUM CRYSTALS Upgrade from +2 to +3 Standard Rake Takes 10 rounds to rake a Soil Plot (10% progress each round) Minimum level: 0 +1 Rake Takes 7 rounds to rake a Soil Plot (15% progress each round) Minimum level: 1 +2 Rake Takes 5 roun ds to rake a Soil Plot (20% progress each round) Minimum level: 1 +3 Rake Takes 4 roun ds to rake a Soil Plot (25% progress each round) Minimum level: 1 Standard Hoe 8 swings to remove a row of weeds Minimum level: 0 +1 Hoe 6 swings to remove a row of weeds Minimum level: 1 +2 Hoe 4 swings to remove a row of weed Minimum level: 1 +3 Hoe 2 swings to remove a row of weeds Minimum level: 1 Standard Watering Can Delivers 2.5 litres per 5 sec Capacity of 25 litres Minimum level: 0 +1 Watering Can Delivers 5 litres per 5 sec Capacity of 50 litres Minimum level: 1 +2 Watering Can Delivers 10 litres per 5 sec Capacity of 100 litres Minimum level: 1 +3 Watering Can Delivers 20 litres per 5 sec Capacity of 200 litres Minimum level: 1 WIKI Wiki For a library of articles about the game, including Experience Points required for each level, Difficulty modes, tools and more, please navigate to the Really Needy Farming Wiki . Knowledge of the wiki information is not required to enjoy the game. Ideas, suggestions and feedback

  • Discord
  • Facebook
  • Twitter
  • Instagram

© 2019-2025 The Really Useful Scripts Corner

bottom of page