Compatibility with ToxicFire
This guide explains how to make the Advanced Aerial Firefighting script compatible with the Toxic Fire system.
1. Manual Integration
Step-by-step instructions:
Go to the following file in the Toxic Fire resource:
server/server.lua
Scroll to the bottom of the file and add the following code:
exports('GetAllFires', function()
return AllFires
end)
This export makes the AllFires
data accessible to other scripts, including Advanced Aerial Firefighting.
2. Final Steps
Ensure that the
firescript
resource is started beforer_aerialfire
in yourserver.cfg
:
ensure firescript
ensure r_aerialfire
Restart your server to apply the changes.
Last updated