Advanced Weed Growing v3 [ESX/QBCore/QBox/Ox]

Update v1.2.6

Added:

  • Empty functions for PlantFed() and PlantWatered() events
  • Ability to cancel destroying plant action
  • Support for multiple models for seed farms
  • Optional “plant_shears” item requirement when harvesting

Fixed:

  • Not removing correct quantity of bud when rolling
  • Typo in PlantVerification callback
  • “Compare number with nil” error for qs-inventory

Learn More: Most Popular FiveM Weed Growing Script | Lation Scripts
(Use the code “CFX” at checkout for 10% off)

:tada: Black Friday Sale

Interested in Weed Growing? Buy now while it’s 25% off for a limited time!

:santa: Christmas Discount Event

Every day from now until December 25th we will be generating unique coupon codes for varying discounts on one or more scripts! Today’s lucky winner is our popular Weed Growing script! Act fast - these codes expire every 24 hours!
day2

:tickets: Christmas Discount: DAY 13

Today you can purchase any of our criminal scripts (such as: Money Laundering, Weed Growing & Drug Sales) for 20% off! This sale is active for the next 24 hours. No code must be entered since the discount is automatically applied! Enjoy :heart:

:shopping: Shop Now

:herb: Advanced Weed Growing v2: RELEASED

I’m thrilled to announce the release of Advanced Weed Growing v2! This update brings a whole new level of depth, realism, and customization to your server. Let’s dive in, here’s what’s new:

  • Complete Overhaul: Crafted from the ground up for a smoother, more efficient experience.
  • Plant Placement: Highly interactive system allowing precise control over where you grow.
  • Immersive Animations: Dive deeper into the role with improved animations and realistic props.
  • Interaction Support: Choose between using TextUI or a target system for interactions.
  • Enhanced Housing: Introducing routing buckets for a seamless integration.
  • Admin Management: An all-encompassing in-game menu for admins to manage plants.
  • Growth System: A completely customizable, efficient and realistic plant growth system.
  • Death Mechanic: Set conditions for plant death due to lack of water, food or low quality.
  • “Smoke on the Water”: Optional & customizable in-game supply shop for all plant care needs.
  • Seed Searching: Create & customize your seed farms with new prop spawning support.
  • Interactive Rolling: A new mechanic making joint rolling more interactive and realistic.
  • Smoking Experience: Light up joints with customizable effects and realism.
  • Discord Logs: Customize webhook links per category in a dedicated logging file for security.
  • Easy Setup: Streamline script installation with automatic SQL detection & injection.
  • … and much more!

Oh, you wanted more? Let’s continue then…

  • Choose whether to return plant pots on harvest with configurable odds.
  • Improved custom model handling meaning you can now live restart the script without crashing.
  • Each plant at seed farm locations now each have a unique cooldown per-plant.
  • Set a maximum number of joint rolls per interaction for balance/AFK-avoidance, etc
  • Option to require police presence when planting seeds.
  • More new empty functions: SeedPlanted, JointSmoked & ItemPurchased.
  • Easy ox_lib UI progress toggle added to config for easy switching between circle & bar.
  • Optional version checker has been added so you can stay up-to-date.
  • All progress bar(s) related code is now open sourced.
  • Far greater item requirement(s) flexibility now possible in the config.

You’d think I was done, right? :wink: Nope…

:rocket: Major Performance Enhancements
I’m quite proud to announce a remarkable +95% increase in server-sided performance while under load. By under load, we mean 1000+ actively growing plants. The optimizations made significantly enhances server responsiveness and stability.

Alongside this, we’ve also achieved a staggering +98% increase in client-side performance while under load! Again, resulting in smoother gameplay with reduced lag and faster response times for your players.

Check out the new showcase!

Learn More : Most Popular FiveM Weed Growing Script | Lation Scripts
(Use the code “CFX” at checkout for 10% off )

This is the best weed planting script you ever will find this include all you want and the performance is insane and if you encounter any issues Latino is all ways ready to help I have never had any issues with Lation weed script so it would be weird if you have :mending_heart:

Nice and complete script, gg.

Hands down Lation is the GOAT! not only does he come in hot with this latest fire update, but you will never find a dev with more willingness to help you, if you’re not buying this script then seriously you’re missing out!! 1000/1000 stars!!

Thanks alot man <3

Thank you!

Thanks so much brotha!

This script is so awesome! It has everything you could want in a weed growing script and is really well made. I can’t wait to use this :slight_smile:

Aswm weed growing something new and look aswm :heart_eyes:

I have a weed script already but this ones looks much better and very optimized. I already have his drug sales and money laundering which is top tier to me and meets all my requirements for my city I’m building. Great customer service and speedy responses. One of my favorite devs so far. Keep up the great work!! Happy new years!!

Thank you :slight_smile: I hope you enjoy!

Thanks!! Hope you enjoy <3

I hope you upgrade to our Advanced Weed Growing soon :slight_smile: very glad to hear you’re enjoying the other scripts too! <3

ahh v2 update is amazing! Didn’t think it could get that much better, it was already boss :smiley:

Thanks :smiley:

Always amazing scripts from you man❤️‍🔥

Great support. Nice and clean setup. Keep up the work

Thanks man :slight_smile:

Thanks! Will do <3

im loving the script!

easy to configure and setup!

i wish this hooked into qbcore stress functions to relieve stress like vanilla joints do

Hey man, love to hear this! As for the stress function, you can absolutely do that by placing your stress reduction event into this JointSmoked function found in server/functions.lua:

-- Empty function thats triggered when a player smokes a joint
--- @param source number Player ID
--- @param item string Item name
JointSmoked = function(source, item)

end

This is how most users are implementing their stress reduction into the joints. Generally, stress reduction events/exports/etc vary from server to server so found it most simple to do it this way. You can also filter out a joint with the item param to make certain joints relieve certain amounts, for example:

-- Empty function thats triggered when a player smokes a joint
--- @param source number Player ID
--- @param item string Item name
JointSmoked = function(source, item)
    if item == 'purplehaze_joint' then
        -- Do thing
    elseif item == 'bluedream_joint' then
        -- Do slightly different thing
    end
    -- So on and so forth
end

I hope this helps man! <3