Kickassjoe Posted October 14, 2006 Posted October 14, 2006 (edited) I was tired of gaming, so I spent my night (notice how I said night, I did it all tonight. ) making this, it is done enough to use, I didn't make it so answers would be in here, but that wouldn't be too hard, something to do tomorrow! Here is the source for the "Maker" expandcollapse popup;Script Made By KickassJoe #include <Array.au3> #include <GuiConstants.au3> ;make the arrays $q = _ArrayCreate(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21) $q2 = _ArrayCreate(1,2,3,4,5,6,7,8,9,10) $ql1 = _ArrayCreate(1,2,3,4,5,6) $ql2 = _ArrayCreate(1,2,3,4,5,6) $ql3 = _ArrayCreate(1,2,3,4,5,6) $ql4 = _ArrayCreate(1,2,3,4,5,6) $ql5 = _ArrayCreate(1,2,3,4,5,6) $c = _ArrayCreate(1,2,3,4,5,6) $a1 = _ArrayCreate(1,2,3,4,5,6) $a2 = _ArrayCreate(1,2,3,4,5,6) $a3 = _ArrayCreate(1,2,3,4,5,6) $a4 = _ArrayCreate(1,2,3,4,5,6) $a5 = _ArrayCreate(1,2,3,4,5,6) $A1 = _ArrayCreate(1,2,3,4,5,6) $A2 = _ArrayCreate(1,2,3,4,5,6) $A3 = _ArrayCreate(1,2,3,4,5,6) $A4 = _ArrayCreate(1,2,3,4,5,6) $A5 = _ArrayCreate(1,2,3,4,5,6) $Q1 = _ArrayCreate(1,2,3,4,5,6) $Q2 = _ArrayCreate(1,2,3,4,5,6) $Q3 = _ArrayCreate(1,2,3,4,5,6) $Q4 = _ArrayCreate(1,2,3,4,5,6) $Q5 = _ArrayCreate(1,2,3,4,5,6) $qc = _ArrayCreate(1,2,3,4,5,6) $cat = _ArrayCreate(1,2,3,4,5,6) $q1 = _ArrayCreate(1,2,3,4,5,6) $q2 = _ArrayCreate(1,2,3,4,5,6) $q3 = _ArrayCreate(1,2,3,4,5,6) $q4 = _ArrayCreate(1,2,3,4,5,6) $q5 = _ArrayCreate(1,2,3,4,5,6) $MainWindow = GuiCreate("Jeopardy Maker", 1010, 650,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS)) ;GUISetState(@SW_DISABLE) ;Pictures $BakPick = GUICtrlCreatePic("data\Title.bmp",0,0,1010,650) GuiCtrlSetState(-1,$GUI_DISABLE) ;GUISetState(@SW_ENABLE) $filename = GUICtrlCreateInput("file to save to", 80,10,80,20) ;Categories ;GUISetState(@SW_DISABLE) For $i = 1 to 5 $height = $i * 50- 10 $c[$i] = GuiCtrlCreateLabel("Category # " & $i & "?", 80, $height, 80, 20) Next For $i = 1 to 5 $ql1[$i] = GUICtrlCreateLabel("Q. " & $i & "of Cat. 1", 300, $i * 50 - 10, 80, 20) Next ;Category 2 Questions $ql2[1] = GuiCtrlCreateLabel("Q. #1 of Cat. # 2", 500, 40, 80, 20) $ql2[2] = GuiCtrlCreateLabel("Q. #2 of Cat. # 2", 500, 90, 80, 20) $ql2[3] = GuiCtrlCreateLabel("Q. #3 of Cat. # 2", 500, 140, 80, 20) $ql2[4] = GuiCtrlCreateLabel("Q. #4 of Cat. # 2", 500, 190, 80, 20) $ql2[5] = GuiCtrlCreateLabel("Q. #5 of Cat. # 2", 500, 240, 80, 20) ;Category 3 Questions $ql3[1] = GuiCtrlCreateLabel("Q. #1 of Cat. # 3", 700, 40, 80, 20) $ql3[2] = GuiCtrlCreateLabel("Q. #2 of Cat. # 3", 700, 90, 80, 20) $ql3[3] = GuiCtrlCreateLabel("Q. #3 of Cat. # 3", 700, 140, 80, 20) $ql3[4] = GuiCtrlCreateLabel("Q. #4 of Cat. # 3", 700, 190, 80, 20) $ql3[5] = GuiCtrlCreateLabel("Q. #5 of Cat. # 3", 700, 240, 80, 20) ;Category 4 Questions $ql4[1] = GuiCtrlCreateLabel("Q. #1 of Cat. # 4", 380, 340, 80, 20) $ql4[2] = GuiCtrlCreateLabel("Q. #2 of Cat. # 4", 380, 390, 80, 20) $ql4[3] = GuiCtrlCreateLabel("Q. #3 of Cat. # 4", 380, 440, 80, 20) $ql4[4] = GuiCtrlCreateLabel("Q. #4 of Cat. # 4", 380, 490, 80, 20) $ql4[5] = GuiCtrlCreateLabel("Q. #5 of Cat. # 4", 380, 540, 80, 20) ;Category 5 Questions $ql5[1] = GuiCtrlCreateLabel("Q. #1 of Cat. # 5", 620, 340, 80, 20) $ql5[2] = GuiCtrlCreateLabel("Q. #2 of Cat. # 5", 620, 390, 80, 20) $ql5[3] = GuiCtrlCreateLabel("Q. #3 of Cat. # 5", 620, 440, 80, 20) $ql5[4] = GuiCtrlCreateLabel("Q. #4 of Cat. # 5", 620, 490, 80, 20) $ql5[5] = GuiCtrlCreateLabel("Q. #5 of Cat. # 5", 620, 540, 80, 20) ;Word Colors For $i = 1 to 5 Step 1 GUICtrlSetBkColor($ql1[$i], $GUI_BKCOLOR_TRANSPARENT) GUICtrlSetBkColor($ql2[$i], $GUI_BKCOLOR_TRANSPARENT) GUICtrlSetBkColor($ql3[$i], $GUI_BKCOLOR_TRANSPARENT) GUICtrlSetBkColor($ql4[$i], $GUI_BKCOLOR_TRANSPARENT) GUICtrlSetBkColor($ql5[$i], $GUI_BKCOLOR_TRANSPARENT) GUICtrlSetBkColor($c[$i], $GUI_BKCOLOR_TRANSPARENT) Next ;Questions $qc[1] = GuiCtrlCreateInput("Category1", 175, 40, 80, 20) $qc[2] = GuiCtrlCreateInput("Category2", 175, 90, 80, 20) $qc[3] = GuiCtrlCreateInput("Category3", 175, 140, 80, 20) $qc[4] = GuiCtrlCreateInput("Category4", 175, 190, 80, 20) $qc[5] = GuiCtrlCreateInput("Category5", 175, 240, 80, 20) $q1[1] = GuiCtrlCreateInput("Q1, C1", 400, 40, 80, 20) $q1[2] = GuiCtrlCreateInput("Q2, C1", 400, 90, 80, 20) $q1[3] = GuiCtrlCreateInput("Q3, C1", 400, 140, 80, 20) $q1[4] = GuiCtrlCreateInput("Q4, C1", 400, 190, 80, 20) $q1[5] = GuiCtrlCreateInput("Q5, C1", 400, 240, 80, 20) $q2[1] = GuiCtrlCreateInput("Q1, C2", 600, 40, 80, 20) $q2[2] = GuiCtrlCreateInput("Q2, C2", 600, 90, 80, 20) $q2[3] = GuiCtrlCreateInput("Q3, C2", 600, 140, 80, 20) $q2[4] = GuiCtrlCreateInput("Q4, C2", 600, 190, 80, 20) $q2[5] = GuiCtrlCreateInput("Q5, C2", 600, 240, 80, 20) $q3[1] = GuiCtrlCreateInput("Q1, C3", 800, 40, 80, 20) $q3[2] = GuiCtrlCreateInput("Q2, C3", 800, 90, 80, 20) $q3[3] = GuiCtrlCreateInput("Q3, C3", 800, 140, 80, 20) $q3[4] = GuiCtrlCreateInput("Q4, C3", 800, 190, 80, 20) $q3[5] = GuiCtrlCreateInput("Q5, C3", 800, 240, 80, 20) $q4[1] = GuiCtrlCreateInput("Q1, C4", 480, 340, 80, 20) $q4[2] = GuiCtrlCreateInput("Q2, C4", 480, 390, 80, 20) $q4[3] = GuiCtrlCreateInput("Q3, C4", 480, 440, 80, 20) $q4[4] = GuiCtrlCreateInput("Q4, C4", 480, 490, 80, 20) $q4[5] = GuiCtrlCreateInput("Q5, C4", 480, 540, 80, 20) $q5[1] = GuiCtrlCreateInput("Q1, C5", 720, 340, 80, 20) $q5[2] = GuiCtrlCreateInput("Q2, C5", 720, 390, 80, 20) $q5[3] = GuiCtrlCreateInput("Q3, C5", 720, 440, 80, 20) $q5[4] = GuiCtrlCreateInput("Q4, C5", 720, 490, 80, 20) $q5[5] = GuiCtrlCreateInput("Q5, C5", 720, 540, 80, 20) ;Answers $a1[1] = GUICtrlCreateInput("Answer Q1,C1", 400, 60, 80, 20) $a1[2] = GUICtrlCreateInput("Answer Q2,C1", 400, 110, 80, 20) $a1[3] = GUICtrlCreateInput("Answer Q3,C1", 400, 160, 80, 20) $a1[4] = GUICtrlCreateInput("Answer Q4,C1", 400, 210, 80, 20) $a1[5] = GUICtrlCreateInput("Answer Q5,C1", 400, 260, 80, 20) $a2[1] = GUICtrlCreateInput("Answer Q1, C2", 600, 60,80,20) $a2[2] = GUICtrlCreateInput("Answer Q2, C2", 600, 110,80,20) $a2[3] = GUICtrlCreateInput("Answer Q3, C2", 600, 160,80,20) $a2[4] = GUICtrlCreateInput("Answer Q4, C2", 600, 210,80,20) $a2[5] = GUICtrlCreateInput("Answer Q5, C2", 600, 260,80,20) $a3[1] = GUICtrlCreateInput("Answer Q1, C3", 800, 60,80,20) $a3[2] = GUICtrlCreateInput("Answer Q2, C3", 800, 60,80,20) $a3[3] = GUICtrlCreateInput("Answer Q3, C3", 800, 60,80,20) $a3[4] = GUICtrlCreateInput("Answer Q4, C3", 800, 60,80,20) $a3[5] = GUICtrlCreateInput("Answer Q5, C3", 800, 60,80,20) $a4[1] = GUICtrlCreateInput("Answer Q1, C4", 480, 360,80,20) $a4[2] = GUICtrlCreateInput("Answer Q2, C4", 480, 410,80,20) $a4[3] = GUICtrlCreateInput("Answer Q3, C4", 480, 460,80,20) $a4[4] = GUICtrlCreateInput("Answer Q4, C4", 480, 510,80,20) $a4[5] = GUICtrlCreateInput("Answer Q5, C4", 480, 560,80,20) $a5[1] = GUICtrlCreateInput("Answer Q, C5", 720, 360,80,20) $a5[2] = GUICtrlCreateInput("Answer Q, C5", 720, 410,80,20) $a5[3] = GUICtrlCreateInput("Answer Q, C5", 720, 460,80,20) $a5[4] = GUICtrlCreateInput("Answer Q, C5", 720, 510,80,20) $a5[5] = GUICtrlCreateInput("Answer Q, C5", 720, 560,80,20) ;Buttons $GoButton = GuiCtrlCreateButton("Okay", 40, 480, 200, 100) $NoGoButton = GuiCtrlCreateButton("Cancel", 40, 340, 200, 100) ;GuiSetState(@SW_ENABLE) GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $NoGoButton ExitLoop Case $msg = $GoButton $FileName = GUICtrlRead($filename) & ".ini" For $i = 1 to 5 $Q1[$i] = GUICtrlRead($q1[$i]);questions for category 1 $Q2[$i] = GUICtrlRead($q2[$i]);questions for category 2 $Q3[$i] = GUICtrlRead($q3[$i]) $Q4[$i] = GUICtrlRead($q4[$i]) $Q5[$i] = GUICtrlRead($q5[$i]) $A1[$i] = GUICtrlRead($a1[$i]); answers for category 1 $A2[$i] = GUICtrlRead($a2[$i]);answers for category 2 $A3[$i] = GUICtrlRead($a3[$i]);etc $A4[$i] = GUICtrlRead($a4[$i]);etc $A5[$i] = GUICtrlRead($a5[$i]);etc $cat[$i] = GUICtrlRead($qc[$i]) ; categories Next IniWrite($FileName, "File Name", "File Name", $FileName) For $i = 1 to 5 IniWrite( $FileName, "Categories", "Category " & $i, $cat[$i]) IniWrite($FileName, "Category 1" , "Question " & $i, $Q1[$i]) IniWrite($FileName, "Category 2" , "Question " & $i, $Q2[$i]) IniWrite($FileName, "Category 3" , "Question " & $i, $Q3[$i]) IniWrite($FileName, "Category 4" , "Question " & $i, $Q4[$i]) IniWrite($FileName, "Category 5" , "Question " & $i, $Q5[$i]) IniWrite($FileName, "Category 1", "Answer " & $i, $A1[$i]) IniWrite($FileName, "Category 2", "Answer " & $i, $A2[$i]) IniWrite($FileName, "Category 3", "Answer " & $i, $A3[$i]) IniWrite($FileName, "Category 4", "Answer " & $i, $A4[$i]) IniWrite($FileName, "Category 5", "Answer " & $i, $A5[$i]) Next GUIDelete($MainWindow) Exit EndSelect WEnd ExitoÝ÷ Ø ÝêÞËazÊ.Ç¢»az«¨´ùZÉêêºZºÚ"µÍÔØÜXYHHÚXÚØÜÒÙBÚ[ÛYH ÑÝZPÛÛÝ[Ë]LÉÝÂÚ[ÛYH Ð^K]LÉÝÂÉÌÍÑ[S[YHH[]Þ ][ÝÑ[H[YOÉ][ÝË ][ÝÕÚ]ÈH[YHÙH[H][Ý[ÜHØ[YHØÈØ]YÏÉ][ÝÊH [È ][ÝË[I][ÝÂÌÍÑ[S[YHH ][ÝÙ[HÈØ]HË[I][ÝÂÌÍÐÌHHÐ^PÜX]JKË K BÌÍÐÌHÐ^PÜX]JKË K BÌÍÐÌÈHÐ^PÜX]JKË K BÌÍÐÍHÐ^PÜX]JKË K BÌÍÐÍHHÐ^PÜX]JKË K BÌÍÐLHHÐ^PÜX]JKË K BÌÍÐLHÐ^PÜX]JKË K BÌÍÐLÈHÐ^PÜX]JKË K BÌÍÐMHÐ^PÜX]JKË K BÌÍÐMHHÐ^PÜX]JKË K BÌÍÐØ]THHÐ^PÜX]JKË K BÌÍÐØ]HHÐ^PÜX]JKË K BÌÍÐØ]ÔHHÐ^PÜX]JKË K BÌÍÐØ] HHÐ^PÜX]JKË K BÌÍÐØ] THHÐ^PÜX]JKË K BÌÍØØ]YÛÜWÛX[ÈHÐ^PÜX]JKË K BÌÍÐØ]YÛÜHHÐ^PÜX]JKË K BÒ[TXYÈ Ù]HÙ][ÜÊBÜ ÌÍÚHHHÈ B ÌÍÐÌVÉÌÍÚWHH[TXY ÌÍÑ[S[YK ][ÝÐØ]YÛÜHI][ÝË ][ÝÔ]YÝ[Û ][ÝÈ [È ÌÍÚH ][ÝÉ][ÝÊB ÌÍÐÌÉÌÍÚWHH[TXY ÌÍÑ[S[YK ][ÝÐØ]YÛÜH][ÝË ][ÝÔ]YÝ[Û ][ÝÈ [È ÌÍÚH ][ÝÉ][ÝÊB ÌÍÐÌÖÉÌÍÚWHH[TXY ÌÍÑ[S[YK ][ÝÐØ]YÛÜHÉ][ÝË ][ÝÔ]YÝ[Û ][ÝÈ [È ÌÍÚH ][ÝÉ][ÝÊB ÌÍÐÍÉÌÍÚWHH[TXY ÌÍÑ[S[YK ][ÝÐØ]YÛÜH ][ÝË ][ÝÔ]YÝ[Û ][ÝÈ [È ÌÍÚH ][ÝÉ][ÝÊB ÌÍÐÍVÉÌÍÚWHH[TXY ÌÍÑ[S[YK ][ÝÐØ]YÛÜH I][ÝË ][ÝÔ]YÝ[Û ][ÝÈ [È ÌÍÚH ][ÝÉ][ÝÊB ÌÍÐLVÉÌÍÚWHH[TXY ÌÍÑ[S[YK ][ÝÐØ]YÛÜHI][ÝË ][ÝÐ[ÝÙ ][ÝÈ [È ÌÍÚK ][ÝÉ][ÝÊB ÌÍÐLÉÌÍÚWHH[TXY ÌÍÑ[S[YK ][ÝÐØ]YÛÜH][ÝË ][ÝÐ[ÝÙ ][ÝÈ [È ÌÍÚK ][ÝÉ][ÝÊB ÌÍÐLÖÉÌÍÚWHH[TXY ÌÍÑ[S[YK ][ÝÐØ]YÛÜHÉ][ÝË ][ÝÐ[ÝÙ ][ÝÈ [È ÌÍÚK ][ÝÉ][ÝÊB ÌÍÐMÉÌÍÚWHH[TXY ÌÍÑ[S[YK ][ÝÐØ]YÛÜH ][ÝË ][ÝÐ[ÝÙ ][ÝÈ [È ÌÍÚK ][ÝÉ][ÝÊB ÌÍÐMVÉÌÍÚWHH[TXY ÌÍÑ[S[YK ][ÝÐØ]YÛÜH I][ÝË ][ÝÐ[ÝÙ ][ÝÈ [È ÌÍÚK ][ÝÉ][ÝÊB ÌÍÐØ]YÛÜVÉÌÍÚWHH[TXY ÌÍÑ[S[YK ][ÝÐØ]YÛÜYÉ][ÝË ][ÝÐØ]YÛÜH ][ÝÈ [È ÌÍÚK ][ÝÉ][ÝÊB^ÑÕRBÝZPÜX]J ][ÝÒ[ÜI][ÝËLL LLKLH]Ô ÌÍÕÔ×ÓÕTTQÒSÕË ÌÍÕÔ×ÐÓTÒPSÔÊJBÌÍÐZÔXÚÈHÕRPÝÜX]TXÊ ][ÝÙ]IÌLÕ]K ][ÝËLL L BÝZPÝÙ]Ý]JLK ÌÍÑÕRWÑTÐPJBÉÌÍØØ]YÛÜWÛX[ÖÌHHÝZPÝÜX]SX[ ][ÝÒ[ÜIÌÌÎÉ][ÝË LÌ L BÕRPÝÙ]ÐÛÛÜLK ÌÍÑÕRWÐÐÓÓÔÕSÔTS BÜ ÌÍÚHHHÈ BÌÍØØ]YÛÜWÛX[ÖÉÌÍÚWHHÝZPÝÜX]SX[ ÌÍÐØ]YÛÜVÉÌÍÚWK ÌÍÚH MHLL ÍK BÌÍÐØ]TVÉÌÍÚWHHÝZPÝÜX]P]Û ][ÝÉÌÍÉ][ÝÈ [È ÌÍÚH LÌ ÌÍÚH L H ÈL L BÌÍÐØ]VÉÌÍÚWHHÝZPÝÜX]P]Û ][ÝÉÌÍÉ][ÝÈ [È ÌÍÚH L ÌÍÚH L H ÈL L BÌÍÐØ]ÔVÉÌÍÚWHHÝZPÝÜX]P]Û ][ÝÉÌÍÉ][ÝÈ [È ÌÍÚH LÍÌ ÌÍÚH L H ÈL L BÌÍÐØ] VÉÌÍÚWHHÝZPÝÜX]P]Û ][ÝÉÌÍÉ][ÝÈ [È ÌÍÚH L M ÌÍÚH L H ÈL L BÌÍÐØ] TVÉÌÍÚWHHÝZPÝÜX]P]Û ][ÝÉÌÍÉ][ÝÈ [È ÌÍÚH L ÌL ÌÍÚH L H ÈL L BÕRPÝÙ]ÐÛÛÜ ÌÍØØ]YÛÜWÛX[ÖÉÌÍÚWK ÌÍÑÕRWÐÐÓÓÔÕSÔTS B^ÝZTÙ]Ý]J BÚ[HBIÌÍÛÙÈHÝZQÙ]ÙÊ BTÙ[XÝPØÙH ÌÍÛÙÈH ÌÍÑÕRWÑUSÐÓÔÑBBQ^]ÛÜØÙH[ÙBÜ ÌÍÚHHHÈ BÙ[XÝØÙH ÌÍÛÙÈH ÌÍÐØ]TVÉÌÍÚWBÙÐÞ ÌÍÐØ]YÛÜVÌWH [È ][ÝÈÜ ÌÍÉ][ÝÈ [È ÌÍÚH L ÌÍÐÌVÉÌÍÚWJNÜÚÝÈH]YÝ[ÛÕRPÝ[]J ÌÍÐØ]TVÉÌÍÚWJNÙÙ]YÙH]Û ÌÍÐSÕÑTPSHÕRPÝÜX]SX[ ÌÍÐLVÉÌÍÚWKÌ ÌÍÚH L H ÈL L NÜ]H[ÝÙÕRPÝÙ]ÐÛÛÜ ÌÍÐSÕÑTPS ÌÍÑÕRWÐÐÓÓÔÕSÔTS NÛXZÙH]ÝÛÚÈYØÙH ÌÍÛÙÈH ÌÍÐØ]VÉÌÍÚWBÙÐÞ ÌÍÐØ]YÛÜVÌH [È ][ÝÈÜ ÌÍÉ][ÝÈ [È ÌÍÚH L ÌÍÐÌÉÌÍÚWJBÕRPÝ[]J ÌÍÐØ]VÉÌÍÚWJB ÌÍÐSÕÑTPSHÕRPÝÜX]SX[ ÌÍÐLÉÌÍÚWK ÌÍÚH L H ÈL L BÕRPÝÙ]ÐÛÛÜ ÌÍÐSÕÑTPS ÌÍÑÕRWÐÐÓÓÔÕSÔTS BØÙH ÌÍÛÙÈH ÌÍÐØ]ÔVÉÌÍÚWBÙÐÞ ÌÍÐØ]YÛÜVÌ×H [È ][ÝÈÜ ÌÍÉ][ÝÈ [È ÌÍÚH L ÌÍÐÌÖÉÌÍÚWJBÕRPÝ[]J ÌÍÐØ]ÔVÉÌÍÚWJB ÌÍÐSÕÑTPSHÕRPÝÜX]SX[ ÌÍÐLÖÉÌÍÚWKÍÌ ÌÍÚH L H ÈL L BÕRPÝÙ]ÐÛÛÜ ÌÍÐSÕÑTPS ÌÍÑÕRWÐÐÓÓÔÕSÔTS BØÙH ÌÍÛÙÈH ÌÍÐØ] VÉÌÍÚWBÙÐÞ ÌÍÐØ]YÛÜVÍH [È ][ÝÈÜ ÌÍÉ][ÝÈ [È ÌÍÚH L ÌÍÐÍÉÌÍÚWJBÕRPÝ[]J ÌÍÐØ] VÉÌÍÚWJB ÌÍÐSÕÑTPSHÕRPÝÜX]SX[ ÌÍÐMÉÌÍÚWK M ÌÍÚH L H ÈL L BÕRPÝÙ]ÐÛÛÜ ÌÍÐSÕÑTPS ÌÍÑÕRWÐÐÓÓÔÕSÔTS BØÙH ÌÍÛÙÈH ÌÍÐØ] TVÉÌÍÚWBÙÐÞ ÌÍÐØ]YÛÜVÍWH [È ][ÝÈÜ ÌÍÉ][ÝÈ [È ÌÍÚH L ÌÍÐÍVÉÌÍÚWJBÕRPÝ[]J ÌÍÐØ] TVÉÌÍÚWJB ÌÍÐSÕÑTPSHÕRPÝÜX]SX[ ÌÍÐMVÉÌÍÚWK ÌL ÌÍÚH L H ÈL L BÕRPÝÙ]ÐÛÛÜ ÌÍÐSÕÑTPS ÌÍÑÕRWÐÐÓÓÔÕSÔTS B[Ù[XÝ^Q[Ù[XÝÑ[^] I hope you like it, Tell me what you think of it! I will be adding to it as I feel like it. UPDATED: New source uses arrays, and after it shows the question it deletes the button, and puts the answer in its place. (both sources use arrays) Uses Hallman's Jeopardy background pic. Hope you like it! Edited October 15, 2006 by Kickassjoe What goes around comes around... Payback's a bitch.
CoderDunn Posted October 14, 2006 Posted October 14, 2006 I made a jeopardy maker a while back. Mines a little more advanced plus can have multiple teams. Maybe you can build off of mine. Hallman
ame1011 Posted October 14, 2006 Posted October 14, 2006 AHHHHHH so many lines... You could really truncate that script through the use of arrays. I would reccomend looking up arrays in the helpfile to give you an idea. Other than that, great work. [font="Impact"] I always thought dogs laid eggs, and I learned something today. [/font]
CoderDunn Posted October 14, 2006 Posted October 14, 2006 AHHHHHH so many lines...lol you think his script is a mess look at mine in my previous post.
Thatsgreat2345 Posted October 14, 2006 Posted October 14, 2006 ... hall where have you been? after the last jeapordy post and all you kinda disapeared hahahah i was lookin forward to doing some more games
CoderDunn Posted October 14, 2006 Posted October 14, 2006 ... hall where have you been? after the last jeapordy post and all you kinda disapeared hahahah i was lookin forward to doing some more games Well my internet stopped working (modem broke) so I couldn't check the forums until I got a new modem. Which took about a week ... By then I forgot about my Jeopardy thing sry
Kickassjoe Posted October 14, 2006 Author Posted October 14, 2006 (edited) hehe, I knew someone was gonna mention arrays... but, I will just get the game done first, then worry about how many lines there are. EDIT: hall, i haven't looked at yours yet, but I was thinking of making a scoreboard, and instead of msgboxes, I could put input boxes that would ask what the answer was (after I make the answers changeable of course.), and if it was wrong, then not add the score. Edited October 14, 2006 by Kickassjoe What goes around comes around... Payback's a bitch.
CoderDunn Posted October 14, 2006 Posted October 14, 2006 EDIT: hall, i haven't looked at yours yet, but I was thinking of making a scoreboard, and instead of msgboxes, I could put input boxes that would ask what the answer was (after I make the answers changeable of course.), and if it was wrong, then not add the score.Exactly what mine does. I don't care if you use the pictures I used in mine.
Kickassjoe Posted October 14, 2006 Author Posted October 14, 2006 yea, I found that out. Thanks for letting me use the pictures, and I'm making it use arrays, since it will be easier to make the lables transparent that way. Along with many other things... What goes around comes around... Payback's a bitch.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now