Package ch.njol.skript.lang
Class Effect
java.lang.Object
ch.njol.skript.lang.TriggerItem
ch.njol.skript.lang.Statement
ch.njol.skript.lang.Effect
- All Implemented Interfaces:
Debuggable,SyntaxElement
- Direct Known Subclasses:
AsyncEffect,EffectSectionEffect
An effect which is unconditionally executed when reached, and execution will usually continue with the next item of the trigger after this effect is executed (the stop effect
for example stops the trigger, i.e. nothing else will be executed after it)
- See Also:
-
Field Summary
Fields inherited from class ch.njol.skript.lang.TriggerItem
parent -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class ch.njol.skript.lang.TriggerItem
debug, getIndentation, getNext, getParent, getTrigger, setNext, setParent, toString, walk, walkMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface ch.njol.skript.lang.Debuggable
toStringMethods inherited from interface ch.njol.skript.lang.SyntaxElement
getParser, init
-
Constructor Details
-
Effect
protected Effect()
-
-
Method Details
-
execute
Executes this effect.- Parameters:
event- The event with which this effect will be executed
-
run
Description copied from class:TriggerItemExecutes this item.- Specified by:
runin classTriggerItem- Parameters:
event- The event to run this item with- Returns:
- True if the next item should be run, or false for the item following this item's parent.
-
parse
-