1.
Code: Alles auswählen
if (HasPlayerBeenInRoom(14)) {
Display("The player has been to room 14 before.");
}
2.
Code: Alles auswählen
// room script
int stuhlangeschaut=0;
....
# DO NOT EDIT...
function X() {
// player looks at object 0 (stuhl)
if (stuhlangeschaut==0) {
stuhlangeschaut=1;
GiveScore(5);
...
}
else {
...
}
}
# DO NOT EDIT...