int cool_thing;
// script for hotspot4: Look at hotspot
if (cool_thing == 0) {
Display("The TV is off.");
}
if (cool_thing == 1) {
Display("You can see your reflection.");
}
if (cool_thing == 2) {
Display("Your reflection is sexy!");
}
if (cool_thing == 3) {
Display("You can't see anything else.");
}
if (cool_thing < 3) {
cool_thing +=1;
}
I did that. It's still not working. Do I need to separate the "int cool_thing;" line from the rest with } or something?
// script for hotspot4: Look at hotspot
if (cool_thing == 0) {
Display("The TV is off.");
}
if (cool_thing == 1) {
Display("You can see your reflection.");
}
if (cool_thing == 2) {
Display("Your reflection is sexy!");
}
if (cool_thing == 3) {
Display("You can't see anything else.");
}
if (cool_thing < 3) {
cool_thing +=1;
}
I did that. It's still not working. Do I need to separate the "int cool_thing;" line from the rest with } or something?