If your plan is to have only the verb
visible and thus useable after you've used another verb, you have to follow HKs example above. If, however, you don't mind showing the verb all the time, you can do as follows:
Set a flag when you use the first verb:
SetObjectFlagOn (object, "flag name")
Then on your second verb you can do an if check before the rest of the code that looks like this:
if (GetBoolean(object, "flag name")) {
run code here
}
else {
msg ("that does not work")
}
This will always have your verb shown on that object when you click on it, but it'll print out the "that does not work" if you haven't used the other verb first. That might not be what you're after, in which case you wanna follow HKs example