🎶
🎶
🎶
🎶
ByteSkript Language Specification
GitHub
Search…
🎶
Introduction to ByteSkript
Language Syntax
Members
Entries
Sections
Effects
Value Control Effects
Conditional Effects
Flow Control Effects
Generic Effects
Meta-Effects
Expressions
Events
namespaces
Skript
Unsafe
Tutorials
Getting Started
Creating a Library
Contributing to ByteSkript
Interacting with Java
Creating Custom Syntax
Files
Action (ask)
Script (bsk)
Config (csk)
Powered By
GitBook
Conditional Effects
Section-heading conditionals.
The conditional branch headers are all technically 'effects' though they have no actual function other than to mark the start of their
sections
.
If
1
if
%
Boolean
%
2
if
1
is
1
3
if
true
4
if
{
var
}
is
true
Copied!
See
here
for more details about using this.
Else-If
1
else
if
%
Boolean
%
2
else
if
1
is
1
3
else
if
true
4
else
if
{
var
}
is
true
Copied!
See
here
for more details about using this.
Else
1
else
Copied!
See
here
for more details about using this.
Previous
Value Control Effects
Next
Flow Control Effects
Last modified
3mo ago
Copy link
Contents
If
Else-If
Else