Quote:
Originally Posted by Ohai_Mash
Where can i put the file? Also about the Boi bot source where can i put all the files inside the rar?
|
The rar file contains the addresses for the questions of BOI Quiz event. You should replace either one of those with the underlined address:
Code:
// 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;
From BoI_Quiz_Helper.BOIQuiz by MyTime420
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,