dazholmes
Member-
Content Count
73 -
Joined
-
Last visited
-
Medals
Community Reputation
4 NeutralAbout dazholmes
-
Rank
Corporal
Profile Information
-
Gender
Male
-
Location
United Kingdom
Contact Methods
-
Biography
http://ifa3insurgency.webs.com/
-
Steam url id
http://steamcommunity.com/id/Zer0sec/
Recent Profile Visitors
1159 profile views
-
bump
-
dazholmes started following Arma 3 mission dev, Global bann for nothing, Looking for a team to join us! and and 2 others
-
if you cheat on other games that run battleye on the same account you get a ban across all the games... hope this helps!
-
Hi, i'm looking for team of experienced Arma 3 Server Admins/Devs to join my community we have a dedicated server with tcadmin. We are a new community we have Verious Game Servers which range from wasteland,exile,invade atlis, We are in need of Division Leaders also to help run our Arma 3 Division. We have exciting roles and medals that can be unlocked. Our site Defcon Gaming Applying for Division Leader Our Servers
-
nvm i was being retarded like normal
- 1 reply
-
- 1
-
hi, i'm trying to allow file patching i put this into cfg but still doesn't work allowedFilePatching = 1; when i click on my server in game says file patching no anyone know why it isn't working
-
Arma 3 Apex Linux Issues
dazholmes replied to dazholmes's topic in ARMA 3 - SERVERS & ADMINISTRATION
Ok if anyone has issues with arma 3 not running mods in linux since apex simply delete the whole arma3server directory reinstall and it works. -
Arma 3 Apex Linux Issues
dazholmes replied to dazholmes's topic in ARMA 3 - SERVERS & ADMINISTRATION
im using the website you sent https://gameserverma...sm/arma3server/ how do i enable mods with this? -
Arma 3 Apex Linux Issues
dazholmes replied to dazholmes's topic in ARMA 3 - SERVERS & ADMINISTRATION
In my server log it shows server not finding mods etc https://www.dropbox.com/s/u86pblyvsn3i3a0/logs.txt?dl=0 -
Arma 3 Apex Linux Issues
dazholmes replied to dazholmes's topic in ARMA 3 - SERVERS & ADMINISTRATION
could you post your startserver.sh please? i wanna see how you called the mods i done mine like -mod=@ifa3lite\;@cba_a3 -
Since the new apex i've not been able to run any mods server sided via linux, I can see the mods being called through console but saying it's not finding the actually mods i went into discord linux and see that everyone is having same issue. my server isn't finding the mods since apex not sure why here is log/ https://www.dropbox.com/s/u86pblyvsn3i3a0/logs.txt?dl=0
-
Hi, I'm currently running a gaming community called Gaming Reborn with another guy we have around 7 servers on different games and 1 on arma 3 we need a mission dev just to improve our wasteland server mission, I've done a few things already but i'm to busy to do more to it, This is more of an join our community and help out type of thing so if you're interested in joining also please join us https://gamingreborn.co.ukteamspeak= ts3.gamingreborn.co.uk
-
[Request] Whitelist
dazholmes replied to mackenzieexd's topic in ARMA 3 - MISSION EDITING & SCRIPTING
For sake of it i'll leave my uid out of the code as i want it to show message to kick me as my uid isn't added. full code i put this into initplayerlocal.sqf that's it for that, In mission i have 4 characters for each team bluefor opfor independent as you can see in the _reserved_units if (!isServer) then { "BIS_fnc_MP_packet" addPublicVariableEventHandler compileFinal preprocessFileLineNumbers "server\antihack\filterExecAttempt.sqf"; }; while {true} do { private ["_reserved_units", "_reserved_uids", "_uid"]; waitUntil {!isNull player}; waitUntil {(vehicle player) == player}; waitUntil {(getPlayerUID player) != ""}; // Variable Name of the Player Character to be restricted. // _reserved_units = [Reserved01, Reserved02, Reserved03, Reserved04, Reservedred01, Reservedred02, Reservedred03, Reservedred04, Reservedgreen01, Reservedgreen02, Reservedgreen03, Reservedgreen04]; // The player UID is a 17 digit number found in the profile tab. // _reserved_uids = [ "XXXXXXXXXXXXXXXXX"/* Add Player Name Here */, "XXXXXXXXXXXXXXXXX"/* Add Player Name Here */, "XXXXXXXXXXXXXXXXX"/* Add Player Name Here */ ]; // Stores the connecting player's UID // _uid = getPlayerUID player; if ((player in _reserved_units)&& !(_uid in _reserved_uids)) then { titleText ["", "BLACK OUT"]; disableUserInput true; hint "You are in a reserved slot! You will be kicked to the lobby in 15 seconds!"; sleep 5; hint "You are in a reserved slot! You will be kicked to the lobby in 10 seconds!"; sleep 5; hint "You are in a reserved slot! You will be kicked to the lobby in 5 seconds!"; sleep 5; titleText ["", "BLACK IN"]; disableUserInput false; failMission "end1"; }; }; -
sarogahtyp started following dazholmes
-
dazholmes started following sarogahtyp
-
[Request] Whitelist
dazholmes replied to mackenzieexd's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yes i already changed that if i go into the slot without my uid it downloads mission takes me to the briefing then i can't do anything i cant backout or cancel but if my uid is in the code it allows me to play it's supposed to say kicking in 15 seconds then kick but it doesn't it just freezes you and that's it... -
[Request] Whitelist
dazholmes replied to mackenzieexd's topic in ARMA 3 - MISSION EDITING & SCRIPTING
if ((player in _reserved_units)&& !(_uid in _reserved_uids)) then { titleText ["", "BLACK OUT"]; disableUserInput true; hint "You are in a reserved slot! You will be kicked to the lobby in 15 seconds!"; sleep 5; hint "You are in a reserved slot! You will be kicked to the lobby in 10 seconds!"; sleep 5; hint "You are in a reserved slot! You will be kicked to the lobby in 5 seconds!"; sleep 5; titleText ["", "BLACK IN"]; disableUserInput false; "end1" call BIS_fnc_endMission; }; }; -
[Request] Whitelist
dazholmes replied to mackenzieexd's topic in ARMA 3 - MISSION EDITING & SCRIPTING
i replaced the code like you said it does same its not saying you will get kicked in 15 seconds but i cant backout also your code didn't change anything it's doing exact same but thanks anyways