FAQ / Troubleshooting
Q: Why canβt I farm here? A: Check if the area requires a specific job (
allowed_jobs
), a tool (enableToolRequirement
), or a vehicle (requireVehicle
). Also verify you have enough inventory space.Q: Prices not updating automatically? A: Ensure your server restarts or triggers the relevant function that recalculates prices. Check your Discord webhook credentials are correct.
Q: My progress bar never appears. A: If
RS.UseCustomProgressBar
isfalse
, ensure your script calls a default progress bar. Iftrue
, definePushProgressbar
/CancelProgressbar
properly.Q: No item is being spawned when I farm. A: Verify the
itemsToFarm
have correctname
,label
, andrarity
values. Ifrarity
is set to a low value, it may be too rare. Also ensure your inventory can accept items.Q: How do I add new crops? A: Create a new table entry in
RS.FarmingConfig.farmingPoints
, specifying location, items, and requirements. You can also add new processors or sellers for the newly created item flow.
Last updated