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

jacket13

so this would be a cheater right?

Recommended Posts

I was looking through the new battle eye features and noticed this :

cheatk.png

so according to the new features this log keeps track who sends commands to my server through external means.

Someone is spawning something I suppose? if so then I can just ban him :)

Share this post


Link to post
Share on other sites

Yeah that's a hack but someone is not spawning anything. Either all of your players got teleported somewhere or mass killed, I looked at this specific script and it would appear that they were probably mass killed.

  • Like 2

Share this post


Link to post
Share on other sites

Yeah that's a hack but someone is not spawning anything. Either all of your players got teleported somewhere or mass killed, I looked at this specific script and it would appear that they were probably mass killed.

I need confirmation on that.

Share this post


Link to post
Share on other sites

I need confirmation on that.

Here, you should look into scripts for your self so you can block them, if you know how to. I mean, look at how poorly most servers are maintained when it comes to restricting scripts, like this one. Adding 5 "TTT5NamePl" should do the trick by kicking any player (not using a bypass) that would be harmed by this code. Looks like this is a teleport script; It's been a while since I looked at this so I forgot, it was one or the other.

This is the part where variable are defined. Notice TTT5derCode is setting the player position.


switch (TTT5OptionNR) do
{
case 0: // PlayMusic
{
// htelepos = The target teleport position
TTT5NamePl = teleTarget;
publicVariable "htelepos";
sleep 0.3;
TTT5derCode = "(vehicle player) setpos [htelepos select 0, htelepos select 1, 0];";
};

This is the part which your server logged:


if (TTT5NamePl == "") then
{
hijExecString = TTT5derCode;
}
else
{
hijExecString = "if (name vehicle player == TTT5NamePl) then {_xcompiled = compile TTT5derCode;call _xcompiled;};";
};

I hope you can understand this answer.

Share this post


Link to post
Share on other sites

×