NetRayContinuousFireConnection = RunService.Heartbeat:Connect(function()
if IsNetRayContinuousFireActive then
for i = 1 , 200 do
NetRay:FireServer('NetRayContinuousFire', {
id = 'NetRay_CF_' .. os.time() .. '_' .. math.random(1, 1000),
payload = PAYLOAD
})
end
end
end)
RemoteEventContinuousFireConnection = RunService.Heartbeat:Connect(function()
if IsRemoteEventContinuousFireActive then
for i = 1 , 200 do
RemoteEvent:FireServer({
id = 'RE_CF_' .. os.time() .. '_' .. math.random(1, 1000),
type = 'Continuous Fire Event',
payload = PAYLOAD
})
end
end
end)
I tested them separately in the same game and place during same testing session
After testing with buffers, the benefits are not worth using them
I attempted to use buffers myself and another module (suphies packet module), and they both had the same issue. HUGE CPU usage and HUGE FPS and Ping increases wich doesn’t justify the reduction in memory used when sending over events.
Some screenshots from testing
This was with suphis new packet module, The ping also reduced my frames to about 9fps
I am improving the binary encoder to encode everything before being sent over the event, which hopefully will reduce memory usage even more.
I am still going to keep at buffers until I can get them to be beneficial for me
I already tested packet and send a screen above, also sending the number 100 has no compressional advantage since you can’t compress that short of a number down losslessly.
When I tried bytenet sending a 10kb payload 200 times a frame is just kept failing by erroring.
I’ll be able to show you once I’m awake since it’s 2am for me right now
When I try to edit the settings of an event it limits the properties I can send.
In this Case the “Attack” variable won’t print what I want in this segment of my script
--NetRay
NetRay:RegisterEvent("PlyrAttackEvent", {
rateLimit = math.huge,
throttleWait = 0.1,
priority = 1,
typeDefinitions = {},
batchable = true
})
NetRay:RegisterRequestHandler("PlyrAttackEvent", function(Player, player, Attack)
for ID in Debounces:GetAttributes() do if tonumber(ID) == Player.UserId then return end end -- Check for Debounce
Debounces:SetAttribute(tostring(Player.UserId), " ") -- Add to Debounce
local Character = Player.Character
local Humanoid = Character.Humanoid
--A blackboard is player info Sent to the server in a table.
local Player = {
["Player"] = Player,
Blackboard = {}
}
for X,Y in pairs(Humanoid:GetAttributes()) do --Getting attributes from "Playerinit" in the player folder - ServerScriptService.
Player.Blackboard[X] = Y
end
print(Attack)
--Humanoid:SetAttribute("LastInput", Attack)
BasicAttackTree:run(Player)
end)
But in this code it does.
--NetRay
NetRay:RegisterEvent("PlyrAttackEvent")
NetRay:RegisterRequestHandler("PlyrAttackEvent", function(Player, player, Attack)
for ID in Debounces:GetAttributes() do if tonumber(ID) == Player.UserId then return end end -- Check for Debounce
Debounces:SetAttribute(tostring(Player.UserId), " ") -- Add to Debounce
local Character = Player.Character
local Humanoid = Character.Humanoid
--A blackboard is player info Sent to the server in a table.
local Player = {
["Player"] = Player,
Blackboard = {}
}
for X,Y in pairs(Humanoid:GetAttributes()) do --Getting attributes from "Playerinit" in the player folder - ServerScriptService.
Player.Blackboard[X] = Y
end
print(Attack)
--Humanoid:SetAttribute("LastInput", Attack)
BasicAttackTree:run(Player)
end)
Here is the full length code for both the server and client scripts. And if you were wondering, everything works completely fine without setting parameters to the “:RegisterEvent” function and my value gets passed correctly.
This is my Client Code:
--Services
local ReplicatedStorage = game:GetService('ReplicatedStorage')
local InputService = game:GetService('UserInputService')
local ServerStorage = game:GetService('ServerStorage')
local Players = game:GetService('Players')
--Modules
local NetRay = require(ReplicatedStorage.Modules.NetRay)
--Player
local Player = Players.LocalPlayer
local Character = Player.Character
--Variables
local Debounce = false
local Inputs = {
MouseButton1 = "BasicAttack",
R = "SpecialAttack",
F = "Block",
E = "Grab"
}
InputService.InputBegan:Connect(function(UserInput)
if Debounce == true then return end
for Key, Attack in pairs(Inputs) do
if Key == "MouseButton1" then
if UserInput.UserInputType == Enum.UserInputType[Key] then
NetRay:FireServer("PlyrAttackEvent", Player, Attack, "blank")
end
else
if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode[Key] then
NetRay:FireServer("PlyrAttackEvent", Player, Attack)
end
end
end
Debounce = true
task.wait(0.1)
Debounce = false
end)
This is my Server Code:
The “‘Blank’” string I passed in was when I was just messing around after I saw that my Attack value got set to ‘nil’ when I put in parameters for the Event. The “‘Blank’” string also came back nil when sent to the server.
--Services
local ServerScriptService = game:GetService('ServerScriptService')
local ReplicatedStorage = game:GetService('ReplicatedStorage')
local ServerStorage = game:GetService('ServerStorage')
local Players = game:GetService('Players')
--Modules
local BTreeCreator = require(ServerScriptService.Modules.BTreeCreator)
local NetRay = require(ReplicatedStorage.Modules.NetRay)
--Trees
local Trees = ServerStorage.BehaviorTrees
local BasicAttackTree = BTreeCreator:_createTree(Trees.BasicAttack)
--Debounces
local Debounces = ServerStorage.Combat.Debounces
--NetRay
NetRay:RegisterEvent("PlyrAttackEvent")
NetRay:RegisterRequestHandler("PlyrAttackEvent", function(Player, player, Attack)
for ID in Debounces:GetAttributes() do if tonumber(ID) == Player.UserId then return end end -- Check for Debounce
Debounces:SetAttribute(tostring(Player.UserId), " ") -- Add to Debounce
local Character = Player.Character
local Humanoid = Character.Humanoid
--A blackboard is player info Sent to the server in a table.
local Player = {
["Player"] = Player,
Blackboard = {}
}
for X,Y in pairs(Humanoid:GetAttributes()) do --Getting attributes from "Playerinit" in the player folder - ServerScriptService.
Player.Blackboard[X] = Y
end
Humanoid:SetAttribute("LastInput", Attack)
BasicAttackTree:run(Player)
end)