View Full Version : [Release] Prototype 2 Editor
Idlehands88
04-21-2012, 07:56 AM
Hey guys, I know there is already an Editor on the site, but I wanted to make one too :P
How to Use:
1. Extract your slot.bin from your USB
2. Open your save into the Editor and Mod your XP
3. Press Save
4. Open your save back into Horizon and press Rehash and Resign
5. Replace the save back onto your USB
6. PLAY!!!!
EDITOR:
http://img820.imageshack.us/img820/6296/prototype2editor.jpg
Thanks to feudalnate for PackageIO
Vincent Valentine
04-21-2012, 08:18 AM
lol theres going to be like 10 of them :lol: well nice editor Idle... seems like you've taken a like in WPF lol
Idlehands88
04-21-2012, 08:20 AM
lol theres going to be like 10 of them :lol: well nice editor Idle... seems like you've taken a like in WPF lol
Yep only issue with it is that it doesn't have the NumericUpDown....
Sephiroth
04-21-2012, 08:23 AM
Looks sick, can't wait to play this game... without cheating of course :053:
Vincent Valentine
04-21-2012, 08:27 AM
Yep only issue with it is that it doesn't have the NumericUpDown....
yeah... i downloaded a program that had one but it didn't work with this kind of coding...
Vincent Valentine
04-21-2012, 08:27 AM
how did you make that though? must know! lol im talking about the numericupdown thing lol
Idlehands88
04-21-2012, 08:29 AM
how did you make that though? must know! lol im talking about the numericupdown thing lol
It's just a Text box with a Vertical Scrollbar LOL
Vincent Valentine
04-21-2012, 08:32 AM
It's just a Text box with a Vertical Scrollbar LOL
lol figured as much lol... but idk how to code scrollbars :P
Idlehands88
04-21-2012, 08:34 AM
lol figured as much lol... but idk how to code scrollbars :P
I don't either, the Scrollbars in my Editor do nothing :P
Vincent Valentine
04-21-2012, 08:37 AM
I don't either, the Scrollbars in my Editor do nothing :P
lol so it doesn't make the number go up or down? lol
Idlehands88
04-21-2012, 08:38 AM
lol so it doesn't make the number go up or down? lol
Nope, it's just for show :)
Sephiroth
04-21-2012, 08:59 AM
Custom numericupdown
In wpf put this code in xaml
<TextBox x:Name="txtNum" x:FieldModifier="private" Margin="5,5,0,5" Width="50" Text="0" TextChanged="txtNum_TextChanged" />
<Button x:Name="cmdUp" x:FieldModifier="private" Margin="5,5,0,5" Content="˄" Width="20" Click="cmdUp_Click" />
<Button x:Name="cmdDown" x:FieldModifier="private" Margin="0,5,0,5" Content="˅" Width="20" Click="cmdDown_Click" />
Go to the code and add this.
[VB]
Private _numValue As Integer = 0
Public Property NumValue() As Integer
Get
Return _numValue
End Get
Set
_numValue = value
txtNum.Text = value.ToString()
End Set
End Property
Public Sub New()
InitializeComponent()
txtNum.Text = _numValue.ToString()
End Sub
Private Sub cmdUp_Click(sender As Object, e As RoutedEventArgs)
NumValue += 1
End Sub
Private Sub cmdDown_Click(sender As Object, e As RoutedEventArgs)
NumValue -= 1
End Sub
Private Sub txtNum_TextChanged(sender As Object, e As TextChangedEventArgs)
If Not Integer.TryParse(txtNum.Text, _numValue) Then
txtNum.Text = _numValue.ToString()
End If
End Sub
[C#]
private int _numValue = 0;
public int NumValue
{
get { return _numValue; }
set
{
_numValue = value;
txtNum.Text = value.ToString();
}
}
public NumberUpDown()
{
InitializeComponent();
txtNum.Text = _numValue.ToString();
}
private void cmdUp_Click(object sender, RoutedEventArgs e)
{
NumValue++;
}
private void cmdDown_Click(object sender, RoutedEventArgs e)
{
NumValue--;
}
private void txtNum_TextChanged(object sender, TextChangedEventArgs e)
{
if (!int.TryParse(txtNum.Text, out _numValue))
txtNum.Text = _numValue.ToString();
}
JizzaBeez
04-21-2012, 09:28 AM
Go to the code and add this.
[VB]
Private _numValue As Integer = 0
Public Property NumValue() As Integer
Get
Return _numValue
End Get
Set
_numValue = value
txtNum.Text = value.ToString()
End Set
End Property
Public Sub New()
InitializeComponent()
txtNum.Text = _numValue.ToString()
End Sub
Private Sub cmdUp_Click(sender As Object, e As RoutedEventArgs)
NumValue += 1
End Sub
Private Sub cmdDown_Click(sender As Object, e As RoutedEventArgs)
NumValue -= 1
End Sub
Private Sub txtNum_TextChanged(sender As Object, e As TextChangedEventArgs)
If Not Integer.TryParse(txtNum.Text, _numValue) Then
txtNum.Text = _numValue.ToString()
End If
End Sub
It looks like you forgot a piece of the code...you have to have a "value" to set when using Properties:
Public Property NumValue() As Integer
Get
Return _numValue
End Get
Set(ByVal value As Integer)
_numValue = value
End Set
End Property
Set the Property:
NumValue = 1337
Get the Property:
txtNum.Text = NumValue.ToString()
thegutta
04-21-2012, 09:50 AM
Great editor idle thanks awesome job.
Noctis Caelum
04-21-2012, 01:36 PM
nice work idle
CloudStrife7x
04-21-2012, 05:46 PM
nice work on this editor Idle :)
Game Wizard
04-21-2012, 05:52 PM
Great job idle looks like u are having a full conversation with just odd future on first page :P but i cannot wait for this game going to be sick.
charles0568
04-21-2012, 06:24 PM
thx for share~!!!!! i love you~
dippidip
04-21-2012, 10:02 PM
Idle when i try to launch the editor i get this error(Its in dutch but yeah you see what i mean,an error)
I don't know what causes this but it's strange.
Running on XP SP3 AMD AthlonII X4 630.
7337
NuBiXx
04-22-2012, 12:19 AM
In another thread you said because of three editors already made you stop with adding more features to yours, please finish adding the features I think everyone would appreciate it..
kellzclub
04-22-2012, 12:50 AM
Another great looking editor by Idle nice job as always thanks and keep up the excellent work.
homura
04-22-2012, 03:06 AM
Good job Idle.
tukiya
04-22-2012, 03:07 AM
many thanks!
homura
04-22-2012, 06:54 PM
just noticed that this game has moving offsets.
xBASSxMONSTAx
04-23-2012, 01:30 AM
I need help
So I have used both save editors that caveman and u created on my save. I'm about 50% through the game now on easy setting, anyway everything goes well I Edit the save, save the edit, exit, then resign and rehash using horizon and back on my usb it goes. But every time I go to load up my save in game it says FAILURE ACCESSING STORAGE DEVICE??
Here is my save: http://www.mediafire.com/?qsl9rd2ur3x87bp could u take a look for me to see what the problem is.
I would also be very grateful if u could edit my points so I'm up to level 22. Thanks in advance.
snakes25
04-23-2012, 06:57 AM
very nice editor hope we will have a nother one with everything unlock loool
vukasin81
04-23-2012, 08:57 AM
thanks
Lashley
04-23-2012, 02:46 PM
cheers
Remix1121
04-23-2012, 07:27 PM
Awesome editor. But i can't seem to continue missions now =(. When i stand in the blue area to start mission nothing happens. Worked fine on a newly modded save, but after i turned box off and went to play it's now bugged.
Edit: Okej edited the bugged save, and removed tons of xp after i had spent the points. Now i can continue missions! :D
BrayWyatt
04-23-2012, 08:20 PM
In another thread you said because of three editors already made you stop with adding more features to yours, please finish adding the features I think everyone would appreciate it..
i completely agree...
stamate
04-23-2012, 09:31 PM
Great tool i needed only for xp :).
Redwind
04-24-2012, 07:55 AM
thanks, but when I open the editor gives me error, does not work.
Idlehands88
04-24-2012, 08:11 AM
thanks, but when I open the editor gives me error, does not work.
It does work, so why don't you post a picture of the Error and stop being completely useless...
BrayWyatt
04-24-2012, 07:37 PM
program opens fine for me. the posted probably didnt copy both files in a folder. or isnt running the latest .net framework.
fullmetal172
04-24-2012, 10:53 PM
thanks for the editor
BrayWyatt
04-24-2012, 11:04 PM
cant wait for the next update. so i can max out my abilities.
powers
skills
abilities
mutations
evolution - you can use the program for this one
jraah
04-25-2012, 12:24 AM
thanks m8 I was really looking for one
I will test it and reply
aos10
04-25-2012, 01:47 AM
i recommend all of you not to mode too high..or even..not to mode at all
i reached to 40%..and the game glitched for me because i have too much EXP
and now i can't take any new mission
i recommend all of you not to mode too high..or even..not to mode at all
i reached to 40%..and the game glitched for me because i have too much EXP
and now i can't take any new mission
Mod your xp down again
Sent from my iPhone 4S using Tapatalk
Redwind
04-25-2012, 08:44 AM
Here is the error that gives me. If you can help me. thanks
http://s7.imagestime.com/out.php/i699525_Immagine1.jpg
Idlehands88
04-25-2012, 09:42 AM
Here is the error that gives me. If you can help me. thanks
http://s7.imagestime.com/out.php/i699525_Immagine1.jpg
I don't know french, but if I had to guess, it says something about .Netframework... Make sure you have .Netframework 3.5 or higher installed...
DOWNLOAD: http://www.microsoft.com/download/en/details.aspx?id=17851
Redwind
04-25-2012, 04:10 PM
I don't know french, but if I had to guess, it says something about .Netframework... Make sure you have .Netframework 3.5 or higher installed...
DOWNLOAD: http://www.microsoft.com/download/en/details.aspx?id=17851
My net framework 3.5 SP1 installed and, 4 + net framework extended.
http://s6.imagestime.com/out.php/i699818_Immagine1.jpg
http://s6.imagestime.com/out.php/i699818_Immagine1.jpg (http://www.imagestime.com/show.php/699818_Immagine1.jpg.html)
What can I do to make it work?
darkchristo
04-25-2012, 08:49 PM
Very Gooooooood
scorpionnet
04-27-2012, 02:13 AM
Wao...this one is out already, Thanks a lot..!!!!
Delta SGM
04-30-2012, 01:30 AM
Thanks for all your hard work on this and other tools you've made!! Do you have any plans to make an editor that will mod the Mutations? Thanks
keyonie
04-30-2012, 09:28 AM
Is there a Save out there that is already MAXED out on the 22 Points along with all other Mutations, Skills Weapons, ETC... that you can you and does not glitch where you can't play any more missions?
Please Post the Link if there is or Pleas PM me the Link or File would Very much be Grateful.
-Keyonie (
[email protected])
POLLO231
05-01-2012, 03:11 AM
Well id gladly Upload my legit save BUT unfortunately its not maxed out when it comes to the character level. Only Skill Weapons, Mutations so on and so forth are fully upgraded! And you can also start a new game plus.
rainunlimited
05-01-2012, 06:45 PM
Hey men, this editor doesn't work.:011:
M1K3_L
05-01-2012, 08:16 PM
Hey men, this editor doesn't work.:011:
The editor works fine
1. the save has to be slot b minimum because the auto save slot a wont work
2. The Original Save MUST BE STARTED ON HARD DIFFICULTY!!! (saves on normal that are changed to hard in-game will not work)
3. Max XP is 2530000 (level 23)
4. Rehash & Resign the save and your profile
homura
05-02-2012, 04:28 PM
The editor works fine
1. the save has to be slot b minimum because the auto save slot a wont work
2. The Original Save MUST BE STARTED ON HARD DIFFICULTY!!! (saves on normal that are changed to hard in-game will not work)
3. Max XP is 2530000 (level 23)
4. Rehash & Resign the save and your profile
My editor works for slot-A. Weird that saves on normal changed to hard don't work. (the offset is the same so it should work.) well good job on helping him out ^.^
Arimai
06-08-2012, 03:05 PM
Does not work I load it and the character is still level 2
Serious_M
06-09-2012, 10:35 AM
nice job on this save editor idle
mparr
08-10-2012, 11:22 PM
this will be very helpful thanx
daniyal
03-22-2013, 07:17 PM
Thanks mate :)
bobsandbag
05-14-2015, 07:53 AM
Only just discovered this little gem, thanks!
Juggler
06-13-2015, 12:40 PM
Not Working.
When I locate my save game files it says:The program has stopped working.
vBulletin Solutions, Inc. All rights reserved.