I agree with this sentiment, why not just update one of the other ones to be more optimized instead of making a new one to deprecate an older one? It makes it harder for developers to quickly switch over to a better system since they’d have to fully change it in their workflow.
update fixed the issues in my bot game , but still my render cant retrieve colours.
besides from the chat bit i think it got confused since there’s a server connected to it, client connected and another client. its created in one client script then accessed by the others server and client how do i control the flow of the event? shall i use the rateLimit?
just noting for using unreliable (not reliable type) event that can just be dropped it self once it fails, unreliable unlike reliable where its not ordered but there chance it get dropped off and that things on unreliable dont happens to reliable event. like unreliable event good for something like pvp thing or pinging server, and dont use unreliable at all here. for more information about Unreliable Event here.
yeah i know, but i set it to not send unreliable for both chat and gameid events, since it works with unordered orders and it could mess up the timer. ill look into it more since it is a issue with one of my scripts and i might aswell split my client code to a server script since it handles better for all players in the server.
this what it rate limit looks like with Packet profiler plugin. it using default rate limit configuration. you can disable the rate limit by setting interval to 0 or below 1 like this:
local remote1 = Warp.Server("Test", {
maxEntrance = 200, -- this is the default value
interval = 0
})
well i learned stuff from it and its the same how i initialized it, tried sending messages in that playground it works, but why not tables with 3 elements?, i cant rewrite my render to work with strings since it works well with strings, like i said, does it support tables or no?, if not add support then. and on to the bot game,
client to server doesn’t look like it work, but server to client can, here’s my function in the client script that I created the event from:
local function sendMessage()
local success, response = pcall(function()
local chatInstance = TextBox.Text
ChatEvent:Fire(false,player,chatInstance)
end)
when i run the script it doesnt error and nothing just happens.
well i rather know more of errors in my code and have safer code then me getting confused whats happening. and some people trying to mess up with the bot