Admin Guide

Admin commands, test helpers, and player-facing weed commands.

Commands and permissions for the current oxide-weed resource.

Commands

Admin commands

CommandDescription
/weed_kitGive yourself a starter grow kit
/weed_seedsGive 5 seeds of 3 random base strains
/weed_givebuds [amount] [item]Give yourself product with generic metadata
/weed_growInstantly finish the nearest plant
/weed_waterSet the nearest plant to full water and fertilizer
/weed_dryInstantly dry buds on the nearest weed table
/weed_fasttickToggle the plant tick to 5 seconds for testing
/weed_setxp [amount]Set your weed XP directly
/weed_infoShow current counts and your progression summary
/weed_sellkitGive randomized sellable weed products
/weed_clearplantsRemove all plants from the server
/weed_clearlampsRemove all grow lamps from the server
/weed_clearequipmentRemove all placed equipment from the server

Player command

CommandDescription
/weedstatsShow your progression card

Command Details

/weed_kit

Gives a compact testing loadout, including seeds, supplies, equipment, the manual, and smoking items.

/weed_seeds

Registers and gives 5 seeds each for 3 random base strains.

/weed_givebuds [amount] [item]

Default behavior:

  • amount defaults to 20
  • item defaults to weed_bud

The given item uses generic test metadata:

  • strain_id = 'generic'
  • strain_name = 'Generic Kush'
  • quality = 'Mid'
  • quality_score = 50
  • generation = 1

Examples:

/weed_givebuds
/weed_givebuds 10 dried_weed_bud
/weed_givebuds 5 weed_1g

/weed_grow

Finds the nearest plant within 10 units and advances it to the final stage.

/weed_water

Finds the nearest plant within 10 units and sets:

  • water to 100
  • fertilizer to 100

/weed_dry

Finds the nearest weed_table within 10 units and instantly completes drying for any active buds on that table.

/weed_fasttick

Toggles Config.PlantSettings.updateInterval between:

  • normal configured value
  • 5000

This is server-wide and intended only for testing.

/weed_setxp [amount]

Sets your XP directly in drugs_progression for drug = 'weed' and recalculates level state.

/weed_info

Shows:

  • total plant count
  • total lamp count
  • total equipment count
  • your level
  • your XP
  • your total created count

/weed_sellkit

Gives randomized sellable products from the current sale set:

  • weed_1g
  • weed_eighth
  • weed_quarter
  • weed_half
  • weed_ounce
  • weed_brick

Each item includes strain, quality, generation, and trait metadata.

/weed_clearplants

Deletes all active plants.

/weed_clearlamps

Deletes all saved grow lamps and reloads lamp state.

/weed_clearequipment

Deletes all saved equipment, including weed tables, totes, water containers, drying racks, freeze dryers, and brick presses.

/weedstats

Shows the client-side progression card for the current player.

Permissions

All admin commands use:

IsPlayerAceAllowed(source, 'command')

That means your admins need the standard command ACE.

Example:

add_ace group.admin command allow
add_principal identifier.license:abc123 group.admin

Notes

  • Console cannot run these admin commands.
  • /weedstats does not require admin permission.
  • If a command appears to do nothing, check the server console for inventory or database failures.

Next Steps