I just want to hear some ideas and tricks that some of you guys are using now days in your programming in the co community. It doesn't have to be something big or save a lot of performance or anything. Just something crafty how you handle things that is unique. For example, for my dropped floor items dictionary. Instead of using each items UID as the key. I actually use the X coord concatenated to the Y coord. So X = 429, Y = 378 becomes 429378. The number will always be less then a uint. The reason I do that is because instead of searching through all the dropped items using a loop to see if a spot on the ground is taken, I can just use the Dict.ContainsKey method.