FireStormHD
Member-
Content Count
19 -
Joined
-
Last visited
-
Medals
Community Reputation
1 NeutralAbout FireStormHD
-
Rank
Private First Class
Profile Information
-
Gender
Male
-
help I can't open my mission
FireStormHD replied to FireStormHD's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thank you for your patience -
help I can't open my mission
FireStormHD replied to FireStormHD's topic in ARMA 3 - MISSION EDITING & SCRIPTING
And with that ? https://www.dropbox.com/s/4bomxmd3zoh3bcu/PoliceMil.Malden.rar?dl=0 -
help I can't open my mission
FireStormHD replied to FireStormHD's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Sure :D http://uptobox.com/yybc00vibmvw -
help I can't open my mission
FireStormHD replied to FireStormHD's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thx, yes mission is binarized. The error message is on the link "Here" up there. https://image.noelshack.com/fichiers/2017/40/6/1507372007-20171007122449-1.jpg -
FireStormHD started following I can't open my mission
-
Hi ! Today I tried to open my mission in the editor but an error message appeared. Here it is. I tried to delete the file "Arma3.cfg" but nothing. I admit that I am very sad, I have spent tens of hours and I do not want to lose everything. Thank you for helping me.
-
I was wondering if we could save/load coop-mission. And if yes, how ? Thx
-
Problem with Random Select
FireStormHD replied to FireStormHD's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks you again ! :) -
Problem with Random Select
FireStormHD replied to FireStormHD's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Nice ! thanks you a lot ! :D Now i have a question :) If i want put an another stuff in crate, i need to replace: "addWeaponCargoGlobal" by "additemcargoglobal" ? Like this ? // in init.sqf if (true) then { private _vrn = "AddWeaponWithAmmo"; private _wpd = [ ["ItemCompass"], ["ToolKit"], ["Binocular"]]; { if (local _x and {not isNil {_x getVariable _vrn}}) then { selectRandom _wpd params ["_wpn"]; _x additemcargoglobal [_wpn, 1]; _x setVariable [_vrn, nil, true] } } forEach entities "" }; -
Problem with Random Select
FireStormHD replied to FireStormHD's topic in ARMA 3 - MISSION EDITING & SCRIPTING
It does not work, nothing spawn in my crate :/ You can see on theses screens: -
Hello, i want to use EOS to spawn zombies on map but i don't know how. I read the "read me.doc" but i don't understand what i need to put in this for zombies spawn: null =[[" EOSzone1"],[2,1],[2,2],[1,3],[1],[2],[1,2],[1,0,35,WEST,FALSE,FALSE]] call EOS_Spawn;
-
Problem with Random Select
FireStormHD replied to FireStormHD's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Omg thx ! It's Works ! <3 Thanks you too Celludriel ! -
Problem with Random Select
FireStormHD replied to FireStormHD's topic in ARMA 3 - MISSION EDITING & SCRIPTING
It's Works ! But when i play solo. In MP (2 players) i found double stuff. So 2 weapons and his 5 ammo... -
Problem with Random Select
FireStormHD replied to FireStormHD's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I can't put this in Init, i have a warning message : "Init: Local Variable in global space" -
Problem with Random Select
FireStormHD replied to FireStormHD's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I am not sure to have understood everything .... So I have to write this _AR15= ["hlc_rifle_RU556", "hlc_30rnd_556x45_EPR"]; _G36= ["hlc_rifle_G36E1", "hlc_30rnd_556x45_EPR_G36"]; _AWM= ["hlc_rifle_awcovert_BL", "hlc_5rnd_300WM_FMJ_AWM"]; _gun = ["_AR15","_G36", "_AWM"] call BIS_fnc_selectRandom; this addItemCargoGlobal [gun,1]; Where do I write ? -
Hello ! I'm trying to create a script that allows you to put random weapons and ammo into crates. I tried to put this in crate's Init but it does not work. AR15= ["hlc_rifle_RU556", "hlc_30rnd_556x45_EPR"]; G36= ["hlc_rifle_G36E1", "hlc_30rnd_556x45_EPR_G36"]; AWM= ["hlc_rifle_awcovert_BL", "hlc_5rnd_300WM_FMJ_AWM"]; gun = ["AR15","G36", "AWM"] call BIS_fnc_selectRandom; this addItemCargoGlobal [gun,1]; An idea ?