* NEW QUEST LANGUAGE COMMAND: 'PARTY' This command lets you define what an acceptable party member should look like, and causes players who do not match that condition to be kicked from the party. A world designer would use this command just before executing a GOTO LINK command where only qualified people were allowed to go.
As in:
PARTY "C5+T23"
GOTO LINK 2,3
This would kick anyone from the party who was not class 5 or did not possess token 23. The conditions are the same as for the IF command, but are evaluated AT THE CLIENT. (cool, huh?) I mean each individual player is checked for their OWN copy of token 23, rather than just riding along on the scene host's token 23 (as the IF command does).
To stay in the party, the condition must evaluate to TRUE for you. Note that if you don't use some command like GOTO LINK after this, you're sort of wasting it. It won't boot people from the scene who are not in the party after this, so unless the party moves on to a new location, you won't notice right away that anything happened.