Jump to content
Vulden

Error: Script core\admin\fn_admingetID.sqf not found

Recommended Posts

Hello everyone,

 

Im trying to setup my own Arma 3 server but everytime I select a role like civilian and try to continue I get the following error message:

Script core\admin\fn_admingetID.sqf not found

 

Anyone that has any idea how to fix this?

Share this post


Link to post
Share on other sites

Hi and welcome to this forum

 

Which mission are you trying to set up on your server? 

Have you verified your servers game files? 

Share this post


Link to post
Share on other sites
45 minutes ago, stanhope said:

Hi and welcome to this forum

 

Which mission are you trying to set up on your server? 

Have you verified your servers game files? 

 

Hello 😄

 

Im trying to setup Altis Life and I have verfied my server game filess.

Share this post


Link to post
Share on other sites

I could be wrong but doesn't altis life require a serverside mod? 

Share this post


Link to post
Share on other sites

Already fixed the issue thanks for the quick reply tough.

 

I have only 1 more issue and thats that I can not use third person (here's my server.cfg)

 

// JOINING RULES
maxPlayers = 64;
kickDuplicate = 1;
verifySignatures = 0;
allowedFilePatching = 0;
//requiredBuild = 12345;

loopback = 0;
upnp = 0;


// Whitelists
admins[] = { };
headlessClients[] = { };
localClient[] = { };

// VOTING
voteMissionPlayers = 2000;
voteThreshold = 1;


// INGAME SETTINGS
forceRotorLibSimulation = 0;
disableVoN = 0;
vonCodec = 0;
vonCodecQuality = 0;
persistent = 1;
timeStampFormat = "none";
BattlEye = 1;
drawingInMap = 1;
allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; //only allow files with those extensions to be loaded via loadFile command (since Arma 3 build 1.19.124216)
allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; //only allow files with those extensions to be loaded via preprocessFile/preprocessFileLineNumber commands (since Arma 3 build 1.19.124323)
allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"};
//allowedHTMLLoadURIs = {};
disconnectTimeout = 90;
maxdesync = 150;
maxping = 200;
maxpacketloss = 50;


// SCRIPTING ISSUES
onUserConnected = "";
onUserDisconnected = "";
doubleIdDetected = "";

// SIGNATURE VERIFICATION
onUnsignedData = "kick (_this select 0)";
onHackedData = "kick (_this select 0)";
onDifferentData = "";


// MISSIONS CYCLE
class Missions {
    class MissionRotation1 {
        template = Altis_Life.Altis;
        difficulty = "Custom";
        class Params{};
    };
};

// DIFICULTY
class DifficultyPresets
{
    class CustomDifficulty //"class Custom" as it is in the wiki documentation does not work but "class CustomDifficulty" does (and behaves as "class Custom" should)
    {
        class Options
        {
            groupIndicators = 0;
            friendlyTags = 0;
            enemyTags = 0;
            detectedMines = 0;
            commands = 0;
            waypoints = 2;
            weaponInfo = 1;
            stanceIndicator = 1;
            reducedDamage = 0;
            staminaBar = 0;
            weaponCrosshair = 0;
            visionAid = 0;
            thirdPersonView = 1;
            cameraShake = 1;
            scoreTable = 1;
            deathMessages = 1;
            vonID = 1;
            mapContent = 0;
            autoReport = 0;
            multipleSaves = 0;
        };
        aiLevelPreset = 3;
    };
    class CustomAILevel
    {
        skillAI = 0.60000002;
        precisionAI = 0.30000001;
    };
};?

Share this post


Link to post
Share on other sites
2 hours ago, Vulden said:

 thirdPersonView = 1;

That should be the option but it might be overwritten somewhere else. 

Share this post


Link to post
Share on other sites
On 5/16/2019 at 2:04 PM, Vulden said:

Script core\admin\fn_admingetID.sqf not found

As you have fixed the issue already, for future references keep in mind that this error is just a folder address in your mission.

So Script core is a folder and when you open that you should have a folder named admin, open that and there should be the script fn_admingetID.sqf

if the code in the mission is calling for the script that isn't in the folder you'll get the error, if the code is wrong theres a chance same error will occur.

 

On 5/17/2019 at 3:03 PM, Vulden said:

here's my server.cfg

This would be your server's Arma3Profile

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×