Just for av and trophy's sake. There was a GM script but it doesn't work anymore :/ Also I found a script on google for visual basics. I know nothing about programming. But for anyone attempting to actually make this, maybe you can look at this {Sorry, I don't know if this is helpful at all so don't yell at me cuz I dunno what I am posting } Code (Text): Dim strHTML As String Dim strPrize As String Dim strRef() As String Dim strLast As String Private Sub Command1_Click() If IsNumeric(txtMin.Text) Then Command1.Enabled = False Command2.Enabled = True strHTML = Halo.GetWrapper("http://neopets.com/medieval/doubleornothing.phtml", "http://neopets.com/games/play.phtml?game_id=178") 'Goes to game page Timer1.Enabled = True Else MsgBox "Enter Minium Amount" End If End Sub Private Sub Command2_Click() Command1.Enabled = True Command2.Enabled = False Timer1.Enabled = False End Sub Private Sub Timer1_Timer() strHTML = Halo.GetWrapper("http://neopets.com/medieval/process_doubleornothing.phtml?type=cointoss", Halo.Last_Page) 'flips coin Label1.Caption = Time & " - Flipping Coin" If InStr(1, strHTML, "You do not have 10 Neopoints to bet!") Then MsgBox "You Don't Have Enough Nps To Play" Command1.Enabled = True Command2.Enabled = False Exit Sub Timer1.Enabled = False End If strRef = Split(strHTML, vbCrLf) strLast = "http://neopets.com/medieval/" & Replace(strRef(7), "Location: ", "") 'Gets the page to view the result strHTML = Halo.GetWrapper(strLast, Halo.Last_Page) 'goes to page to view coin result If InStr(1, strHTML, "<input type='submit' value='Try again...'>") Then 'if lost then strHTML = Halo.GetWrapper("http://neopets.com/medieval/doubleornothing.phtml?", Halo.Last_Page) 'start game again Label1.Caption = Time & " - Lost Game" ElseIf InStr(1, strHTML, "<input type='submit' value='Continue'>") Then 'if won strPrize = GB(strHTML, "<input type=" & ChrW$(34) & "submit" & ChrW$(34) & " value=" & ChrW$(34) & "Collect Your Winnings - ", " NP" & ChrW$(34) & ">") 'checks nps won Label1.Caption = Time & " - Current Prize - " & strPrize If Int(strPrize) >= txtMin.Text Then 'if nps won is greater or equal to the minium the user put then Label1.Caption = Time & " - Collecting " & strPrize & " Nps" strHTML = Halo.GetWrapper("http://neopets.com/medieval/process_doubleornothing.phtml?type=collect&win=2", Halo.Last_Page) 'collect nps List1.AddItem Time & " - Collected " & strPrize & " Nps" strHTML = Halo.GetWrapper("http://neopets.com/medieval/doubleornothing.phtml?", Halo.Last_Page) 'restarts game Else strHTML = Halo.GetWrapper("http://neopets.com/medieval/doubleornothing.phtml?", Halo.Last_Page) 'goes to next level End If End If End Sub
This would be a cool idea. It could also be done with a GM script, which is neat. Although having a program would be better so you could put pauses and set max money to collect(so if you want av or troph, it will stop once you have enough)
i've been working on a big mini game player (for all the games like this, like kiss the mortog and so on) I'll have the done sometime soon
Wow even better if it includes kiss the mortog. That game is a pesk. Thanks heya :yup: Looking forward to it.