Free Resourcesfilo_bolt
Configuration
Config options available in config.lua.
config.lua
All static options live in config.lua at the root of the resource. Changes take effect on the next resource restart.
Config = {}
-- RGBA colour applied to the draw-outline on a hovered bolt.
-- Values: 0–255 per channel.
Config.OutlineColor = { r = 255, g = 255, b = 255, a = 255 }
-- When true, the player must wait for the current bolt to finish
-- rotating before they can click another one.
Config.OneAtATime = falseOptions
Prop
Type
Notes
OutlineColoruses the same RGBA range (0–255) asSetEntityDrawOutlineColor.OneAtATimeonly blocks the start of a new rotation — it does not cancel an animation already in progress.