Skip to content

Commit

Permalink
update contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
n8m4re committed May 25, 2018
1 parent aed28c2 commit ad512d9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
Expand Up @@ -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;
}
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -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

0 comments on commit ad512d9

Please sign in to comment.