-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cant get color in chat to work #31
Comments
I doubt that color will work. |
Righto um. Minecraft tends to freak out when a client (not server aparently) enters the "§" ... In a vanilla server, you'd normally get kicked for doing that :p No idea why it puts in "Â" though... Try "§kSome text". |
I wouldn't put non-ASCII characters into Python code. Try instead "\xA7kSome test" |
Or like... char(21) inserted into a string. |
Why 21? |
Hmmm dunno same here... but §k does what it should... (scramble letters) |
Also. § is ASCII 21. On Windows machine, ALT + NUMPAD 21 = § |
Oh, if it's ascii 21, you should try "\x15Hello World". |
How 'bout { chr(21) + "aHayo?" } |
im trying to do a simple postToChat('§eHello world')
but a weird things occurs
i dont know if theres any function that does the same thing as /tellraw but help would be appreciated.
The text was updated successfully, but these errors were encountered: