Jump to content

mackenzieexd

Member
  • Content Count

    36
  • Joined

  • Last visited

  • Medals

Posts posted by mackenzieexd


  1. 7) Getting hit over water

    This can be troublesome, so my approach to this was

    Aircraft crashes into the sea, unconscious player is moveincargo to a createvehicle orange inflatable or requires divers to rescue the body

    This means the casualty would need a marker to mark their downed position, 

     

    8) CSAR Team

    This is a 4 man team made up of medics who's job is to basically rescue downed pilots, or medivac injured players or as additional medical support.

    They have their own vehicle set, Light Helo, boat, cars etc with cargo space fully equipped with dive gear etc

     

    7 -- hell no just make them respawn... realistically your only going to have 30-40 people as most people these days are going with cheap servers so thats taking players out of other rolls and could be getting stuck into the action and fighting in towns

     

    8 -- CSAR personally tried this back in the day of 3.0 and when my community put together a unofficial 4.0 we found for the fast pace of the missions and the number of players you have its hard to get CSAR when your fighting off in a town for an hour before you clear it out for CSAR to land.


  2. Its simple enough to understand.

     

    You are trying to join a server and the addons you are attempting to connect with are not supported by the keys in the keys folder

    So you are either not using the addon's bisigns that the server will allow or the keys are missing

    Compare the servers version of the bisign to your clients version of the bisign and make sure they are identical.

     

    If they are then the key for that addon in the keys folder is incorrect or faulty

     

    thats the thing, the server has the .bikey in the keys folder, everything i do on my local host im then uploading to the server so everything should work and match up.

     

    the key cant be faulty because its only throwing this error for one pbo

     

    23b33f13c16643109e3ffb10fa4fae5b.png


  3. a little script for everyone still using PO3, we found it a bitch to only allow people logged in as admin to access the features like skipping missions and what not so heres a some edits to make it so you can add UID's to a list and allow trusted members to access these admin features!

     

     

    fn_isAdministrator.sqf

    private["_return"];
    
    // old scripts checking if player was logged in as admin
    //_return = if(serverCommandAvailable "#kick" || !isMultiplayer) then { true }else{ false };
    
    //new script checking if uid is on AdminUIDList
    _return = if ( ((getPlayerUID player) in AdminUIDList) ) then { true } else { false };
    
    _return;
    

    first lines of init.sqf

    //other random BS
    ["INIT",format["Executing %1 init.sqf",missionName],true] call PO3_fnc_log;
    
    AdminUIDList = 
                [
                "_SP_PLAYER_"/* Editor Debugging  */,
                "1111111111111111111"/* [TAG] Example 1*/,
                "2222222222222222"/* [TAG] Example 2 */
                ];
    
    • Like 3
×