Jump to content

Norbak

Member
  • Content Count

    141
  • Joined

  • Last visited

  • Medals

Posts posted by Norbak


  1. Well i found another path to success.

    _members = ["0000","0001"];

    if ((getPlayerUID player) in _members) exitWith {};

    if !((typeOf player) in ["Pierce", "CZ_Special_Forces_TL_DES_EP1"]) then { ....EJECT! };

    Then, (only players inside _MEMBERS array) OR (players in toons "Pierce" and "CZ_Special....") won't get EJECT. I think it can work well.


  2. I don't know but i think i tried before:

    if (((typeOf player) in ["Pierce", "CZ_Special_Forces_TL_DES_EP1"]) OR ((getPlayerUID player) in members)) then {

    and didn't work.

    Ok i'll test again. Maybe it was my clumsiness.

    So the contrast would be:

    if ((!(typeOf player) in ["Pierce", "CZ_Special_Forces_TL_DES_EP1"]) OR (!(getPlayerUID player) in members)) then {

    hint "You're not authorized."};

    Am i right?

    Still not working.


  3. members = ["00000", "0000001"];

    if (!((typeOf player) in ["Pierce", "CZ_Special_Forces_TL_DES_EP1"])) OR ((getPlayerUID player) in members) then {

    hint "Welcome aboard, Member or Authorized Pilot."};

    Toons "Pierce" and "CZ_Special_Forces_TL_DES_EP1" OR UID players inside MEMBERS array will can pilot the jet.

    Is this correct?. I think i'm missing something.

×