• The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

What would you do to the poster above you?

just before the command place a
if false then
//command here
end
or however you need to write it in java
 
Point out that the if syntax in Java is this:
Code:
if(boolean) {
    //your code here
}
or this:
Code:
if(boolean) {
    //your code here
} else {
    //other code here
}
or this:
Code:
if(boolean1) {
    //your code here
} else if(boolean2) {
    //other code here
}
etc.
 
Back
Top