So i have been playing with gamemonkey a little. Think i am getting the hang of it. for people that don't know what it is. it is a scripting language that has a syntax like c
Here is an example of a script file
// Just a bunch of tests that don't mean anything at present.
global setup = function()
{
.SetScreenSize(800,600,0); // Sets the Screen size width , heigh, fullscreen.
};
global Hello = function()
{
if(.IsValid())
{
.Text(0,0,"App Is Running");
.Text(0,50,"Will Add more function to the code as i learn it more");
}
};
I have also include a compiled sample of it.
all it does is what in the script there. sets the screen size and display some text.
if anyone want the code for this please message me. right now it is a big mess so i ave to clean it up.