Leaderboard
Popular Content
Showing content with the highest reputation on 05/31/2019 in all areas
-
Well, since I started tearing this game apart, I started making two versions of it like some others do - An 80s-90s version and an updated version. So... These come directly from youtube, I found a playlist of them, but I did quality control so they'd fit better in the game, I'll list the changes above the original videos. If there's no note, then I didn't do any editing. --------------------------------------------------------------- American Wrestling Association (1988): Championship Wrestling Alliance (1982-1995): (Transition Fade/Audio Pan at 00:50) Eastern Championship Wrestling (1993): Extreme Championship Wrestling (1994): (Full version of Thunderkiss '65 spliced w/ the ECW opening for the theme, video untouched) Georgia Championship Wrestling (1981-1982): (Fade out & audio pan at the end) Global Wrestling Federation: (Fade out & audio pan at the end) Mid-Atlantic Championship Wrestling: (Fade out & audio pan at the end w/ commentators cut out.) NWA World Championship Wrestling: Smokey Mountain Wrestling (1992): (Ends at 00:30 - Audio pan & fade out added) Smokey Mountain Wrestling (1995): (Cut to only play up until 00:33 w/ fade out & audio pan added) Universal Wrestling Federation (1986): USWA Championship Wrestling: (Cut out the extension, runs the first 21 seconds) USWA Championship Wrestling 2: (Cuts out channel marker, Cuts out audience, replacing them with a pan & fade out) World Class Championship Wrestling: (Fade out & pan at the end) --------------------------------------------------------------- Video Links: American Wrestling Association (1988) Championship Wrestling Alliance (1982-1995) Eastern Championship Wrestling (1993) Extreme Championship Wrestling (1994) Georgia Championship Wrestling (1981-1982) Global Wrestling Federation Mid-Atlantic Championship Wrestling NWA World Championship Wrestling Smokey Mountain Wrestling (1992) Smokey Mountain Wrestling (1995) Universal Wrestling Federation (1986) USWA Championship Wrestling USWA Championship Wrestling 2 World Class Championship Wrestling Theme Links: American Wrestling Association (1988) Championship Wrestling Alliance (1982-1995) Eastern Championship Wrestling (1993) Extreme Championship Wrestling (1994) Georgia Championship Wrestling (1981-1982) Global Wrestling Federation Mid-Atlantic Championship Wrestling NWA World Championship Wrestling Smokey Mountain Wrestling (1992) Smokey Mountain Wrestling (1995) Universal Wrestling Federation (1986) USWA Championship Wrestling USWA Championship Wrestling 2 World Class Championship Wrestling --------------------------------------------------------------- Notes: Feel free to use these for whatever you want, in other mods, videos, ports, whatever, just please, do not claim them as your own, that is all that I ask, thank you.3 points
-
Thank. I have a few more finishin touches to put onto Chono before I can release. Busy with the next release of X-Rey coming in the next week or so. I've also created renders for every mod I've released so far, will be releasing this soon as well. A quick preview:2 points
-
Hi, I am putting together a short tutorial on assigning different entrances to alternate attire character pacs in the game. There are no alternate entrances for alternate attires assigned to any character by default in 2k19, however if you have alternate attires for a character with an entrance which uses prop objects, you might want to modify an entrance file by changing the prop ID assigned to it. Let me break this down . Let's assume I have installed a retro Hulk Hogan mod with a character ID of ch47502 ch47504 for the in-ring and entrance attires respectively,with shirt prop which is ripped in the entrance file being the yellow Hulk Rules shirt. I might have downloaded an alternate attire with a red Hulkamania shirt and a red shirt prop object which he ripped in his entrance, an additional yellow shirt with Hulk Still Rules written on it with it's own prop. when the other two are set as alternate attires, by modifying the evt_data file (located in the pac/evt folder), a specified alternate entrance will be used when each alternate character is selected. For illustration purposes, lets say the EVT ID for the retro entrance with the Yellow Hulk Rules t shirt is 1109 The evt ID for the retro entrance with the red Hulkamania shirt is 1110 . This will be alternate attire 1 or the second attire ch47512 and ch47514 The evt ID for the retro entrance with the Yellow Hulk Still Rules T shirt is 1120. This will be alternate attire 2 or the third attire ch47522 and ch47524 You will need to modify the evt_data file. Its the same process to decompress the file as I explained in a previous tutorial. I will go through the steps here. 1. Open the evt_data file in Pac editor select the MASS EXTRACT option in the window. This will decompress the file. 2. Open the folder @6A95E7DD7C121B66.pac, locate the file 00.1024. It should be the first file listed in the subfolder. 3. I will recommend you open the file with notepad on your pc. You will see the following data At present, there are no entries this year as this was not implemented for any character unlike in previous games. What we need to do is to add the data to this file 102400 0 0 0 0 0 0 8 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 To add an entry, place the cursor on the second row preceeding the 1and press enter to create a blank row which you will type in. Do remember the evt ID's for the alternate attires are 1110 and 1120. For the first additional attire, we will type in 47512 1109 1110 0 0 0 0 (a space after each set of numbers) 47512 is the alternate attire id, 1109 Is the main entrance, 1110 is the alternate entrance. add the 4 zeros with a space after each one. By default the game will always assign the main entrance file for all attires. With this data, we are giving a command in the form of a programming IF statement. The second additional attire will be written this way 47522 1109 1120 0 0 0 0 47522 is the alternate attire, 1109 is the main entrance ID, 1120 is the evt ID for the second attire. The structure of the data is in this format (Alternate attire character ID) (Main Entrance ID) (Alternate entrance ID) 0 0 0 0 The instruction simply says. IF an alternate attire is selected, play the entrance ID if available, ELSE play the default entrance. I have highlighted IF AVAILABLE to further point out if the entrance file assigned to the alternate entrance is not in the game folder, the game will resort wo assigning the default entrance. When the new entries are added, the data will be displayed as shown. You can add as many entries as you want. Let me further highlight one little scenario. If I added a third alternate attire (this will be the 4th attire) and I did not assign any entrance in the evt_data file, the default entrance will be used. 102400 0 0 0 0 0 0 8 47512 1109 1110 0 0 0 0 47522 1109 1120 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 102400 0 0 0 0 0 0 0 When you are done, save the file. open the 6A95E7DD7C121B66.pac file in PAC EDITOR, Highlight the 00.bpe, click on INJECT AS BPE in the program window, select the modified 00.1024 file (not the bpe file) when prompted. You will get the FILE INJECTION COMPLETED . Open the evt_data.pac file with PAC EDITOR, inject the 6A95E7DD7C121B66.pac into it. Copy the file back to the pac/evt folder .All done.1 point
-
No, you don't have to. Neither if you install a new render nor if you overwrite an existing one you have to delete something. Between the two versions, there are no differences in the render-creation. The only difference is that - from now on - additionally the reference in the original ltga_typeX pac file is deleted. That's all. Deletion is only relevant for the following case: - You have additional ltag files outside the normal game folder (old CCT releases did create that) - Your old render was created with older versions of CCT * with 'old' I do not mean the previous release1 point
-
I loved the First One release. So, this One looks very good too1 point
-
Please try to delete your whole CCT mod directory and install all renders and things again (re-generate your chunk cache before you do this). Make sure that you haven't any other render mods installed from other sources which could interfere with the renders used from CCT. That the render of Cole is blank makes no sense to me. He has a completely different slot id. Sure, you did not accidentally replace it with a wrong dds file?1 point
-
Love it. I was wondering why i couldn't find the original version. Now i understand why lol.1 point
-
Hey, uh. Can someone make or import attitude era championship belts for 2k19? I need: WWF Women's Championship 1998-2010 WWF Tag Team Championships 1998-2002 WWF European Championship 1998-2002 Subsequently any attitude era arenas would be nice. I know there is a pack of them for WWE 2K18 but idk if there's a way to port those into 2K19 or not. Also as a bonus: Is there any way for someone to make the WWE ECW Arena from 2007? I was always in love with this arena design but idk if there's any way it can be done in 2K19, probably not, but thought I'd ask.1 point
-
You can use Create an Entrance Item Adder to add entries to the Entrance menus. Alternatively, you can use Data Editor in conjunction with Custom Character Tools to edit and re-inject your .moveset file and set the entrance there, which won't add any entries but let you select any entrance even those not selectable in-game.1 point
-
Amazing work as always! Any possibility of a Dustin Rhodes GFX?1 point
-
do you guys not read the first post? it says request in the request section or buy a request for him to do it.1 point
-
Yeah, it's a shame they didn't test that out. Oh well, the Lawn Dart works out well. Anyway, great job on the York Foundation. You rarely see a Terri Runnels with the Alexandra York look and persona. I actually showed these to my brother, who was a huge fan of JCP and WCW, and he was blown away from the authenicity you and Keith were able to capture. I know you guys might not need it, but I went though the month by month roster of WCW in 1989. Hope it helps. NWA WCW 19891 point
-
WWF & WCW Renders Megapack '99 - '02 Download HERE1 point