Blaawee Posted January 25, 2013 Share Posted January 25, 2013 hey , i'm just wondering how many characters or strings i can insert it in any table Link to comment
Castillo Posted January 25, 2013 Share Posted January 25, 2013 On a lua table? if so, I'm not sure if there's a limit. Link to comment
Blaawee Posted January 25, 2013 Author Share 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 ! Link to comment
DiSaMe Posted January 25, 2013 Share Posted January 25, 2013 There is no limit. You can put as many values as your computer can store. Link to comment
Blaawee Posted January 25, 2013 Author Share Posted January 25, 2013 There is no limit. You can put as many values as your computer can store. sure ? http://prntscr.com/qc132 Link to comment
DiSaMe Posted January 25, 2013 Share 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 Link to comment
Blaawee Posted January 25, 2013 Author Share Posted January 25, 2013 hows that ! well , i'm using string.dump Link to comment
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