I've been meesing around with another script, whereas an actor learns new skills when a certain status is applied [self.states.include?(n)].
Easy. But is it possible to say the opposite as well? self.states.not_include(n)? Would be cool if there was something like this. Doesn't have to be exactly that just anything similar will do.
nevermind... I did it myself :-P
:resolved:
"!self.states.include?(n)" or "not self.states.include?(n)". xD
Oh? Well... I wrote a small method to have the same effect xD
def not_include
See? I am silly! :-P