Raycast
This page is all about how to create an item that's capable of shooting "laser" projectiles and other ways to make it spread its attacks
WARNING:
THIS GUIDE CONTAINS A LOT OF MATH AND REQUIRES YOU TO HAVE BASIC KNOWLEDGE ABOUT YAW PITCH VALUES OF A PLAYER
Dependencies:
Placeholder API
Math Expansion of Placeholder API
Player Expansion of Placeholder API
1) Create an activator of your choice
This method is mostly reliant on commands, math and gathering user yaw pitch values and more. Which means you can also use this method on other Executable plugins by Ssomar.
2) Start writing the basic version of the command
Explanation for the code:
The FOR loop represents the distance from the user. As you can see, the for loop shows an increasing value by 0.5 meaning that we're trying to form a line with these distance values. If you want the beam to be longer, add more numbers to the for1 loop
Using the math formula from https://docs.ssomar.com/tools-for-all-plugins-score/general-questions-or-guides/math-formulas#particle-related-math-formulas, by replacing the distance value with the %for1% placeholder, we can
Same will be applied with the
score run-block-command
. The reason why this command is used is to be able to declare where the AROUND command should come from.
With all of these information, we're practically just organizing a line of circles to create a "ray".
3) Modifying the current command to create a "spread raycast"
I added another for loop to create an arc shape. I made it so it shoots 7 lasers instead of 1 and have a 90 degrees arc (45 to the left and 45 to the right). I also modified the {player_yaw} placeholder to be added along with the %for2% placeholder to compute the supposed yaw value if the player looked at 15 degrees to the right for example
Then of course I gave the other commands the appropriate command modification
You can always adjust the first loop to customize the size of the arc and the amount of lasers that will be deployed per activation.
Last updated