NetRay 2.0 - Advanced Roblox Networking Library


Lol

Your screenshot pointed out to me that I made an error and left something out on v2.0.2 I appreciate it.

an update will come out soon

EDIT:

Buffered for netray vs packet module

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)
1 Like

Thatā€™s interesting, Iā€™ll get back to you soon once Iā€™m able to get on my computer as at the moment Iā€™m not available to check.

But this behaviour shouldnā€™t be the case

Double check any typos or spelling mistakes etc for now

Edit:

Could you prove the client script aswell

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)
1 Like

I tried out your code, and it seems to work for me

image

Also there is no need to send the player when using :FireServer() as the servers first varial is the player who fired the server anyways

Hmm itā€™s weird, It works now that I didnā€™t include the player instance in the :FireServer() function. I donā€™t know why it wasnā€™t working earlier.

1 Like

NetRay Rework

I am currently working on a full rework of the module and will post a whole new community resource once I am done.

will include the same features and more advanced features never seen in a networking module before

Once that is released, I will deprecate this module. It should still work, but I will focus on the rework.

3 Likes

Current benchmarks of the rework compared to a Roblox event and Packet module by suphi, which is comparable to Bytenet and other modules

1 Like