-
Content Count
412 -
Joined
-
Last visited
-
Medals
Community Reputation
2 NeutralAbout hellstorm77
-
Rank
Gunnery Sergeant
Contact Methods
-
Website URL
http://www.british-special-forces.com/
-
Skype
mark.gaffey
-
Steam url id
gaffey
Profile Information
-
Gender
Male
Recent Profile Visitors
2332 profile views
-
Random tasks\objectives
hellstorm77 replied to greywolf907's topic in ARMA 3 - MISSION EDITING & SCRIPTING
i have sorted it now.. how would I add a win condition to this? so I can pick X amount and then it will end? -
Random tasks\objectives
hellstorm77 replied to greywolf907's topic in ARMA 3 - MISSION EDITING & SCRIPTING
i wonder if someone could help me i am trying this and I am getting an error ["Ta> 10:50:43 Error position: < waitUntil { (!alive jet) }; ["Ta> 10:50:43 Error Invalid number in expression 10:50:43 File C:\Users\gaffe\Documents\Arma 3 - Other Profiles\Gaffey\missions\SAS OP VIROLAHTI\TEST.Stratis\sidemissions\side1.sqf..., line 85 10:50:43 Error in expression <_area"), 1000] call bis_fnc_taskPatrol; waitUntil { (!alive jet) }; -
custom loadout Help
hellstorm77 replied to hellstorm77's topic in ARMA 3 - MISSION EDITING & SCRIPTING
delete please -
I have made a custom loadout the problem i have is in the editor the backpack is on my back but when I start up a server the backpack isn't there. wonder if I could get some help waitUntil {!isNull player}; _unit = _this select 0; removeAllWeapons this; removeallassigneditems this; removeallcontainers this; removeuniform this; removevest this; removebackpack this; //==== GEAR ====// _unit addVest "VSM_LBT6094_MG_Multicam"; _unit addUniform "VSM_Multicam_BDU_Camo"; _unit addBackPack "VSM_Multicam_carryall"; _unit addGoggles "rhs_ess_black"; _unit addHeadgear "VSM_Mich2000_2_Multicam"; //==== ITEMS ====// _unit linkItem 'ItemWatch'; _unit linkItem 'ItemMap'; _unit linkItem 'ItemCompass'; _unit linkItem 'TFAR_anprc152'; _unit linkItem 'Itemandroid'; _unit addWeapon 'Binocular'; _unit addWeapon 'NVGoggles'; //==== MAIN WEAPON ====// _unit addWeapon "rhs_weap_m4a1_blockII_d"; _unit addPrimaryWeaponItem "CUP_muzzle_snds_M16_desert"; _unit addPrimaryWeaponItem "CUP_acc_ANPEQ_15_Top_Flashlight_Tan_L"; _unit addPrimaryWeaponItem "ACE_optic_Arco_PIP"; _unit addPrimaryWeaponItem "CUP_bipod_VLTOR_Modpod"; //==== ADD TO UNIFORM ====// _unit addItemToUniform "ACE_EarPlugs"; _unit addItemToUniform "ACE_splint"; _unit addItemToUniform "ACE_tourniquet"; _unit addItemToUniform "ACE_EntrenchingTool"; for "_i" from 1 to 20 do {_unit addItemToUniform "ACE_elasticBandage";}; for "_i" from 1 to 10 do {_unit addItemToUniform "ACE_morphine";}; for "_i" from 1 to 5 do {_unit addItemToUniform "ACE_epinephrine";}; //==== ADD TO VEST ====// _unit addItemToVest "B_IR_Grenade"; for "_i" from 1 to 4 do {_unit addItemToVest "SmokeShell";}; for "_i" from 1 to 4 do {_unit addItemToVest "HandGrenade";}; for "_i" from 1 to 20 do {_unit addItemToVest "rhs_mag_30Rnd_556x45_M855A1_Stanag";}; //==== ADD TO BACK PACK ====// for "_i" from 1 to 20 do {_unit addItemToBackpack "rhs_mag_30Rnd_556x45_M855A1_Stanag";}; if(true) exitWith{};
-
Respawn Module spawns players on top of building, not inside
hellstorm77 replied to Zjajo's topic in ARMA 3 - MISSION EDITING & SCRIPTING
nvm i found a different way i did the respawn the old school way by using an empty marker and adding respawn_west as the name and it fixed the spawning into the roof -
Respawn Module spawns players on top of building, not inside
hellstorm77 replied to Zjajo's topic in ARMA 3 - MISSION EDITING & SCRIPTING
silly question where would you put this line of code -
hellstorm77 started following HazJ
-
HazJ started following hellstorm77
-
just have a simple question what does the 500 do which is next to mark1 and also the 400 next to call Bis_fnc_taskPatrol _randomPos = [[[getMarkerPos "mark1", 500]],["water","out"]] call BIS_fnc_randomPos; [_spawnGroup, _pos, 400] call Bis_fnc_taskPatrol;
-
@barbolani & jshock thank you both for the help this is what i have now, just one last question do i need if (!isServer) exitWith {} if (!isServer) exitWith {}; _pos = getMarkerPos "mark1"; for "_i" from 0 to PARAMS_UpsSquadsPatrol do { _randomPos = [[[getMarkerPos "mark1", 500]],["water","out"]] call BIS_fnc_randomPos; _spawnGroup = [_randomPos, EAST, (configFile >> "CfgGroups" >> "East" >> "OPF_F" >> "Infantry" >> "OIA_InfSquad")] call BIS_fnc_spawnGroup; [_spawnGroup, _pos, 400] call Bis_fnc_taskPatrol; sleep 0.5; if(DEBUG) then { _name = format ["%1%2",name (leader _spawnGroup),_i]; createMarker [_name,getPos (leader _spawnGroup)]; _name setMarkerShape "Icon"; _name setMarkerType "mil_dot"; _name setMarkerText format ["Squad %1",_i]; _name setMarkerColor "ColorRed"; [_spawnGroup,_name] spawn { private["_group","_marker"]; _group = _this select 0; _marker = _this select 1; while{count (units _group) > 0} do { _marker setMarkerPos (getPos (leader _group)); sleep 0.1; }; deleteMarker _marker; }; }; };
-
this is the error im getting now after adding "mark1" 16:27:56 Error in expression <ust be a Group!"; false};if ((typeName _pos) != (typeName [])) exitWith {debugL>16:27:56 Error position: <_pos) != (typeName [])) exitWith {debugL>16:27:56 Error Undefined variable in expression: _pos16:27:56 File A3\functions_f\spawning\fn_taskDefend.sqf, line 2616:27:56 Error in expression <all BIS_fnc_spawnGroup; [_spawnGroup, _pos, 400] call BIS_fnc_taskDefend;_en>16:27:56 Error position: <_pos, 400] call BIS_fnc_taskDefend;_en>16:27:56 Error Undefined variable in expression: _pos
-
just was updating the op
-
i forgot to add that part 15:01:51 "Reading main init.sqf" 15:01:51 Error in expression <oup","_i","_dt"]; _pos = getMarkerPos (_this select 0); _enemiesArray = [grpNu> 15:01:51 Error position: <_this select 0); _enemiesArray = [grpNu> 15:01:51 Error Undefined variable in expression: _this
-
im trying to spawn ai on a marker pos but a random place around it ie 500m just say. My marker is named mark1 my script is this. nothing is spawning. _pos = getMarkerPos (_this select 0); _enemiesArray = [grpNull]; for "_i" from 0 to PARAMS_UpsSquadsPatrol do { _randomPos = [[[getMarkerPos "mark1", 500],_dt],["water","out"]] call BIS_fnc_randomPos; _spawnGroup = [_randomPos, EAST, (configFile >> "CfgGroups" >> "East" >> "OPF_F" >> "Infantry" >> "OIA_InfSquad")] call BIS_fnc_spawnGroup; [_spawnGroup, _pos, 400] call BIS_fnc_taskDefend; _enemiesArray = _enemiesArray + [_spawnGroup]; };
-
[BSF] British Special Forces |Milsim Group| Recruiting
hellstorm77 replied to hellstorm77's topic in ARMA 3 - SQUADS AND FANPAGES
Happy New Year everyone Just an update. We had a break over xmas and new year now we are back. We offer operation 2 times a week plus we have a public mission with no mods so anyone can play. Thanks to the group we also have a dedicated server now instead of a game server, we can offer more in the line of missions types. We are recruiting new members so feel free to get in contact with me. my steam name is Gaffey.M- 2 replies
-
- Milsim Group
- British Milsim Group
- (and 4 more)
-
I already have RscFrame in my dialog
-
I was wondering if some could help me with an error im getting with a dialog dialog.hpp, line 13: /gaf_dialog/controls.gaf_Frame: Undefined base class 'RscFrame' this is the test mission http://www.mediafire.com/download/y32rz5s50c5agf1/test_di.Altis.pbo