I have a test.gm file that contains the following script
Code: Select all
print(\"yo\");
Code: Select all
std::string s;
std::ifstream file;
file.open("test.gm");
while(!file.eof())
{ getline(file, s); }
file.close();
gm->ExecuteString(s.c_str());
However if I don't read the script from file and include it in the source code, it works like charm
Code: Select all
std::string str = "print(\"yo\");";
gm->ExecuteString(s.c_str());
I have asked the same question on GameMonkey forum and waited for days but the forum seems dead.