Character box

02/16/2010 04:28 ipwnudont#1
ok in the cmd on the server when you go into the /characters to open the box i flip through the characters but i get alot of invalid str or invalid agi ect ect is there a way so that invalid BS doesnt show up? like maybe set the limit higher so it wont set it off
02/16/2010 05:31 Arcо#2
Are you using a released one?
If so you just need to change the definitions for byte to ushorts.
02/16/2010 05:40 ipwnudont#3
i dont think its released T.T unless you got one by TheProphet

and idk how to do that
02/16/2010 05:51 Arcо#4
Quote:
Originally Posted by ipwnudont View Post
i dont think its released T.T unless you got one by TheProphet

and idk how to do that
In the code you'll see he has them down as "byte". A byte can only go up to 255. They need to be turned into ushorts. A ushort can go up to 65355.
02/16/2010 21:10 CIRASH#5
Quote:
Originally Posted by .Arco View Post
In the code you'll see he has them down as "byte". A byte can only go up to 255. They need to be turned into ushorts. A ushort can go up to 65355.
Good clarification sir.