add real time quiz.

This commit is contained in:
SilicaAndPina 2021-04-16 03:18:49 +12:00
parent 4e8ad17d1c
commit 8069dd8578
7 changed files with 135 additions and 12 deletions

View file

@ -1144,7 +1144,7 @@ namespace HISP.Game
// Event : Real Time Quiz
public static string FormatEventRealTimeQuizMeta(int questionNo, int totalMistakes, string category, string question)
{
return EventMetaRealTimeQuizFormat.Replace("%QUESTIONNUMBER%", questionNo.ToString()).Replace("%MISTAKES%", questionNo.ToString()).Replace("%CATEGORY%", category).Replace("%QUESTIONTEXT%", question);
return EventMetaRealTimeQuizFormat.Replace("%QUESTIONNUMBER%", questionNo.ToString()).Replace("%MISTAKES%", totalMistakes.ToString()).Replace("%CATEGORY%", category).Replace("%QUESTIONTEXT%", question);
}
public static string FormatEventRealTimeQuizBonus(int bonusMoney)
{