For the complete documentation index, see llms.txt. This page is also available as Markdown.

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:

  1. Go to the following file in the Toxic Fire resource:

server/server.lua
  1. 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

  1. Ensure that the firescript resource is started before r_aerialfire in your server.cfg:

ensure firescript
ensure r_aerialfire
  1. Restart your server to apply the changes.

Last updated