paramA = radius of cylinder
<paramB> = z min - if z min or zmax are not defined defaults to 0
<paramC> = z max - if z min or zmax are not defined defaults to 0
<paramD> = 2nd cylinder radius to form two bounding cylinders where triggers occur between them (note if this 2nd radius is defined the software will determine which radius is the outer radius and which is the inner radius based on length)
Example: Below will trigger on all tokens within 10 ft from center of source token this effect is on and between the zmin of 0 and zmax of 10
...; AURA: 10 all, cylinder|0|10, point; ...
Example: Below will trigger on all tokens between 10 and 20 ft from center of source token this effect is on and between zmin of 0 and zmax of 10
...; AURA: 10 all, cylinder|0|10|20, point; ...
paramA = length of rectangle (extending out along xy plane orientation)
paramB = width of rectangle defaulted to paramA if not defined. The rectangle is placed with center point the same as the center point of the source token. Unless the <* prefix> is in front of the numeric paramB - then it will move the center point of the rectangle so that the base is against the center or edge of token as the point option dictated.
paramC = z min - if z min or zmax are not defined defaults to 0
paramD = z max - if z min or zmax are not defined defaults to 0
paramE = orientation in degrees of the rectangle. If not defined will be the orientation of the source token at run time.
Example: Below will trigger on all tokens within the bounds of a 10 ft square centered on the source token center point and oriented to the source tokens orientation on the xy plane of the map
...; AURA: 10 all, 3drect, point; ...
Example: Below will trigger on all tokens within the bounds of a 10 ft square centered on the source token center point and oriented along the x axis in a positive direction
...; AURA: 10 all, 3drect|10|0|0|0, point; ...
Example: Below will trigger on all tokens within a 10 ft cube centered on the source token center point and oriented to the source tokens orientation on the xy plane of the map
...; AURA: 10 all, 3drect|10|0|10, point; ...
Example: Below will trigger on all tokens within a 10 ft orthogonal cube centered on the source token center point and oriented along the x axis in a positive direction
...; AURA: 10 all, 3drect|10|0|10|0, point; ...
Example: Below will trigger on all tokens within 60x5ft rectangle centered on the source token center point between zmin of 0 and zmax of 10 and and oriented to the source tokens orientation on the xy plane of the map
...; AURA: 60 all, 3drect|5|0|10, point; ...
Example: Below will trigger on all tokens within 30x5ft rectangle projected out from the source token center point so that the base of rectangle is touching the center point of the source token between zmin of 0 and zmax of 10 and and oriented to the source tokens orientation on the xy plane of the map
...; AURA: 30 all, 3drect|*5|0|10, point; ...
paramA = height of cone (extending out along xy plane orientation)
paramB = orientation in degrees of the cone. If not defined will be the orientation of the source token at run time. (can't see this ever being set)
paramC = half angle of cone defaulted to 26.5 which matches FG pointer shape cone (can't see this ever being set)
Example: Below will trigger on all tokens within 15ft cone starting at edge of the token and oriented to the source tokens orientation on the xy plane of the map with a 26.5 degree half angle matching that of the pointer shape cone used in FG.
...; AURA: 15 all, cone; ...