I love the super secret setting

Especialy the Color_convole:
![[Image: 6hIhp.jpg]](http://puu.sh/6hIhp.jpg)
What's the difference? (I'm colorblind)
It looks slightly more saturated?
I don't see much difference either. What's different?
Yup, that sums up the modern times pretty nicely - we use a super duper technology that requires heaps of processing power just to enhance the colors, which could have been done by simply adjusting the colors in the first place

I believe NVidia cards have a setting to change color vibrance, should do the same thing

I have no idea what I"m doing wrong. I"m trying to get custom item names in MCServer but the client keeps disconnecting when I spawn an item with a custom name. This is the code I use:
if (a_Item.m_CustomName != "")
{
// Send the custom item name.
cFastNBTWriter CustomName;
CustomName.BeginCompound("display");
CustomName.AddString("Name", a_Item.m_CustomName);
CustomName.EndCompound();
CustomName.Finish();
AString CustomNameData;
CompressStringGZIP(CustomName.GetResult().data(), CustomName.GetResult().size(), CustomNameData);
WriteShort(CustomNameData.size());
WriteBuf(CustomNameData.data(), CustomNameData.size());
}
I used this as for information on how to do the nbt structure:
![[Image: 6jGuJ.png]](http://puu.sh/6jGuJ.png)
Try ProtoProxying vanilla, what that sends. I don't remember if ProtoProxy fully parses the item, though, so you may need to enhance it

Do you have a tutorial for ProtoProxy?