Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Comet camera + weird characters

Custom Title Activated
Loyal Member
Joined
Jun 5, 2010
Messages
1,582
Reaction score
160
So, i want to use Comet for a while. This are my buggs:
1. Camera, it wont work. Tried to use the released script in here, but it wont work for me.
2. If i type a weird character in the client (like é) i get é in return.

Somebody who can help with these 2?

Regards,
Twan
 
Junior Spellweaver
Joined
Aug 13, 2012
Messages
162
Reaction score
38
1. We can't help you without any information. -> Dev Tools and and and.
2. This is an encoding error. Use UTF8 as encoding.

Code:
byte[] bytes = Encoding.Default.GetBytes(string);
string = Encoding.UTF8.GetString(bytes);
 
Upvote 0
Back
Top