World.Broadcast(0x55, true, "Lottery Numbers Are : {0}, {1}, {2}, {3}, {4}", winnumber1, winnumber2, winnumber3, winnumber4, winnumber5);
World.Broadcast(0x35, true, "Checking Tickets For Winners...");


How to modify this notice for Chinese, I modified Chinese hints in the game after all????!? How should we solve this?
 
The second parameter that you are passing in world.broadcast is telling the server to broadcast using ascii characters. Since ascii does not contain chinese characters you are getting question marks instead. So, instead of

Code:
World.Broadcast(0x35, true, "Checking Tickets For Winners...");

You must use

Code:
World.Broadcast(0x35, false, "Checking Tickets For Winners...");
 
Back