Jump to content

SoullessFenrir

Member
  • Content Count

    7
  • Joined

  • Last visited

  • Medals

  • Medals

Posts posted by SoullessFenrir


  1. As the title says, I can't host or join any servers (Sometime I can but at the moment it's about a 1 in 50 chance it works). I've tried everything from restarting the game and my PC, restarting my internet, turning off all mods, turning BattleEye on or off, verifying my steam cache. Even changing the graphic settings.

    Here is what the game gives me when I try hosting a mission (Player created or the missions included in the game):

    http://imgur.com/a/UZNmo

    This is what happens when I try to join a server from the in-game server browser (It just hangs on this screen indefinitely):

    http://imgur.com/a/plnt0

    And this is what happens when I try to join a server from the Arma 3 launcher's server browser (Again, just hangs there):

    http://imgur.com/a/eLhr5

     

    To repeat myself, these same problems occur regardless of whether I have mods loaded or not.

    Thanks for any help.


  2. Anyway I'll just put it here:

    description.ext:

    class Params
    {
        class Fatigue
        { // paramsArray select 0
                title = "Fatigue:";
                values[] = {0,1};
            default = 0;
                texts[] = {"OFF","ON"};
        };
    };

    respawn = 3;
    respawnDelay = 10;

    fatigue.sqf:

    if (isDedicated) exitWith {};
    waitUntil {!(isNull player)};
    while {true} do {
        if (isNull player) exitWith {};
        player setFatigue 0;
        sleep 5;
    };

    init.sqf

    if ((paramsArray select 0) == 0) then {execVM "fatigue.sqf";};
     


  3. I've hunted around for some sort of answer for this but have found nothing. I'm not exactly and expert when it comes to the editor so I'll explain the situation.

    I've been creating a mission in which I want to remove the fatigue system which I have done through a lobby parameter. That part seems to work fine. Now as for the respawning. I've placed the marker with "repsawn_west" and I've got "respawn = BASE;
    respawnDelay = 10;" in my description.ext and blah blah blah.

    When I die or choose the respawn option in the mission I don't respawn as the unit but in the death screen I can see that the unit itself has respawned. Which leaves me with the option to quit the mission and nothing else.

    I'll hazard a guess that it's something to do with my attempt to remove fatigue that's causing it.

    Any help would be greatly appreciated.

×