Props
Adding More PROPS
Adding more props that bars can use is very simple via the
config.lua
fileTo add another prop that a shop can use you must pass the
shopName
as the key and then customize the values to suit your needsTo add another prop simply add your
shopName
as theykey
and then customize thevalues
to suit your server needs inConfig.Props
please note some target interactions for props and require args passing with the targetto disable a prop if you are not using that location or that prop then change
Enabled= true
toEnabled = false
this will then disable that specific prop and will not spawn it
Sometimes props can seem to not appear to spawn where you want them too.
There could be a couple of reasons for this:
The prop model you have used is incorrect or unrecognised
If using custom props ensure these are being streamed in your server correctly and prop names match
Some MLO collisions are scuffed meaning props fall through them due to the native
PlaceObjectOnGroundProperly()
being used in this script.
In these cases consider using target zones instead to interact with the specific event you are wanting to use a prop for. You can pass the same data and args to the target table as you would with the props table
Some target locations for props and box zones will need args
passing with them for various events to determine which shopis accessing that function
⚠️ The ShopName
args must match the ShopName
key
Last updated