EXPORTS

This are exports from public/client.lua You can insert a value in the hud calling this export

-- You can call this export to insert a text inside "BUFF" in the hud in my server i use the shield buff for example. here you can insert 6 type of buffs
exports("Buff1",function(text,duration)
   Buff1(text,duration)
end)
exports("Buff2",function(text,duration)
    Buff2(text,duration)
end)
exports("Buff3",function(text,duration)
    Buff3(text,duration)
end)
exports("Buff4",function(text,duration)
    Buff4(text,duration)
end)
exports("Buff5",function(text,duration)
    Buff5(text,duration)
end)
exports("Buff6",function(text,duration)
    Buff6(text,duration)
end)

example

Extract Data

you can use this export to extract data from this script

EXAMPLE:

Start Medicine Effect

You can start an effect when you want using this export

Hide Hud

Move Hud

Force Load

if you restart the script, the player have to relog or force load the script. The best thing is NOT Restart this script.

Last updated