Added Support for SmartFires. Uses exports to start a fire at the location of the explosion. If you choose to use this option set the Config option to true
Config.SmartFires =true-- to start fires at explosions
Speed
Config.Speed ='MPH' -- 'MPH' or 'KPH'
Items
If you choose to change the items used this can be done in the config!
Config.TriggerKey =47-- for remote bombsConfig.TriggerKeyLabel ='G' -- label for textUI
Notifications
functionCNotify(type,message) -- can change to any if you wantiftype==1then-- 3 types, (1,2,3) lib.notify({ title ='Car Bomb', -- title for notifications description = message, -- Message comes from locals file type ='success' -- type goes with type })elseiftype==2then lib.notify({ title ='Car Bomb', description = message, type ='inform' })elseiftype==3then lib.notify({ title ='Car Bomb', description = message, type ='error' })endend