you can try :Destroy()
ihjtigobirclpf
you can try :Destroy()
ihjtigobirclpf
I tried using this but it just stops my codeā¦
I added some debugging and it stops printing after i require the Warp module from a local script.
How to fix?
@Eternity_Devs Is there server-sided rate limiting available? Iām able to easily circumvent the rate limit from the client which means that exploiters can too; or are we expected to use our own implementation?
1.0.12 has middleware feature, u can try that.
Yes, i would like to get the answer to the first question too.
I want to make remotes for each tool respectfully
Nevermind, After reading Warp source code, I understand how it works now.
@scel5525pro2 To your question about unique Remotes.
Iām using this for a gun system, Iām wondering on the gun client, do i need to do Network.client(āRemoteāā¦ Player.Name)?
Yes, you need to create an Index (aka Remote) with unique Identifier (aka Name) that is aviable on both Server and Client. Stuff like Warp.Server(GUN_NAME .. "_" .. Player.UserId)
should work.
Also you must use :Destroy()
on Indexes (aka Remotes) to Disconnect all Connections
However I have noticed that Indexes are not being Garbage Collected and stay in memory even after calling :Destroy()
Ive done remote.create yayadada(āGunāā¦Tool.Nameā¦Client.Name)
I donāt know if it is a problem with me but sometimes some Signals are not registered on the client. I have tried different versions yet nothing seems to fix this issue.
Getting this issue too, itās very annoying
seems like you dont require it on server side first.
Hi, @Eternity_Devs, I have encountered a bug in your module.
This bug never happened before, I tried switching to version 1.0.9 and version 1.0.12 but the error was still persistent.
I run this code in my script (local script) and I print the table t
and the result is this:
But when I fire the table and other values to the server and I print the result I get this strange print:
Any help is appreciated thanks!
is this always happens or just sometime? and have you also tried v1.0.11
?
Whatās inside table._items
? Is it a mixed table?
If yes, then thatās the issue
Always happens and no I did not try the v1.0.11, Iām going to try it right now!
Nope does not work either on v.1.0.11.
how is the .items table looks like?
This are the array items:
["_items"] = {
[1] = Template --template is an instance (it's made for testing)
}
oh, you cant send instances to mixed table through remote eventās
Ok thanks, now I will think about how to serialize the instance.
yeah you can serialize the instance into tables as the data of property/attributes.