Type Function Return value none Revision Release 2025.3714 Keywords ads, advertising, monetization, fuse, load See also fuse.init() fuse.checkLoaded() fuse.show() fuse.*
Loads and caches a Fuse ad for the specified ad zone. This function will call the listener function specified by fuse.init() with an event.phase value of "loaded"
, however this does not necessarily mean that an ad of the specified zone was loaded. To determine this condition, check event.isError during the "loaded"
event phase — a value of true
indicates that an ad could not be loaded from the requested zone, while a value of false
indicates that the requested zone’s ad was successfully loaded.
Note that Fuse is already set up to pre-cache a few ads when you call fuse.init(), so normally there’s no need to call fuse.load()
prior to calling fuse.show(). Generally, this function should be used to
fuse.load( [params] )
Table. A table which specifies properties for the ad request. Within this table, you should specify the zone
key with a string value representing the ad zone for which to load an ad.
local fuse = require( "plugin.fuse" ) -- Event listener function local function adListener( event ) if ( event.isError ) then print( "Fuse error: " .. event.response ) else if ( event.phase == "init" ) then -- Fuse system initialized elseif ( event.phase == "loaded" ) then if ( event.isError == false ) then -- Ad successfully loaded for requested zone end elseif ( event.phase == "shown" ) then -- An ad finished showing end end end -- Initialize the Fuse service fuse.init( adListener ) -- Sometime later, load an ad for a specific zone fuse.load( { zone="Menu" } )