Jump to content

SKS.Goliath

Member
  • Posts

    118
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by SKS.Goliath

  1. you can also add mozzi, for example

     

    private ["_hastools","_hasitems1","_hasitems2"];
    _hastools = ["ItemToolbox"] call player_hasTools;
    _hasitems1 = [["PartVRotor"]] call player_checkItems;
    _hasitems1 = [["PartEngine"]] call player_checkItems;
    _hasitems1 = [["PartFueltank"]] call player_checkItems;

    if (call {_hastools} && {_hasitems1}) then {
    player removeMagazine "PartVRotor";
    sleep 0.1;
    player removeMagazine "PartEngine";
    sleep 1;
    player removeMagazine "PartFueltank";
    sleep 1;
    player addMagazine "mozzi";
    createDialog "PzU_CRAFT_MENU";
     
    };

    player addMagazine "mozzi";  // how should I change that?

×
×
  • Create New...