Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×

Boston

Member
  • Content Count

    7
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About Boston

  • Rank
    Rookie

Recent Profile Visitors

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

  1. Boston

    RYD_Projectile_Spectator Script

    Thank you for your quick reply!
  2. Boston

    RYD_Projectile_Spectator Script

    Gunter, could you point me in the right direction? My searches have failed. Want an MP EH script that fires when killed and pans to the killer during respawn time? I understand that you cannot follow the bullet that killed the player because the EH is too late.
  3. Has anyone seen an Arsenal BluFor Whitelist for stock ARMA 3?
  4. With LiDAR on our phones, has anyone asked AI to create a face.jpg file?
  5. Gunter sent me.

    I have an addaction on a quad that spawns a Darter and flys it 200 meters higher:

     

    LaunchDarter.sqf

        _Vic = _this select 0;
    
    
    
        //get pos and dir
        _VicDir = getDir _Vic;
        _VicBackPos = (_Vic modelToWorld  [0,-4,0]);
    
    
    
        //create and crew Darter
        _NewDarter = "B_UAV_01_F" createVehicle _VicBackPos;
        _NewDarter setDir _VicDir;
        createVehicleCrew _NewDarter;
    
        _NewDarter action ["engineOn", vehicle _NewDarter];
        _grp = group _NewDarter;
        _grp addWaypoint [[ getPos _Vic select 0, getPos _Vic select 1, 50],0];
        [_grp, 0] setWaypointType "Move";
        _NewDarter action ["autoHover", _NewDarter];
        Sleep 100;
        _grp addWaypoint [[ getPos _Vic select 0, getPos _Vic select 1, 200],1];
        [_grp, 1] setWaypointType "Move";

     

    I do not understand Events very well. Could UAVCrewCreated be triggered by setting it to true or some other syntax? I have searched and searched to find an example of triggering an Event within the code. Could you point me in the right direction, please?

     

  6. Has anyone asked AI to create a custom face.jpg from a LIDAR scan? It would be great if you could scan your head and have a face.jpg created for you.
  7. Fer, thank you and your team for F2. I have a question. I wanted to keep the date I selected in the editor instead of 11May2007. So in f_setMissionConditions.sqf I made the following changes: // ==================================================================================== // SET KEY VARIABLES // Conditions are set in the parameters screen (during mission set-up). _timeOfDay = f_param_timeOfDay; _weather = f_param_weather; _todayIs = date; _yearIs = _todayIs select 0; _monthIs = _todayIs select 1; _dayIs = _todayIs select 2; // ==================================================================================== // SELECT MISSION TIME OF DAY // Using the value of _timeOfDay, a new date is set. switch (_timeOfDay) do { // Dawn case 0: { setDate [_yearIs, _monthIs, _dayIs, 4, 50]; }; // Early Morning... It seems to work. Is there anything else I should look for? Thanks again for your efforts.
×