I have built a question is my game but I have got a problem. I want it when you get it right a object appears in the same room. Can anybody explain to me how would i do this please?.
You just have to turn the objects Visible property on or off.
*** Room Script ***
String Answer;
String Correct;
function SomeFunction() {
if (Answer==Correct) {
oMyObject.Visible = true;
}
}
What do you mean by string. and do you put it in the Room or the GUI script please?
Doesn't matter now. Done it myself