Foam effect settings

For the foam command, we've added a foam effect on the ground that appears when spraying foam from the hose. This can be easily disabled in the config and additionally, you can set the maximum distance that this can appear away from the player when using the foam mode.

To begin, navigate to the main = { section of the config.lua file and then to the foamCommand = { section.

foamCommand = {
        enabled = true, -- This enables or disables the foam command
        commandName = "foam", -- This enables/disables the foam command
        enableFoamEffectOnGround = true, -- This enables or disables the foam effect on the ground
        foamEffectMaxDistance = 10.0, -- This is the maximum distance that the foam effect on the ground can spawn from the hose
},

The enableFoamEffectOnGround setting allows you to configure whether the foam effect is enabled. Either set enabled to true or false depending on your preference. The foam effect is enabled by default.

The foamEffectMaxDistance setting allows you to set how far away foam can appear on the ground away from the player spraying foam in foam mode. By default we've set this to 10.0, however you can adjust this if you feel the distance is too far or too short for your community.

Last updated