Yea, I'll walk you through step by step, the only thing I can't promise you is your PC will work perfect. Some decide to freeze and what not. If you give me more information, I can give you better advice... 1) What type of drive do you have? 2) What type of chipset in your PC do you have? 3) What OS do you have?
This isn't a tool that took a lot of time to make nor was it for release, but I thought out of my generosity ( ) I would release it for the people who flash firmware on here. What it does? Well, for those of you who flash firmware, when you flash a LiteOn drive, you need to use a probe or solder the R707 in order to extract your key. Well, all the prompting about getting a good key, do it a few times, will come in handy here. Instead of comparing the drive keys manually, you can load 3 of them in this tool, and it will tell you if they are the same key. If they are not the same key and you flash a wrong key to your xbox, well, you better say goodbye to that xbox. NOTE: If your key in any way has a "00", "77" or "FF" in it, DO NOT PROCEDE. I didn't code that into the app because many 'key reading' software will tell you that it is bad. So, always make sure of that. Download: Key_Comparison.rar
Yea lol, so it makes it proper to read the image. I don't think it has any effect on the file though... I don't know but in all my image readers I am more lenient and make it read 16000 bytes rather then the int before the PNG.
Translation: Omg gabe, you are lying like a fly with a booger in it's eye. Just kidding. Gabe, I know it won't be leaked, anyone who bought it will not leak it. The only people that own it are the ones that paid for it. By the way, that post was a joke. Supermodder is awsome and if I really wanted it to be leaked (I don't) I would have spelled it properly and used correct grammar. By the way, I love yungbol.
Lol, are you color blind? Them images you posted are clearly green... The lambo is close to yellow, but not completely. The xbox and gundam are both green as grass.
No prob, listen to gabe, he is the one that helped me ... If anyone needs any help on accomplishing a task just make a topic and post it rather then PM it. I've been getting quite a few PM's for help, but if you post it and I solve it, it will benefit more people.
Pink? The rapper? Cannot Be Displayed http://www.pmptoday.com/wp-content/uploads/2008/01/pink-ipod-nano-3g.jpg http://www.cobrabrigade.com/photos/pink%20hat.jpg http://cms.thinktotallypink.com/asset/lg/1622.jpg http://images.amplifeye.com/unsigned/290x270_1141702454_unsigned-1063417698.jpg
Ok, lol I just installed VB.NET and made it no problem. Here is the code for VB.NET: Dim fs As New FileStream(TextBox1.Text, FileMode.Open)
Dim br As New BinaryReader(fs)
br.BaseStream.Position = &H171A
Dim imaged As New MemoryStream(br.ReadBytes(16000))
PictureBox1.Image = Image.FromStream(imaged) vb.net gets confused here and there... another reason I use c#. The reason why I changed it to imaged was because when you put image it would get confused from the one with the capital I. C# is case-sensitive, that is why it was different. You also need to declare the MemoryStream as it's own, not as a Stream.
Yea, lol I extracted these from the .iso the other day. There are 2 animations, one says Resident Evil 5 and the other says Biohazard 5 (Japanese name)... The opening animation is like mitosis lol.
Are you declaring your Stream properly? Dim image As Stream = New MemoryStream(location) pictureBox1.Image = Image.FromStream(image) ^ That is VB.NET, anyone following this tut don't pay attention to that reply lol.