Jump to content

Hasan

Member
  • Content Count

    2
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About Hasan

  • Rank
    Newbie
  1. I give my player ID I do not know how this is important ? _____________________________ /arma3/MPMissions/Wasteland.Altis/server/admins.sqf "// @file Name: admins.sqf if (!isServer) exitWith {}; if (loadFile (externalConfigFolder + "\admins.sqf") != "") then { call compile preprocessFileLineNumbers (externalConfigFolder + "\admins.sqf"); } else { // Admin menu (U key) access levels /******************************************************* Player UID examples : "1234567887654321", // Meatwad "8765432112345678", // Master Shake "1234876543211234", // Frylock "1337133713371337" // Carl Important: Don't put a comma (,) at the end of the last one ********************************************************/ // Low Administrators: manage & spectate players, remove hacked vehicles lowAdmins = compileFinal str [ // Put player UIDs here ]; // High Administrators: manage & spectate players, remove hacked vehicles, show player tags highAdmins = compileFinal str [ // Put player UIDs here ]; // Server Owners: access to everything serverOwners = compileFinal str [ "76561198011619409", // KiLi ]; /********************************************************/ }; if (typeName lowAdmins == "ARRAY") then { lowAdmins = compileFinal str lowAdmins }; if (typeName highAdmins == "ARRAY") then { highAdmins = compileFinal str highAdmins }; if (typeName serverOwners == "ARRAY") then { serverOwners = compileFinal str serverOwners }; publicVariable "lowAdmins"; publicVariable "highAdmins"; publicVariable "serverOwners"; "
×