Math Formulas
A page dedicated for helping users of Ssomar's plugins to create more complex things that require advanced math formulas
Particle-Related Math Formulas
Player-Direction Offset Formula
Requires: - PlaceholderAPI & Math Expansion
Example Usage:
Command below shoots firework particles like a shotgun (Commands below are in config form)
You can also use this very same method to perform directional dashes which FRONTDASH is unable to perform
You could use (%x%) instead of {player_x_long] but I'll explain the more detailed stuff.
The formula above ONLY gets the displacement between 2 points but CUSTOMDASH1 requires the xyz location because it doesn't have your xyz location as a reference so you have to add your xyz values to the equation to properly launch yourself towards your direction. To increase the speed of the launch, increase the distance value which is the "2" value that you can see in the math formula.
As to why you have to use the xyz placeholder that gives decimal values instead of non-decimal values, it is to make sure you're landing at the correct location or else you would be flying off somewhere.
Player-Direction Offset Formula v2
The above formula only deals with the forward/backward offset but doesn't consider the up/down and left/right offsets.
Just replace the ^x ^y ^z with offset values. DO NOT KEEP THE ^ SYMBOL
Example
Let's say a player is at coordinates {player_x_long} = 100
, {player_y_long} = 64
, {player_z_long} = 100
, facing east ({player_yaw} = 90°
, {player_pitch} = 0°
). If you use the command /tp ^1 ^0 ^1
, the player will be teleported as follows:
{player_yaw}
= 90° (east){player_pitch}
= 0°
Using the formulas:
{new_x_long} = 100 + (1 * cos(0*-1) * sin(90*-1)) + (1 * cos(90*-1))
{new_y_long} = 64 + (1 * sin(0*-1)) + 0
{new_z_long} = 100 + (1 * cos(0*-1) * cos(90*-1)) - (1 * sin(90*-1))
Sample Application:
^1 ^2 ^3
Origin-Related Math Formulas
Distance from XYZ
Requires: - PlaceholderAPI - Math Expansion - Player Expansion
Example Usage: You want to get the distance between you and a specific XYZ location which is x:30, y:60, z:-120
Using offsets to distance target from location
Example Usage:
Threshold Value Math Formula
The detailed explanation goes like this. in the IF() formula, it first checks if the placeholder would return a number greater than 500.
If the placeholder's value is greater than 500, it would get the difference between the placeholder's value and 500 and use that value to subtract from the placeholder's value to prevent it from going above 500.
If the placeholder's value is less than 500, nothing happens
Oscillating Formula
f(x)=sin(2πx)
Example Usage:
Last updated