Jump to content

noname no skill

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About noname no skill

  • Rank
    Rookie

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. noname no skill

    Arma squad logo not working

    actual quation. i have too this problem. it's not working just for me. My friends saw my logo on me and on my car but i not saw. Who knows how to fix it
  2. Thank you very much for the time being working fine. For everyone who needs a script: we makes 9 players with somename - r2, r3, r4, r5, r6, r7, r8, r9, r10 Two triggers need to be made: and put First - with code in Act _arr=[r2,r3,r4,r5,r6,r7,r8,r9,r10]; rozv1 = selectRandom _arr; publicVariable "rozv1"; AND you need to put a check mark on the server in this trigger in the second - when activated: rozv1 createDiaryRecord ["Diary", ["Bla-bla", "Bla-bla-bla-bla"]]; And script get one random player and assign him Somename as "rozv1" then second trigger create Diary for this player.
  3. Need Help me Guys. I try makes scenaries for Multiplayer. And tried to resolve this issue - Select one player with Opfor team, assign him Somename as "spy1" and createDiaryRecord for him. i try many scripts but not rusult. one script work in my computer but not work with my friends. i try that in init.sqf _arr=[r1,r2,r3]; rozv1 = selectRandom _arr; rozv1 createDiaryRecord ["Diary", ["Bla-bla", "Bla-bla-bla"]]; if (alive rozv1) then {hint format ["%1 is chosen", rozv1];}; and that fn_SelectRandomOpfor = { _unit = objNull; _unitsArray = []; { if ((side _x == east ) and (isPlayer _x)) then { _unitsArray = _unitsArray + [_x]; }; } forEach allunits; rozv1 = _unitsArray call BIS_fnc_selectRandom;} call fn_SelectRandomOpfor; rozv1 createDiaryRecord ["Diary", ["Bla-bla", "Bla-bla-bla"]]; and that waitUntil {player == player}; playerarray = []; { playerarray = playerarray + [_x]; } forEach playableUnits; if (side player == opfor) exitWith { rozv1 = playerarray call BIS_fnc_selectRandom; rozv1 createDiaryRecord ["Diary", ["Bla-bla", "Bla-bla-bla"]]; if (alive rozv1) then {hint format ["%1 is chosen",rozv1];}; }; but every times when i tested with my friends we have problem with Select that one spy player. say me please what I need to do to achieve the desired result.
×