Using hybrid's rev 3:
Code:
case "@job":
{
byte NewJob = byte.Parse(args[1]);
Client.Job = NewJob;
Client.Send(PacketBuilder.CharacterInfo(Client));
break;
}
that's my command to change jobs.
It works fine, except I thought there might be a better way to update the character's job than;
Code:
Client.Send(PacketBuilder.CharacterInfo(Client));
Peace.






