Jump to content

Forums Announcement

Read-Only Mode for Announcements & Changelogs

Dear Survivors, we'd like to inform you that this forum will transition to read-only mode. From now on, it will serve exclusively as a platform for official announcements and changelogs.

For all community discussions, debates, and engagement, we encourage you to join us on our social media platforms: Discord, Twitter/X, Facebook.

Thank you for being a valued part of our community. We look forward to connecting with you on our other channels!

Stay safe out there,
Your DayZ Team

Draay (DayZ)

Members
  • Content Count

    218
  • Joined

  • Last visited

Everything posted by Draay (DayZ)

  1. Just did a vehicle cleanup. All exploded vehicles have been deleted and spawned around 20. Total vehicle count: 100
  2. About to hit 200 forum members. We would like to open more servers with different maps but we need dedicated players and donations :) Not to mention we will be looking for more staff if that happens (18+ only, may need to prove it).
  3. Draay (DayZ)

    Looking for server

    You can always join survival union's server :) Click the links in my signature. There are several things you will enjoy ;)
  4. Draay (DayZ)

    Custom deathmessage

    Hey guys, So i've customized the deathmessage to hide who killed who but the death message is sent by the killer and still gives away the killer. EG: (OPFOR DRAY): Player was killed with weapon. I want to remove the (OPFOR DRAY): bit or customize it so it hides the killer there too. Here is the code: private["_characterID","_minutes","_newObject","_playerID","_key","_playerName","_playerID","_myGroup","_group","_victim", "_killer", "_weapon", "_message", "_distance","_loc_message","_victimName","_killerName"]; //[unit, weapon, muzzle, mode, ammo, magazine, projectile] _characterID = _this select 0; _minutes = _this select 1; _newObject = _this select 2; _playerID = _this select 3; _playerName = _this select 4; _victim removeAllEventHandlers "MPHit"; _victim = _this select 2; _victimName = _victim getVariable["bodyName", "nil"]; _killer = _victim getVariable["AttackedBy", "nil"]; _killerName = _victim getVariable["AttackedByName", "nil"]; // when a zombie kills a player _killer, _killerName and _weapon will be "nil" // we can use this to determine a zombie kill and send a customized message for that. right now no killmsg means it was a zombie. if (_killerName != "nil") then { _weapon = _victim getVariable["AttackedByWeapon", "nil"]; _distance = _victim getVariable["AttackedFromDistance", "nil"]; if (_victimName == _killerName) then { _message = format["%1 killed himself",_victimName]; _loc_message = format["PKILL: %1 killed himself", _victimName]; } else { _message = format["%1 was killed by %2 with weapon %3",_victimName, _killerName, _weapon]; _loc_message = format["PKILL: %1 was killed by %2 with weapon %3 from %4m", _victimName, _killerName, _weapon, _distance]; }; diag_log _loc_message; [nil, nil, rspawn, [_killer, _message], { (_this select 0) globalChat (_this select 1) }] call RE; //[nil, nil, rHINT, _message] call RE; // Cleanup _victim setVariable["AttackedBy", "nil", true]; _victim setVariable["AttackedByName", "nil", true]; _victim setVariable["AttackedByWeapon", "nil", true]; _victim setVariable["AttackedFromDistance", "nil", true]; }; dayz_disco = dayz_disco - [_playerID]; _newObject setVariable["processedDeath",time]; /* diag_log ("DW_DEBUG: (isnil _characterID): " + str(isnil "_characterID")); if (isnil "_characterID") then { diag_log ("DW_DEBUG: _newObject: " + str(_newObject)); }; */ if (typeName _minutes == "STRING") then { _minutes = parseNumber _minutes; }; if (_characterID != "0") then { _key = format["CHILD:202:%1:%2:",_characterID,_minutes]; //diag_log ("HIVE: WRITE: "+ str(_key)); _key call server_hiveWrite; } else { deleteVehicle _newObject; }; diag_log ("PDEATH: Player Died " + _playerID); /* _eh = [_newObject] spawn { _body = _this select 0; _method = _body getVariable["deathType","unknown"]; _name = _body getVariable["bodyName","unknown"]; waitUntil{!isPlayer _body;sleep 1}; _body setVariable["deathType",_method,true]; _body setVariable["bodyName",_name,true]; diag_log ("PDEATH: Player Left Body " + _name); }; */ //dead_bodyCleanup set [count dead_bodyCleanup,_newObject];
  5. Draay (DayZ)

    Custom deathmessage

    Anyone else know how to combat this?
  6. VertHosting is my 3rd host and i can honestly say that i don't think i'm changing next month. After a rocky start trying to find a good host i've finally come across VertHosting. Support: There are plenty of ways to contact them and they are always there to help and never talked down to me. There was an issue with my server but they never fobbed me off with excuses and never tried to blame me like previous hosts. Connectivity: Since i've bought a server with these guys, everyone's ping has dropped by 30ms. Great connection and no downtime. Services: I like the fact that i can purchase the teamspeak and dayz server from the same place, i will possibly be buying a VPS or Minecraft server in future. TLDR: I'm glad i found verthosting, you have all my beans.
  7. Draay (DayZ)

    Camo Nets/Tarpaulin

    You have my beans.
  8. Draay (DayZ)

    Custom deathmessage

    If it can't be done i might as well just disable it. It would be nice if it was possible as then people still know someone was killed just not by whom.
  9. Draay (DayZ)

    Scheduler issue

    Hey guys, I'm a little confused as to why the scheduler isn't working as it should. I've added everything to the config file and edited the scheduler after BEC was installed by the host. BEC starts up fine as admins.xml and commands.xml are loading but not the scheduler. If anyone could help me sort this issue out, i would be really grateful as nor i or the host can see the issue. Here is what i have in the config.cfg: [Bec] Ip = <removed> Port = 2332 BePath = C:\TCAFiles\Users\Username\105\Bliss\BattlEye\ LogDir = Server1 Admins = Admins.xml Commands = Commands.xml Scheduler = Scheduler.xml And here is the scheduler: <?xml version="1.0"?> <!-- This file is only provided as an example file and is not practical to use in real life. BE Commands supported by the scheduler system are: say -1 some text loadbans loadscripts loadevents writebans #shutdown #restart #reassign #lock #unlock #mission filename (without the .pbo extension) --> -<Scheduler> <!-- *** RESTARTS *** --> <!-- 5 min to the 06:00 restart --> <job id="0"> <time>05:55</time> <delay>000000</delay> <day>1,2,3,4,5,6,7</day> <loop>0</loop> <cmd>say -1 This server will restart in 5 min.</cmd> <cmdtype>0</cmdtype> </job> <!-- 5 min to the 12:00 restart --> <job id="1"> <time>11:55</time> <delay>000000</delay> <day>1,2,3,4,5,6,7</day> <loop>0</loop> <cmd>say -1 This server will restart in 5 min.</cmd> <cmdtype>0</cmdtype> </job> <!-- 5 min to the 18:00 restart --> <job id="2"> <time>17:55</time> <delay>000000</delay> <day>1,2,3,4,5,6,7</day> <loop>0</loop> <cmd>say -1 This server will restart in 5 min.</cmd> <cmdtype>0</cmdtype> </job> <!-- 5 min to the 00:00 restart --> <job id="3"> <time>23:55</time> <delay>000000</delay> <day>1,2,3,4,5,6,7</day> <loop>0</loop> <cmd>say -1 This server will restart in 5 min.</cmd> <cmdtype>0</cmdtype> </job> <!-- Scheduler Test --> <job id="4"> <time>000100</time> <delay>000000</delay> <day>1,2,3,4,5,6,7</day> <loop>1</loop> <cmd>say -1 If you see this every 1 minute, Schedules are working.</cmd> <cmdtype>0</cmdtype> </job> </Scheduler>
  10. You are more than welcome to join. All details are on the first post, I will pm you the password!
  11. Draay (DayZ)

    zombies attack animals

    I once shot a sheep and the zombies were attracted to it.
  12. Draay (DayZ)

    Admin cheats?

    I would recommend exactly what blink said. If it's a private hive there is nothing you can do, just find a community with admins that don't abuse. On the other hand if it's a public hive then report it when you get some evidence. Eitherway i would find somewhere else to play :)
  13. Draay (DayZ)

    Scheduler issue

    I'll get back to you but it makes sense. EDIT: You're a life saver.
  14. Don't apply to join the community if you're a script kiddie, we will find and ban you then submit your GUID to the community banlist. We have admins constantly on the lookout for these sort of guys and anyone affiliated with them. Don't waste our time or your own. On the other hand, i'll be adding some more buildings soon and need some ideas where.
  15. Draay (DayZ)

    I want to join a clan

    Join Survival Union :) You won't be disappointed. Check out the links in my signature.
  16. Thread updated: (Added) We have about 3-4 active groups of 5+ members (in each group) and some are taking control of cities, we would love to encourage you to bring your groups in to the server. Hope some more guys join we've been having a good time on the server.
  17. Why don't you join our private hive server? We are currently helping out groups take off on the server. We have about 3-4 active groups of 5+. Elektro has been taken over by one of the groups (chaos) and they are a group of bandits. It's a load of fun. Join up buddy! PM me for details or check the links on my signature.
  18. Had a load of fun with everyone. Had a least 25+ on the server for a couple of hours. There a several groups on the server now and things are starting to take off, join up! There were 5 in-game events today too!
  19. Draay (DayZ)

    Scheduler issue

    verthosting.com
  20. Draay (DayZ)

    Scheduler issue

    Ignore the - it's something to close sections and is not there on the actual file. The restarts were being handled by the scheduler but as it's not working i'm using the scheduled tasks in the control panel (there are no warnings though and it annoys the players). All the files are inside \BEC\Config\ and these are the files currently in there: Admins.xml BadNames.txt BadWords.txt Commands.xml Config.cfg Scheduler.xml WhiteList_Example.txt In the Config.cfg the scheduler is indeed capitalized as shown and so are the files above.
  21. Draay (DayZ)

    Chaos - Bandit Group (Recruiting)

    Both PM'ed. Still in need of more players.
  22. Draay (DayZ)

    Chaos - Bandit Group (Recruiting)

    Going to love every single bit of this..
  23. Draay (DayZ)

    Should I start playing?

    Not all servers are like that. Try playing on our private hive, check the links in my description. You're more than welcome to bring your friends too. If you're interested i will PM you the server password. If you ask someone to help you and they are not busy, they normally do.
  24. Draay (DayZ)

    looking for a family

    Take a look at the links in my signature :)
×