
Originally Posted by
Tha
Tip: if you want to help people and let them use your emulator as a base / to learn, include database :)
Good luck with your remaining school things and hope you'll get well soon.
I am better, don't worry.
Updates
- Welcome user added with last login working! :)

- Recoded my packet handling so it's easier for me to develop. For example if you have a fields like (for changing clothes as an example)
Code:
public String Sex;
public String Figure;
The request class will read in order depending on what type the field is. Integer, boolean or string.
Snip-snip:
Code:
for (Field field : message.getClass().getFields())
{
if (field.getType() == Boolean.class)
field.setBoolean(message, Request.readBoolean());
if (field.getType() == String.class)
field.set(message, Request.readString());
if (field.getType() == Integer.class)
field.setInt(message, Request.readInt());
}