Hellsplit: Arena VR - How to Unlock Everything

Video Statistics and Information

Video
Captions Word Cloud
Reddit Comments
Captions
[Music] welcome to the channel in this video i'm going to be showing you how you can unlock all of the gear in hell split arena that means all of the weapons all of the armor and all of the shields so you can right away start training with all of the gear before we get started take a minute to click the s in the corner to subscribe trying to get to a thousand subscribers so that'd be much appreciated also like share leave a comment i'd love to hear your feedback let's get into it in order to unlock all of the gear in health split arena right from the get go we're going to be editing the save file of the game now you can find already 100 unlocked save files on reddit so head on over there if you want to take the easy route i'm going to be showing you how to use a hex editor to open up the file see what's going on and make the changes yourself with that being said we're going to need a hex editor hex editor that i use is hxd and i'm going to be relying on that quite heavily in this video so i highly recommend it it's freeware there'll be a link in the description go download hxd if you're interested in this sort of thing you won't regret it the other thing we're going to need to know is where the save files are on your machine and those save files are in c slash users slash username in this case subs slash data slash local slash hell split arena now if we go ahead and open up that directory you can see that we have a saved directory now right away we can back this up because we're going to be making changes we don't want to screw anything up so we'll just select it ctrl c ctrl v to paste so now we've got a backup so no matter what we do we can always restore our backup by copying the saved copy back over the original so let's go into the save directory we have config and save games in save games directory we have profile 1 and auto save so the game you can save multiple profiles so if you want to keep one profile clean and vanilla and go through the game that way just edit a different profile what you need to do for this to work is start a game in normal mode go into a battle that's it all you have to do is have the profile here to save and then it's going to show up here and we can edit it i'm gonna open up hxd this is what hxd looks like i will drag profile one into hxd now i've done maybe two or three battles in this game it's on normal mode the way the game progresses is you have to complete the game on normal mode and that's going to unlock hardcore mode and hardcore mode has extra weapons that you can unlock along the way so to actually unlock all of the gear in game naturally you're going to have to complete normal mode and you're going to have to complete hardcore mode but here we are we've only reached maybe the fourth round or something like that and we're going to unlock everything so that we can go mess around in training with all the fun gear this game has to offer so the first thing we're going to do is give ourselves a lot of cash and we do that by scrolling down until we start seeing the word money we have player earned money amount we have player spent money amount and there's one more we just have player money up here so the way that hxd works is it's displaying the hexadecimal representation of the file here on this side and it's also displaying the text representation of what's in the file on this side those two are separate and you have to pay attention to which is in focus at any given time where your cursor is because we're going to be making some changes and you want to be making them in the right place now in this video we're going to be using the data inspector portion of hxd as well to help us with some of the numbers so we'll start with player money so if we look at the string player money the next string we see is int property that means this is an integer property and if we count i think eight spaces after that we end up at e1 so that's one two three four five six seven eight we actually count eight after this o4 so there's int property there's this zero zero zero four which is telling us the size of the next value to a certain degree don't have to worry about it too much but after this zero four we're counting one two three four five six seven eight sets of two zeros each of those two zeros represents a byte but we won't worry too much about that what you need to know is after player money after int property after the zero four eight sets of two zeros and we'll put our cursor there and you'll see that here we have some values in the data inspector this 1249 is the current amount of money the player has in this saved game so in this case we're going to go into the int 32 that's a 32-bit integer and we're going to change that we're going to change that to 1 million dollars and hit enter and you can see that that's created some red in our file here that's our change so we've just given the player 1 million dollars now we want to keep everything in line with the game so we want to change the next value of player earned money amount because how could we have a million dollars if we didn't earn it and this is basically the same process we have player earned money amount it's an integer property and then we see after that we have the zero zero zero four and then we can count eight sets of two zeros one two three four five six seven eight and now we see we have a one d here in the hex and then our data inspector we can see that we've earned 5149 dollars in the game so far so we want to change that again to one million dollars and hit enter and again we can see that one million dollars represented in hex in this particular format is four zero four two zero f zero zero the next amount player spent money amount is right below and we wanna change that to zero because we want to spend all our million dollars from this point forward we don't want to have some sort of bill that we've already paid so again it's an integer property and we see after int property we have zero zero zero four and then one two three four five six seven eight sets of two zeros and then we have 3 900 is the amount that we've spent already in game and we're going to change that over here in our data inspector to zero hit enter and we see that clears out all of the expended money in the game next thing we're going to do is change the campaign type from normal to hardcore so we'll start down here look for campaign normal and we're going to place our cursor at the beginning of normal and we're going to start typing hardcore but we're not going to finish it we're only going to type as much as we need to get to the end of normal now you'll understand in a second what we have to do is insert some letters here and that's a bit different when you're editing files like this when you change the size of the file by inserting something that can have consequences so what we're going to do is make sure that our cursor is in the text portion because we're going to be entering text right here and we're going to start typing hardcore so h a r d c o so now we've come to the end of normal we've overwritten normal with hard co and now we need to insert some letters to finish the actual string which is hardcore so we're going to turn on insert on your keyboard so that you're inserting text also known as ins so search your keyboard if you're on a laptop you might need to use a function key to enable insert and you're going to see down at the bottom of hxd the mode has changed to insert i'll toggle that back and see it's overwrite and now it's insert so when we're on insert mode we're going to press the r to start finishing hardcore and it's going to say this operation changes the file size yes we want to proceed and then we want to do e and again this operation changes the file side do we want to proceed yes so now we've changed the file size we've added hardcore we've added two characters making the file slightly bigger and we have to account for that somewhere else but for now we're going to turn off insert mode so whichever key on your keyboard whether it's a function insert or just insert on a number pad make sure that you switch that back to overwrite so now we're back to overwrite so because we added two characters to this string we have to go and adjust the size of this string which is represented by a number preceding the string and we can see that if we go to the start of e campaign type campaign hardcore right here if we count four back to one two three four we come to a one e now that one e is re represents thirty and that was the actual length of that string and now we've added two characters so we're going to change this 30 to 32 and hit enter so we've told the program that when it reads this file it's got to read an extra two characters here and the file is going to be two characters larger that's what this size number is or length it can be referred to as so now we've changed our game mode to hardcore so we've given the player money we've squared away all the earned money versus spent money we've adjusted the campaign type to hardcore and we've adjusted the length of that string to coincide with that string next thing we're going to do is change the level that this saved game is on and we're going to do that by changing the saved campaign id property which is right below the campaign type and we can see it's back to an integer property so we do what we do with these integer properties we look for the zero zero zero four and then we count eight one two three four five six seven eight you can see here that we're on the fourth level the fourth round or the fourth battle or something like that i'm not quite sure now through trial and error i've ascertained that we can up this to 34. so we'll go up to our data inspector and this time we can go into the int 16 16 bit integer and we'll change this 4 to 34 and hit enter we can see that's changed this to 22 and now all our changes are complete we've given the player money we've changed it to hardcore and we've put them on the very last level what i think is the very last level there might be one more battle i'm not sure but this level has all of the weapons available so what we're going to do now is press ctrl s to save the file now at this point we can load up the game and what we need to do in-game is open up the campaign of this profile and go and purchase all of those weapons that have been unlocked once we've done that we'll be able to go into training and use those weapons you can see here that once i saved it in hxd it made a backup of that profile just in case you made a mistake we also have the other backup we made when we copied the entire directory so we're covered uh twice here in case of error but now we're going to load up the game we're going to go in and buy all those weapons and shields and armor that we've unlocked and then we'll try some of them out in the training [Music] all right here we are in hell split arena we've opened up the game after editing our save file so we're gonna go in continue the campaign and buy up all the gear so profile one there's us campaign continue now like i said there might be another battle yet i'm not sure uh but for now we're gonna buy all the gear well actually first let's uh check out our cash money one million dollars or coins one million gold coins yes now let's go blow it so swords uh short swords so you can see that i haven't bought any of these so that's a little bit of proof of the save edit working because if i'd actually completed the game i probably would have had to buy one or two of these or would have been pretty difficult i guess to get through without buying any of these weapons at all not to mention repetitive okay so i think that's us buying all of the swords we'll go back by all the axes this may seem like a lot of work but nothing compared to actually playing through the game whoa that's a long hammer didn't know that's what a war hammer was okay so we've got all the maces all the axes all the swords we'll go over here purchase up all the body armor uh leather coat we have brigandine we have buy that buy that buy it all shields have that one bye all right so we bought all the body armor and shields now for potions i'm not even entirely sure how these work i haven't used them enough but look at that half a million dollars worth of weapons we've uh we just bought up um so i guess you could go in and buy these i'm gonna skip them for now and now that we've bought all the weapons and armor that we wanted i guess we equipped that um let's pull up the menu exit to the menu and now we'll go in and do some training so this time we'll go to training and uh frozen lake in a blizzard that sounds like fun now i'll probably embarrass myself because like i said i haven't actually played a lot of the game but at least we can now play with say the katana put that on our back and what armor would we like [Music] lama lara that looks like a good armor to go with the katana templar armor plate armor heavy plate armor that kind of looks a little katana-ish too a little like uh maybe ramirez and the highlander all right so that's equipped all right so now let's go back let's set up some enemies set up enemies normal waves medium long meet uh i guess short waves is probably good we're not going to play this too long just to illustrate that we got this going all right oh this armor is bulky get our get our kicks going oh there's somebody let's jump on into action where'd he go running away running away [Music] on that that guy's got too much armor let's judge the length of the katana there just jump around a bit oh there we go somebody lumbering whoa slippery go take a leg off you don't need that right or head probably did need that can we grab heads i don't even know whoa what's our horse coming in for is that some zombie horse there we go turn this guy into the black knight so all right i kind of want to try out something different so let's dump to the menu and uh we'll try a different setup different location [Music] training let's kill the snow ruins go with a theme all right so now weapons kind of want to try out the flambe or bird not quite sure how it's pronounced only seen these in museums but that is one awesome weapon and then armor let's go with something a bit softer there we go and then set up enemies max enemies let's go with hard waves short back fight whoa this thing's got quite the range comparatively [Music] so you pick his arm his sword back up i was gonna say his arm but well there you have it you can unlock all of the gear in hell split arena having barely played the game if you haven't already take a minute to click the s in the corner to subscribe trying to get to a thousand subscribers that'd be much appreciated also like share leave a comment feedback on the video or the game all that good stuff is appreciated thanks for watching and we'll catch you next time you
Info
Channel: substatica
Views: 23,335
Rating: undefined out of 5
Keywords: VR, quest, oculus, virtual reality, gameplay, walkthrough, quest 2, first look, getting started, review, new, footage, hellsplitarena, hellsplit, arena, horror, zombies, magic, combat, zombie, fantasy, medieval, middle ages, castles, cemetary, demons, hell, demon, devil, unlock, mod, save, edit, hex, cheat, save file
Id: TxsTS1AGGIE
Channel Id: undefined
Length: 22min 37sec (1357 seconds)
Published: Thu May 20 2021
Related Videos
Note
Please note that this website is currently a work in progress! Lots of interesting data and statistics to come.