I've created a basic little script which makes shells drop randomly between two Game Logics named Pos1 and Pos2 I was hoping maybe someone could help me take it one step further by making the shells land say randomly within a 100 metre radius of either game logic? Using the script below I can make them drop randomly between the two posistions but I've no idea where to go from there on in order to make them drop randomly all around the two posistions.
#Start
_num = Mortar_bang
_rand = random 3
_num = _rand - (_rand mod 1)
?_num == 1 : Mortar_bang = 1
?_num == 2 : Mortar_bang = 2
?_num == 0 : goto "start"
exit