†,®,©,™. problem.

04/16/2013 14:07 abdoumatrix#1
hey guys

i have char. like ™,†,©,®,etc... it appears like this ?
especially in guild Name, Clan Name

what could be the problem from?

Ty for ur time.
04/17/2013 10:55 Spirited#2
Your problem is most likely with your source's encoding. You're probably using ASCII as your encoding for the guild names and such. You should change that to CP1252.
04/17/2013 13:06 abdoumatrix#3
Ty fang For hint.

my problem was in NpcRequest.cs
in
PHP Code:
public string Input
        
{
            
get
            
{
               
// return Encoding.ASCII.GetString(this.Buffer, 14, this.Buffer[13]);
                
return Encoding.UTF7.GetString(this.Buffer14this.Buffer[13]);
            }
        } 
it was ASCII so i make it UTF7 again as it was before.


Ty all.

#Solved
#Closed
04/17/2013 23:53 JohnHeatz#4
#Closed as requested