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

philippj

Members
  • Content Count

    253
  • Joined

  • Last visited

Everything posted by philippj

  1. philippj

    Admin Script ?!!!

    You are running BEC and didn't disable the global chat restriction. With that shit enabled you get kicked for writing in the global chat and since the game currently has no other chat channels then global, everyone gets kicked when sending chat messages.
  2. philippj

    Admin For Dayz Standalone (Works)

    Use the GitHub version. It is possible to target players with spaces in their names for quite some time now.
  3. OmegaSC version 0.32 has been release including a lot of updates including and a persistence recovery mode. Omega has been enhanced with various features including hived whitelisting.
  4. philippj

    Help in scripting

    None that i know of
  5. philippj

    Help in scripting

    Thhe executing player is searched by a simple name check. Set your in-game name via launch parameters to something that is not survivor and you are good to go
  6. philippj

    Spawn Tents already deployed with inventory in them

    You can access the inventory of the spawned object with GetInventory() and create items in it with GetInventory().CreateInInventory()
  7. philippj

    Help in scripting

    Are you talking about the target player or the executing player not being recognized correctly? When targeting a specific player you have to include his survivor index, if the target has not set his name via startup parameters. eg. /kill Survivor (1)
  8. https://www.reddit.com/r/CFTools/comments/9tuel0/cfomegasc_setup/
  9. philippj

    In game time

    %GAMETIME% in your trusty admintool or GetGame().GetWorld().GetDate(out int year, out int month, out int day, out int hour, out int minute); in EnScript (scripts/3_Game/Global/World.c) /** \brief Get actual ingame world time \param year \param month in range <1, 12> \param day in range <1, 31> \param hour in range <0, 23> \param minute in range <0, 59> @code int year, month, day, hour, minute; GetGame().GetWorld().GetDate(year, month, day, hour, minute); @endcode */ proto void GetDate(out int year, out int month, out int day, out int hour, out int minute);
  10. New OmegaSC version 0.22 has been released including detection for every possible server crash. Omega has been enhanced by brand new e-mail alerts, geo-blocking and fully customizable kick messages.
  11. philippj

    Admin For Dayz Standalone (Works)

    Version is working and you only need to edit the init.c anyway.
  12. philippj

    Admin For Dayz Standalone (Works)

    And thats the upstream version of it. https://github.com/cf-tools/omega-scripts/blob/master/admcmd.c
  13. philippj

    Kill log

    https://gist.github.com/philippj/8d6473ca544b78b6b701c816d4d9e0bb >>> construct_bi_uid(76561198084367441) '2XAdLQ7Sr0EYZXmMRn7pC8emM5z0JhHAMCvk4mQFuOE=' Your implementation is most likely wrong.
  14. philippj

    Kill log

    Base64(Sha256(SteamID64))
  15. philippj

    Admin Tools Help

    https://omegax.cftools.de Log in and click on My Profile and click on Show IDs @Violt
  16. philippj

    Admin Tools Help

    The way EnforceScript handles array definitions are misterious. Just define every ID in one line and you should be fine.
  17. philippj

    Admin Tools Help

    Yeah thats my script. You just need to modify bool IsPlayerAnAdmin(PlayerBase player) { bool found = false; for ( int i = 0; i < admins.Count(); ++i ) { if(player.GetIdentity().GetId() == admins[i]) { found=true; break; } } return found; } To take SteamIDs instead of BI UIDs. (GetIdentity().GetPlainId()) On a side note: Copyright laws completely apply to the script I just dont give a f*** about what is done with it
  18. philippj

    Kill log

    You generate BI UIDs for all SteamIDs currently in use and save them in a database. If you want to reverse one you simply look it up. My complete <SteamID, BI UID, BE GUID> database has around 1.3 billion entries and is around 400gb in size. Takes ~0.3s to query.
  19. philippj

    Can't connect DaRT

    Neither manually activating RCon nor modifying the port is required
  20. OmegaSC just offers additional functionality. You still have to set your service up via the configuration page. If you have any further questions please use one of the official channels (SupportCenter & Discord or private forum message). This thread is only meant to be an "advertisement".
  21. Guides: OmegaSC: https://www.reddit.com/r/CFTools/comments/9tuel0/cfomegasc_setup/ Whitelisting: https://www.reddit.com/r/CFTools/comments/9vt9qk/whitelisting/ BattlEye RCon setup: https://www.reddit.com/r/CFTools/comments/9wf48m/battleye_rcon_setup/
  22. philippj

    Auto Restart

    DayZServer\mpmissions\dayzOffline.chernarusplus\db\economy.xml Modify dynamic, building and vehicles to your liking
  23. philippj

    BEC Scheduler

    No there isn't
  24. philippj

    Gaming Deluxe Server

    Every server has the capability of being modded. You should consult your GSP support to find out their stance on adding modding support to their system.
  25. philippj

    Auto Restart

    MOTD=Message of the day => Messages being displayed in an interval after the player has joined (Done via server configuration) Player announcements => Sent to all players when player connects (RCON tools) Welcome messages => Private message when player has connected (RCON tools) Sooo. Which one?
×