What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

unicode aka UTF8

anibud

New Member
Joined
May 30, 2010
Messages
9
Reaction score
2
I'm developing a plugin and I have a problem with ChatMessageEventArgs.Message.Sender not being able to correctly return a utf8 encoded string.

Can one of the developers look into this and possibly fix it? Thank you!
 
I'm developing a plugin and I have a problem with ChatMessageEventArgs.Message.Sender not being able to correctly return a utf8 encoded string.

Can one of the developers look into this and possibly fix it? Thank you!

Just a quick hack until it's fixed;

Encoding.UTF8.GetString(Encoding.ASCII.GetBytes(e.Message.Sender))

It may, or may not work properly. Test it and find out.
 
Back
Top