Yes, this is the correct way of creating bridges.
How to use it so like yk i can create 2 bridges for server to server communication.
BridgeNet2.ServerBridge(āName Hereā) doesnt work. Idk if it was meant to work that way
Is it possible to set up BridgeNet to be run in parallel?
whatās your use case for this? Iām not completely opposed to it, but that is fairly complex I think.
No specific use case other than to utilize multi-threading for performance. And because it uses a roblox signal (remote event), I thought it could be possible to setup.
But I imagine it would be really complex, thatās why I was curious if BridgeNet could even support that, or if it would be to different from the core code.
I guess it isnāt worth the hassle.
Is it intentional for connections to bridges on the client to preserve even after the script for them has been deleted? Thatās not the same behavior as receiving remoteevent calls, where it would normally disconnect once the script is gone.
Thereās no realistic way I can replicate this behavior.
I can just defer all the bridge calls until its synchronized again.
Canāt exactly give actual support for it though
Jeez so we got Bridgenet, Fastnet, Red All of these resources are amazing specially for replication systems where packets need to be sent every step.
I love all of these resources I hope bridgenet and the other resources become more used by devs
Does the :InvokeServerAsync()
and OnServerInvoke
functionality work, if so could someone provide an example of it in action. I canāt seem to get it to function.
I typed a 1 instead of an i nvm
CombatMishimaBridge:Connect(function(player, count)
local truecount = count[1]
The following bit worked with BridgeNet1 and let me sort through a nice array, but BridgeNet 2 is erroring out with āattempt to index number with numberā.
Can you explain the proper syntax and way to do this for BridgeNet2?
Is this whatās happening? Every time I reset, I think Iām getting phantom print()'s from the same bridge.
Show what youāre sending through as count.
Local script to send a ācountā of where weāre at in a combo attack.
UIS.InputBegan:Connect(function(input,isTyping)
if isTyping then return
elseif input.UserInputType == Enum.UserInputType.MouseButton1 then
if Debounce == false then
Debounce = true
CurrentTime = tick()
local PassedTime = CurrentTime - PreviousTime
if not Humanoid.Parent:GetAttribute("Stunned", true) then
if PassedTime < 1.2 then
-- Can continue the combo
count = count + 1
if count > 10 then
count = 1
end
else -- Restarts the combo
count = 1
end
else count = 1
end
CombatMishimaBridge:FireServer(count)
end
end
end)
Server script to receive it, below, count[1] worked with BridgeNet1.
CombatMishimaBridge:Connect(function(player, count)
local truecount = count[1]
print(truecount)
Error: Attempt to index number with number (server)
Additionally, I can resolve it by reformatting ācount[1]ā to simply ācountā, but Iām then getting phantom prints with the above script. Iāll get very accurate counts until I reset, and then Iāll still keep getting accurate counts, but Iāll also get the old prints before the reset, which will constantly spam the last number the combo count was left at. Again, not an issue with BridgeNet1, only became an issue when I switched over. I suspect a syntax error. Any clues?
Hey nevermind, solved my own issue. Lots of reading through the documentation.
version 1.0.0: 10/20/2023
Added
- Added an easy way to type payloads using generics. This will be elaborated on in documentation later
Fixes
- Fixed sending singular nil values with nothing else in the frame
- Fixed a bug w/ the loading queue. Finally got around to that (loadingPlayersQueue not merged properly Ā· Issue #35 Ā· ffrostflame/BridgeNet2 Ā· GitHub)
- Type improvements
Improvements
- Added unique IDs to the invoke functionality. Should fix a multitude of bugs.
- Re-did rate limiting. Iām confident that itās stable.
BridgeNet2 is now officially production-ready. Please let me know if thereās anything I need to hotfix, Iāll be watching closely for the next week or so.
Hey just to mention an edit I have been making.
For every update I have just been making an edit to define a location for the Remote Events to be parented to, rather than BridgeNet creating a Folder and parenting the Remote Events to that.
I just think it would be cool if there was a way to define a Network Folder beforehand without having to make any code edits.
Will there be BridgeNet2 for roblox-ts?