Rise Of Nations MASS TRADE EVERYONE -CLEAR CURRENT NOTIFICATIONS – AUTO CLEAR NOTIFICATIONS

Created by R4G3N#2996

Features:

  • MASS TRADE EVERYONE
  • CLEAR CURRENT NOTIFICATIONS
  • AUTO CLEAR NOTIFICATIONS

[MASS TRADE EVERYONE]

local inf = {
   [1] = 'Oil', -- Resource Name
   [2] = 'Sell', -- Buy or Sell
   [3] = 5, -- Amount
   [4] = 1, -- Price Modifier
   [5] = 'Bulk' -- Trade or Bulk
}
local ctr = {} -- leave the rest alone unless you code
local bp = workspace.Baseplate.Cities
local gc = game.GetChildren(bp)
local ct = 0

for i,v in ipairs(gc) do
   ct = ct + 1
   table.insert(ctr, ct, v.Name)
end

for i,v in ipairs(ctr) do
   local tr = "ResourceTrade"
   local st = workspace.GameManager.ManageAlliance
   st.FireServer(st, v, tr, inf)
   wait(1) -- delay between firing, you can edit this if wanted
end

[CLEAR CURRENT NOTIFICATIONS]

local alert = game.Players.LocalPlayer.PlayerGui.GameGui.MainFrame
for i,v in ipairs(game.GetChildren(alert)) do
   if string.match(v.Name, "AlertSample") then
       v.Destroy(v)
   end
end

[AUTO CLEAR FUTURE NOTIFICATIONS]

local alert = game.Players.LocalPlayer.PlayerGui.GameGui.MainFrame
alert.ChildAdded.Connect(alert.ChildAdded, function(child)
   if string.match(child.Name, "AlertSample") then
       wait()
       child.Destroy(child)
   end
end)

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!