More evil scripts for Arma 3 trolling.

This script will spawn a cloud of mines around the player, this is a lot of fun to deal with. _source = eyepos player; _distance = 35;   for "_i" from 1 to 1000 do { _veh = createVehicle ["APERSMineDispenser_Mine_Ammo_Scripted", _source, [], 0, "CAN_COLLIDE"]; _pos = _source vectorAdd (vectorNormalized [(random 2)-1,(random 2)-1,(random 2)-1] vectorMultiply _distance); … Read more

How to protect your base in Arma 3 from trolls and griefing.

This very useful script when placed in the initPlayerLocal.sqf file will protect a base from придурки who are firing into your base and destroying everything. player addEventHandler ["FiredMan", {   _p = _this select 6; if( _p distance (getMarkerPos "respawn_west") < 1000) then { deleteVehicle _p; } else { _p spawn { waitUntil { if( … Read more