Eric F.
unread,Aug 3, 2011, 5:01:11 AM8/3/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jacl-discuss
Sorry to ask so many questions... I've read the manual, but can't find
any answer.
in a function, it seems it's possible to test for "OR", like this:
if compass == south : compass == in
but I'd also like to test for "AND", for example if it was &&:
{movement
if compass == south && Margareth hasnt TALKED_TO
write "Margareth say : « Hey don't leave now! »^"
return
else
return false
endif
}
but it's not working like that.
I had to write this, which is much more complicated:
{movement
if compass == south
if Margareth hasnt TALKED_TO
write "Margareth say : « Hey don't leave now! »^"
return
else
return false
endif
else
return false
endall
}