* Graft from https://github.com/space-wizards/space-station-14/pull/3049
* 'openahelp' command
* Add AHelp into escape menu
* Add a way to ahelp a player from the kick window
* bwoink: XAMLify, bugfix, etc.
* Rename the kick/bwoink window the Player Actions Panel
* Add the bwoink sound y'all know and love
adminhelp.ogg taken from d775e1ac80/sound/effects/adminhelp.ogg
(available in master, therefore see master license: "All assets including icons and sound are under a Creative Commons 3.0 BY-SA license unless otherwise indicated.")
"Changed the adminhelpsound to some creative commons sound I pinched. Until somebody can get a better one. I'm sick of MAAAAAAAAOOOOOOW."
Actual source is https://freesound.org/people/martian/sounds/19261/ (CC0)
The sound had been reversed and the volume altered.
* Actually play the bwoink sound on receiving an ahelp that you didn't send
18 lines
832 B
XML
18 lines
832 B
XML
<SS14Window
|
|
xmlns="https://spacestation14.io"
|
|
xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls"
|
|
Title="{Loc admin-kick-window-title}" MinSize="425 272">
|
|
<BoxContainer Orientation="Vertical">
|
|
<BoxContainer Orientation="Horizontal">
|
|
<Label Text="{Loc Reason}" MinWidth="100" />
|
|
<Control MinWidth="50" />
|
|
<LineEdit Name="ReasonLine" MinWidth="100" HorizontalExpand="True" />
|
|
</BoxContainer>
|
|
<cc:PlayerListControl Name="PlayerList" VerticalExpand="True" />
|
|
<BoxContainer Orientation="Horizontal">
|
|
<Button Name="SubmitButton" Text="{Loc admin-kick-window-kick-text}" />
|
|
<Button Name="SubmitAHButton" Text="{Loc admin-kick-window-ahelp-text}" />
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</SS14Window>
|