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

Tisho

Members
  • Content Count

    1
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Tisho

  • Rank
    On the Coast

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Tisho

    init.c coder required

    You can make a list of strings and check if the each connected player is in the list then spawn them at a desired location Here's an example code: const int MaxSpecialPlayers=10; //number of players std::string SpecialPlayers[MaxSpecialPlayers]={ steam ids here seperated by comas }; for(unsigned char i=0;i<MaxSpecialPlayers;i++) { if(connected player==SpecialPlayers) { vector pos=coordinates of the place you want the player to spawn; Entity playerEnt = GetGame().CreatePlayer(identity, characterName, pos, 0, "NONE"); } }
×