is there any way to make a script like a default "/refresh" command with listing out what is the new resource which is loaded or failed?
like this:
addCommandHandler("refreshres",function(player)
if tonumber(getElementData(player, "admin")) >= 5 then
refreshResources(true)
outputChatBox("Loaded new resource(s):",player)
outputChatBox(newResources,player)
end
end)