yup... thought as much. guess who's been looking at vampire spells lately
second and related question - i am making an arc of drop particles in front of the player from -90 to 90 degrees, but flashpoint seems to align them north/south, or something weird is going on...
here's the drop code
_dir = getdir player
_dir = _dir - 90
_deg = random 180
_deg = _deg - (_deg mod 1)
drop ["halflight","","Billboard",2,1.5, [1*sin(_dir+_deg),1*cos(_dir+_deg),1],[0,0,0],0,1.275,1,0,[0.5,0.75,0.1],_color,[0],0,0,"","",player]
basically, when pointing due north it works as it should, in front of the player; when pointing due south it's behind the player; due east = to the right of the player; due west, to the left.
now i'm thinking it has something to do with the relative position of the particle to the player, i.e. to the left is -x, to the right is +x, but how do i correct the code to take account of this?
EDIT - fixed... i just took out the reference to the player's direction and it works a treat.