Blaawee Posted January 25, 2013 Posted January 25, 2013 hey , i'm just wondering how many characters or strings i can insert it in any table
Castillo Posted January 25, 2013 Posted January 25, 2013 On a lua table? if so, I'm not sure if there's a limit.
Blaawee Posted January 25, 2013 Author Posted January 25, 2013 i just found it limit is 65535 characters , btw if it's more than the limit how i can handle it !
DiSaMe Posted January 25, 2013 Posted January 25, 2013 There is no limit. You can put as many values as your computer can store.
Blaawee Posted January 25, 2013 Author Posted January 25, 2013 There is no limit. You can put as many values as your computer can store. sure ? http://prntscr.com/qc132
DiSaMe Posted January 25, 2013 Posted January 25, 2013 (edited) Exactly. If limit for the strings sent to client is 65535 characters and the string couldn't be sent, that means it is longer than 65535 characters. And if you want to send that string without changing minimum client version, you have to workaround this. You could try splitting the string into multiple shorter strings using string.sub function and sending them as separate arguments. If that doesn't help, you could send multiple strings by triggering the event multiple times and joining the strings client-side. Edited January 25, 2013 by Guest
Blaawee Posted January 25, 2013 Author Posted January 25, 2013 hows that ! well , i'm using string.dump
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now