Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 1.09 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ## ih8sn0w -- iBooty backimage command
  2. ## sn0wbreezw 1.7 2010 -- iH8sn0w
  3. ## DjKira
  4.  
  5. Public Sub GoGoGadgetPayload()
  6.     MyProject.Forms.Form1.Step0 = False
  7.     Me.Button1.Text = "Sending up Payload..."
  8.     Me.cmdline = "irecovery.exe -k iboot.payload"
  9.     modProcessCmd.ExecCmd(Me.cmdline, True)
  10.     modProcessCmd.Delay(2)
  11.     Me.Button1.Text = "Sending up Logo..."
  12.     Me.cmdline = "irecovery.exe -f wait.img3"
  13.     modProcessCmd.ExecCmd(Me.cmdline, True)
  14.     modProcessCmd.Delay(2)
  15.     Me.Button1.Text = "Setting up Logo..."
  16.     Me.cmdline = ("irecovery.exe -c " & MyProject.Forms.Form1.Quote.Text & "setpicture 0" & MyProject.Forms.Form1.Quote.Text)
  17.     modProcessCmd.ExecCmd(Me.cmdline, True)
  18.     modProcessCmd.Delay(1)
  19.     Me.cmdline = ("irecovery.exe -c " & MyProject.Forms.Form1.Quote.Text & "bgcolor 0 0 0" & MyProject.Forms.Form1.Quote.Text)
  20.     modProcessCmd.ExecCmd(Me.cmdline, True)
  21.     Me.Button1.Text = "Done!"
  22.     Interaction.MsgBox("If you see the image on your screen, then you can proceed!", MsgBoxStyle.Information, Nothing)
  23.     MyProject.Forms.Form1.Step0 = False
  24. End Sub