diff --git a/Missions/DayZCommunityOfflineMode.ChernarusPlus/modules/WelcomeManager.c b/Missions/DayZCommunityOfflineMode.ChernarusPlus/modules/WelcomeManager.c index 070ea66f..3984d313 100644 --- a/Missions/DayZCommunityOfflineMode.ChernarusPlus/modules/WelcomeManager.c +++ b/Missions/DayZCommunityOfflineMode.ChernarusPlus/modules/WelcomeManager.c @@ -18,7 +18,20 @@ class WelcomeManager extends UIScriptedMenu m_InfoBox = TextWidget.Cast( layoutRoot.FindAnyWidget( "infotext" ) ); m_BtnOk = ButtonWidget.Cast( layoutRoot.FindAnyWidget( "btn_ok" ) ); - m_InfoBox.SetText( "Enjoy the DayZ Community Offline Mode.\n \n \nThe current game build is still ALPHA!\nCrashes and bugs can occur.\nNot all 0.63 features are impletemented yet!\nProvide feedback on the game via feedback.bistudio.com\n \n \nCreated by Arkensor.\nContributions from DuhOneZ, Watchman, n8m4re, gallexme and DannyDog" ); + + string infotext; + + infotext = "Enjoy the DayZ Community Offline Mode."; + infotext += "\n \n \nThe current game build is still ALPHA!"; + infotext += "\nCrashes and bugs can occur."; + infotext += "\nNot all 0.63 features are impletemented yet!"; + infotext += "\nProvide feedback on the game via feedback.bistudio.com"; + infotext += "\n \n \nCreated by Arkensor."; + infotext += "\n \n \nContributions from:"; + infotext += "\n DuhOneZ, Watchman, n8m4re, wriley, gallexme and DannyDo"; + + + m_InfoBox.SetText( infotext ); return layoutRoot; } diff --git a/README.md b/README.md index 96d9447c..4ef42fb0 100644 --- a/README.md +++ b/README.md @@ -92,3 +92,4 @@ You find your logfiles here: ```Press WINDOWS + R -> Type in %localappdata%/Day * [gallexme](https://github.com/gallexme) - Suggestion for the mission based version * [DannyDog](https://github.com/DannyDog) - Code snippets, Object Editor and Updated camera tools * [n8m4re](https://github.com/n8m4re) - Code: SaveManager +* [wriley](https://github.com/wriley) - Code snippets beards \ No newline at end of file