Hi all, Sorry for all of the posts.. This will be the last message for a while..
Since I talked about scripting and stuff in the recent posts, if you are new to scripting but looking to add it or would like to add it, then check out game monkey.. It's prolly the easiest system to figure out and use. Moreso than Lua.. It's a version that closly resembles c. The concept came from LUA but has been made to be much more game programming friendly.. The website link, http://www.somedude.net/gamemonkey/ Here is an example of use. Off thier site.. I have a few examples as well if anyone finds this interesting.. I use GM for other projects too. --- Example -- Script code that calls functions bound in C. --- OnDoorTriggerEnter = function(door, objEntering) { if(objEntering == player && !door.IsOpen()) { door.Open(); return true; } return false; }; There are a few other examples as well.. Chris

