I compile a DLL with mingw 4.5.0 and use it as a Game Maker 8.0 extension. Game Maker dynamically loads the dll. Everything appears to work (the dll functions are called and provide correct return val
Backstory: I\'m creating an Extension for Game Maker, a popular game development suite. An extension is a DLL that adds new functions to the built in scripting language, but is written in C or Pascal
Gamemaker is a neat tool which allows for some good RAD. However it has quite a few shortcomings. One of those is the lack of a good standard library.
I am writing a GML script and wanted to know how to make a message appear on the next line: ex. show_message(\"Hello\" + *something* + \"World\")
Here is my code: var num, totalNum, averageNum, numItems, msg; msg = \"\"; totalNum = 0; numItems = 0; while(true)