mirror of
https://github.com/islehorse/HISP.git
synced 2025-07-17 04:21:32 +12:00
Add Real Time Riddles
This commit is contained in:
parent
5308b53c89
commit
679b6efac8
7 changed files with 188 additions and 23 deletions
|
@ -61,7 +61,8 @@ namespace HISP.Game
|
|||
// Events : Real Time Riddles
|
||||
public static string EventStartRealTimeRiddleFormat;
|
||||
public static string EventEndRealTimeRiddle;
|
||||
public static string EventWonRealTimeRiddleFormat;
|
||||
public static string EventWonRealTimeRiddleForOthersFormat;
|
||||
public static string EventWonRealTimeRiddleForYouFormat;
|
||||
|
||||
// MultiHorses
|
||||
public static string OtherPlayersHere;
|
||||
|
@ -1100,6 +1101,20 @@ namespace HISP.Game
|
|||
// Click
|
||||
public static string NothingInterestingHere;
|
||||
|
||||
// Event : Real Time Riddle
|
||||
public static string FormatEventRealTimeRiddleStart(string riddleText)
|
||||
{
|
||||
return EventStartRealTimeRiddleFormat.Replace("%RIDDLETEXT%", riddleText);
|
||||
}
|
||||
public static string FormatEventRealTimeRiddleWonForOthers(string winnerUserName)
|
||||
{
|
||||
return EventWonRealTimeRiddleForOthersFormat.Replace("%PLAYERNAME%", winnerUserName);
|
||||
}
|
||||
public static string FormatEventRealTimeRiddleWonForYou(int prize)
|
||||
{
|
||||
return EventWonRealTimeRiddleForYouFormat.Replace("%PRIZE%", prize.ToString("N0", CultureInfo.InvariantCulture));
|
||||
}
|
||||
|
||||
// Mute Command
|
||||
public static string FormatStoppedMutingPlayer(string username)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue