- Joined
- Apr 1, 2013
- Messages
- 18
My friend and I have been slowly but surely translating a Korean ORPG, so that people can enjoy it in English, too.
We've come across a special quest that we're having a little trouble differentiating, as we're both novice's when it comes to Jass. Here is our dilemma:
call DialogSetMessage (Ix [1], "Question goes here")
set Ax [1] = DialogAddButtonWithHotkeyBJ (Ix [1], "Option [A]", 'A')
set Ax [2] = DialogAddButtonWithHotkeyBJ (Ix [1], "Option ", 'B')
set Ax [3] = DialogAddButtonWithHotkeyBJ (Ix [1], "Option [C]", 'C')
Our problem is, we don't know what the answer to this snippet is (I've cut out the text to make it simplified, the original question did not make sense in English, so we're going to change it to something relative to the quest later.)
There are also more questions, if anyone can explain the functions and how to determine the answers in the JASS code, it would be greatly appreciated.
call DialogSetMessage(Ix[2],"QUESTION?")
set Ax[4]=DialogAddButtonWithHotkeyBJ(Ix[2],"[A]",'A')
set Ax[5]=DialogAddButtonWithHotkeyBJ(Ix[2],"",'B')
set Ax[6]=DialogAddButtonWithHotkeyBJ(Ix[2],"[C]",'C')
call DialogSetMessage(Ix[3],"QUESTION")
set Ax[7]=DialogAddButtonWithHotkeyBJ(Ix[3],"[A]",'A')
set Ax[8]=DialogAddButtonWithHotkeyBJ(Ix[3],"",'B')
set Ax[9]=DialogAddButtonWithHotkeyBJ(Ix[3],"[C]",'C')
call DialogSetMessage(Ix[4],"QUESTION?")
set Ax[10]=DialogAddButtonWithHotkeyBJ(Ix[4],"[A]",'A')
set Ax[11]=DialogAddButtonWithHotkeyBJ(Ix[4],"",'B')
set Ax[12]=DialogAddButtonWithHotkeyBJ(Ix[4],"[C]",'C')
call DialogSetMessage(Ix[5],"QUESTION? ")
set Ax[13]=DialogAddButtonWithHotkeyBJ(Ix[5],"[A]",'A')
set Ax[14]=DialogAddButtonWithHotkeyBJ(Ix[5],"",'B')
set Ax[15]=DialogAddButtonWithHotkeyBJ(Ix[5],"[C]",'C')
call DialogSetMessage(Ix[6],"QUESTION?")
set Ax[16]=DialogAddButtonWithHotkeyBJ(Ix[6],"[A]",'A')
set Ax[17]=DialogAddButtonWithHotkeyBJ(Ix[6],"",'B')
set Ax[18]=DialogAddButtonWithHotkeyBJ(Ix[6],"[C]",'C')
We've come across a special quest that we're having a little trouble differentiating, as we're both novice's when it comes to Jass. Here is our dilemma:
call DialogSetMessage (Ix [1], "Question goes here")
set Ax [1] = DialogAddButtonWithHotkeyBJ (Ix [1], "Option [A]", 'A')
set Ax [2] = DialogAddButtonWithHotkeyBJ (Ix [1], "Option ", 'B')
set Ax [3] = DialogAddButtonWithHotkeyBJ (Ix [1], "Option [C]", 'C')
Our problem is, we don't know what the answer to this snippet is (I've cut out the text to make it simplified, the original question did not make sense in English, so we're going to change it to something relative to the quest later.)
There are also more questions, if anyone can explain the functions and how to determine the answers in the JASS code, it would be greatly appreciated.
call DialogSetMessage(Ix[2],"QUESTION?")
set Ax[4]=DialogAddButtonWithHotkeyBJ(Ix[2],"[A]",'A')
set Ax[5]=DialogAddButtonWithHotkeyBJ(Ix[2],"",'B')
set Ax[6]=DialogAddButtonWithHotkeyBJ(Ix[2],"[C]",'C')
call DialogSetMessage(Ix[3],"QUESTION")
set Ax[7]=DialogAddButtonWithHotkeyBJ(Ix[3],"[A]",'A')
set Ax[8]=DialogAddButtonWithHotkeyBJ(Ix[3],"",'B')
set Ax[9]=DialogAddButtonWithHotkeyBJ(Ix[3],"[C]",'C')
call DialogSetMessage(Ix[4],"QUESTION?")
set Ax[10]=DialogAddButtonWithHotkeyBJ(Ix[4],"[A]",'A')
set Ax[11]=DialogAddButtonWithHotkeyBJ(Ix[4],"",'B')
set Ax[12]=DialogAddButtonWithHotkeyBJ(Ix[4],"[C]",'C')
call DialogSetMessage(Ix[5],"QUESTION? ")
set Ax[13]=DialogAddButtonWithHotkeyBJ(Ix[5],"[A]",'A')
set Ax[14]=DialogAddButtonWithHotkeyBJ(Ix[5],"",'B')
set Ax[15]=DialogAddButtonWithHotkeyBJ(Ix[5],"[C]",'C')
call DialogSetMessage(Ix[6],"QUESTION?")
set Ax[16]=DialogAddButtonWithHotkeyBJ(Ix[6],"[A]",'A')
set Ax[17]=DialogAddButtonWithHotkeyBJ(Ix[6],"",'B')
set Ax[18]=DialogAddButtonWithHotkeyBJ(Ix[6],"[C]",'C')