HackerDragon9999
Forum adept
- Joined
- Jan 18, 2023
- Messages
- 129
- Reaction score
- 21
Part I: Blocks
Player Events, Entity Events, Functions, and Proccesses (so the ones that start code lines) are written like this:
Event Name (Parameters) #Tags >
If Player, If Entity, If Game, If Variable, and Repeat blocks are written like this:
Event Name (Parameters) #Tags {
-- Stuff inside the pistons/brackets
}
Else blocks are written like this (replacing the end of an If block)
} else {
-- Stuff inside the pistons/brackets
}
Everything else is written like this:
Event Name (Parameters) #Tags
Part II: Values
Texts: "hello world"
Numbers: 69
Locations: (10, 20, 30)
Vectors: <1, 2, 3>
Sounds: ~Zombie Ambient, 1.0, 2.0~
Particles: *Dust, ff0000, 0%, 1.0, 0%* (paramaters in the order on the particle item)
Potions: Speed C (1:09)
Variables: %default susLevel -s
Game Values: [Event Block Location]
And that's it!
Player Events, Entity Events, Functions, and Proccesses (so the ones that start code lines) are written like this:
Event Name (Parameters) #Tags >
If Player, If Entity, If Game, If Variable, and Repeat blocks are written like this:
Event Name (Parameters) #Tags {
-- Stuff inside the pistons/brackets
}
Else blocks are written like this (replacing the end of an If block)
} else {
-- Stuff inside the pistons/brackets
}
Everything else is written like this:
Event Name (Parameters) #Tags
Part II: Values
Texts: "hello world"
Numbers: 69
Locations: (10, 20, 30)
Vectors: <1, 2, 3>
Sounds: ~Zombie Ambient, 1.0, 2.0~
Particles: *Dust, ff0000, 0%, 1.0, 0%* (paramaters in the order on the particle item)
Potions: Speed C (1:09)
Variables: %default susLevel -s
Game Values: [Event Block Location]
And that's it!