ID:179100
 
Is there any way to make one set of verbs available for a whole bunch of verbs, without having to paste the verbs under each obj individually??
I have cards and I need to be able to play each card or discard each card, and right now I do it with identicle verbs under each card object. Changing these gets very time consuming and tedious.
There are also other object that I do NOT want to have the same verbs, is there any way of doing what I am looking for??

Illya
Just do it by category like this:

obj
cards
verb
Play_Card()
//do stuff here
King
Queen
Joker
Card_Table

This will give Play_Card to the King, Queen, and Joker but not to Card_Table.

Then, if you want to have a special Play_Card for Joker for example you could change it to this:

obj
cards
verb
Play_Card()
//do stuff here
King
Queen
Joker
Play_Card()
//do different stuff here
Card_Table

That second Play_Card will override the first Play_Card for the Joker only.