baguette26410
Hey baguette26410, turrets can’t be modified with AssetModifier because _turrets is an array of TurretInfo objects and the plugin doesn’t support array indexing (you’d need something like _turrets[0].itemID which isn’t possible with the current dot-notation system).
As for vehicle speed, while it’s technically possible to change the values server-side, I wouldn’t recommend it. The client still uses the original speed values from the asset, so you end up with a mismatch between client and server — the vehicle will feel laggy and teleport-y because the client predicts one speed and the server corrects it to another. It’s a horrible driving experience.