Results 1 to 3 of 3

Thread: TvT respawn issue

  1. #1

    TvT respawn issue

    I have finally jumped into the world of team vs team missions, and found a fun one called inferno. However I needed to mod it for my server, such as added 14 additional slots, take out the arty and armor, disable AI, etc. My question is, after about 10 minutes the mission ends if someone on either team dies. Now obviously that is a bad thing when you have it set to unlimited points and are expecting a prolonged urban firefight. Is there something that must be done for TvT missions that is different then Coop? the respawn is set to respawn = "BASE"; and there is a respawn_east, and respawn_west marker.
    MAJ Larson
    Commanding Officer
    20th Special Forces Group
    Http://www.20thsfg.com/

  2. #2
    Your question is impossible to answer without knowing the ending conditions. I've never tried the aforementioned mission. What does the endtrigger look like? Did you test it in true MP mode with more than one player, or did you just test it on a MP server with only one human player? All missions will be terminared automatically when all human players are dead. Maybe that's what is happening.
    OFPEC | Intel Depot
    Find the answers to all your editing related questions at OFPEC - The Editing Center.

  3. #3
    Corporal
    Join Date
    Feb 6 2008
    Location
    Orlando, FL
    Posts
    79
    Author of the Thread
    I tried it with 20 people on a dedicated server.


    Trigger named End
    Code:
    (ScoreW >= Param2) or (ScoreE >= Param2) or (time >= Param1)
    player execVM "outro.sqf"; EndGame=1
    Trigger named TrueEnd

    Code:
    TrueEnd
    ForceEnd
    outro.sqf

    Code:
    enableRadio false;
    
    sleep 2;
    
    private ["_camera"];
    _camera = "camera" camCreate [4361.044922, 7641.136230, 10];
    _camera cameraEffect ["INTERNAL", "BACK"];
    _camera camSetTarget flag5;
    _camera camSetFOV 0.7;
    _camera camCommit 0;
    waitUntil{camCommitted _camera};
    
    sleep 5;
    
    titleText [format [localize "STR_MP_GAMEOVER_FINAL", ScoreW, ScoreE], "PLAIN"];
    
    sleep 7;
    
    TrueEnd = true;
    
    sleep 2;
    
    player cameraEffect ["TERMINATE", "BACK"];
    camDestroy _camera;
    
    true
    Also why doesn't end when in coop games with respawn when all players die then?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •