Random Chitchat 2012-2016
I'm using the 2008 one, as it has been described in this article:
http://www.codeproject.com/Articles/1446...udio-for-F

Specifically, the download for the standalone profiler is here:
http://www.microsoft.com/downloads/en/de...dcb74c9c0b
Thanks given by:
I love the super secret settingBig Grin Especialy the Color_convole:
[Image: 6hIhp.jpg]
Thanks given by:
What's the difference? (I'm colorblind)
It looks slightly more saturated?
Thanks given by:
I don't see much difference either. What's different?
Thanks given by:
The colors are brighter.
Thanks given by:
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 placeTongue
Thanks given by:
I believe NVidia cards have a setting to change color vibrance, should do the same thingTongue
Thanks given by:
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]
Thanks given by:
Try ProtoProxying vanilla, what that sends. I don't remember if ProtoProxy fully parses the item, though, so you may need to enhance it Smile
Thanks given by:
Do you have a tutorial for ProtoProxy?
Thanks given by:




Users browsing this thread: 19 Guest(s)