Code: Select all
case "topic"(remove):
say("@this should set a flag@");
gflags[FLAG] = true;
I have also used the following format:
Code: Select all
case "topic"(remove):
if (!gflags[FLAG])
{
say("@Flag is now set.@");
}
else say("@What I say after flag is set.@");
for some reason, some flags will fire and some wont. As far as I know, there are no overlapping flags.