Never done a BOI Quiz before but it wouldn't be hard to make it work just like warning of wisdom bot. What time is the event now-an-days anyway? I remember seeing it one time when I was finding offsets but don't remember anymore.Quote:
The rar file contains the addresses for the questions of BOI Quiz event. You should replace either one of those with the underlined address:
From BoI_Quiz_Helper.BOIQuiz by MyTime420Code:// Question [B]public static int pQuiz_Question = 0x400000 + [U]0x0107DF04[/U]; [/B] //4byte, Points to name with 0 offset // Answer A public static int pQuiz_AnswerA = 0x400000 + 0x01077568; //4byte, Points to name with 7 offset (7 offset removes the "A " prefix to answer) // Answer B public static int pQuiz_AnswerB = 0x400000 + 0x01077B98; //4byte, Points to name with 7 offset // Answer C public static int pQuiz_AnswerC = 0x400000 + 0x010781C8; //4byte, Had a 14 offset when first viewed // Answer D public static int pQuiz_AnswerD = 0x400000 + 0x010787f8; //4byte, Points to name with 7 offset public string LastQuestion;
You might want to find the addresses for Answer A,B,C, and D as well to ensure the correct behavior. If you reuse a quiz helper that doesnt make use of the answers' addresses, modifying the questions' address should make it work :D
Cheers,