Ok I have been looking at Snypirs scripts and have found where the particle cloud is created. To have this created on all the clients I plan on using the Foreach command but I havent used this before and am uncertain how to do this.
; SP/MP Fire Spt Pack
; by snYpir
; this script is by Shogun for the Napalm addon
; modified by snYpir for the Support Pack
_pos = _this
; create the napalm bomb
_bomb = "SNYNapalmBomb" createVehicle _pos
_j = 0
#Loop
   ;If flame is dead then exit script
   ? IsNull _bomb : exit
   _Lista = list detectlaser
   _zoneCount = count _Lista
   ? _j > _zoneCount : _j = 0
   _deadman = _Lista select _j
   ? (_deadman distance _bomb) < 80 && (getpos _deadman select 2) < 20 : _deadman setDammage 1.0
   _j = _j + 1
   ~0.01
goto "Loop"
Where would I use the "forEach units group player" bit in this script? in order to make sure the cloud effect is visible on client PCs? Is it the following line?
_bomb = "SNYNapalmBomb" createVehicle _pos
should read something like
"_bomb = ""SNYNapalmBomb"" createVehicle _pos" ForEach units group player
Please help Im crap at this scripting lark...