check how exori vis is codedHow do I go about making a specific spell shoot the way I face? Atm it only goes Up
I can't sleep. :'c soo i'm just hanging on otland with my boring lifelook at the existing directional wave spells
cmon tarek why u post a second before me
AREA_SQUAREWAVE5 = {
{1, 1, 1},
{1, 1, 1},
{1, 1, 1},
{0, 1, 0},
{0, 3, 0}
}
I'm not sure how that fixed my directional issuejust look at the waves in spells.lua in spell lib folder
Code:AREA_SQUAREWAVE5 = { {1, 1, 1}, {1, 1, 1}, {1, 1, 1}, {0, 1, 0}, {0, 3, 0} }
Never knew that, thanks!3 is always the player in the players lookdirection, so
area= {
{1},
{3}
}
will shoot the effect 2 tiles in ur lookdirection (with only {3} it will always shoot 1 tile only)
Always share the solution that worked for you.I actually figured out the issue and was happy with the outcome! thanks for your assistance though