Ich halte mich an das Ags Handbuch, nur wenn ich wie darin beschrieben [ags]// script for hotspot1: LOOK AT HOTSPOT
if (my_counter == 0) {
Display("You see a bookshelf.");
}
if (my_counter == 1) {
Display("Looking closer, you see a book called Hamlet.");
}
if (my_counter == 2) {
Display("There is also a book called Harry Potter.");
}
if (my_counter == 3) {
Display("There is nothing else of interest on the shelf.");
}
if (my_counter < 3) {
my_counter += 1;
}[/ags] schreibe, bekomme ich an meiner Variabelen kein + drauf, also es bringt nichts.
Ich habe es dann so probiert:
[ags]int my_counter
if (my_counter == 0){
player.Say (" Ein Blatt");
}
my_counter += 1;
if (my_counter == 1) {
player.Say ("Ein tolles Platt! ");
}
usw. usw.[/ags]
Aber dann geht der das durch, d.h. er macht keine Pause. Der sagt sofotz "Ein Blatt" und "Ein tolles Platt!" hintereinander, ich muss garnicht nochmal gucken.
Kann mir wer helfen?