Jump to content

FireStormHD

Member
  • Content Count

    19
  • Joined

  • Last visited

  • Medals

Community Reputation

1 Neutral

About FireStormHD

  • Rank
    Private First Class

Profile Information

  • Gender
    Male
  1. FireStormHD

    I can't open my mission

    Thank you for your patience
  2. FireStormHD

    I can't open my mission

    And with that ? https://www.dropbox.com/s/4bomxmd3zoh3bcu/PoliceMil.Malden.rar?dl=0
  3. FireStormHD

    I can't open my mission

    Sure :D http://uptobox.com/yybc00vibmvw
  4. FireStormHD

    I can't open my mission

    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
  5. 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.
  6. I was wondering if we could save/load coop-mission. And if yes, how ? Thx
  7. FireStormHD

    Problem with Random Select

    Thanks you again ! :)
  8. FireStormHD

    Problem with Random Select

    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 "" };
  9. FireStormHD

    Problem with Random Select

    It does not work, nothing spawn in my crate :/ You can see on theses screens:
  10. 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;
  11. FireStormHD

    Problem with Random Select

    Omg thx ! It's Works ! <3 Thanks you too Celludriel !
  12. FireStormHD

    Problem with Random Select

    It's Works ! But when i play solo. In MP (2 players) i found double stuff. So 2 weapons and his 5 ammo...
  13. FireStormHD

    Problem with Random Select

    I can't put this in Init, i have a warning message : "Init: Local Variable in global space"
  14. FireStormHD

    Problem with Random Select

    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 ?
  15. 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 ?
×