Interested in investing time and money into PSXHAX.COM? Read More and Contact Us for details!
Live in Your World, HAX in Ours!
Sony CES 2017 Trailer Video Features PS4 Pro and PlayStation VR
If you haven't been following their live cast UStream feed from the event, CES runs from January 5th through the 8th in Las Vegas, NV and both the PS4 Pro and PlayStation VR are featured in the Sony's CES 2017 trailer video. :geekxf2:

For non-tekkies, the Consumer Electronics Show is an annual trade show organized by the Consumer Technology Association that typically hosts presentations of new products and technologies in the consumer electronics industry.

Check out Sony's CES 2017 trailer video below, and from DualShockers.com to quote: "Before the beginning of Chief Executive Officer Kazuo Hirai's speech at Sony's CES 2017 press conference, the company aired a rather epic trailer presenting its vision and products.

During the conference, Hirai-san provided some very positive numbers for PS4 sales during the Holiday season, and followed up by praising the great start of PlayStation VR, while announcing a VR music experience created by Sony Music Entertainment."

Call of Duty: Black Ops 3 (BO3) PC Mod Tools Demos by Kurt2467
Following the PS4 GTA V Hax Demo with @BadChoicesZ, PlayStation 4 developer @kurt2467 recently added some new Call of Duty: Black Ops 3 (BO3) Mod Tools for PC demonstration videos to his YouTube channel which can also been seen below! :veryhappy:

To quote from the video captions: BO3 Mod Tools - Jump Pads + My Map

Here's an example of the jump pads I have been working on. I made these a lot more like the revelations cause the one released is ass. Also just a little preview of a map that will probably never be finished :openedeyewink:

[Release] BO3 Zombies Launch Pads

The launch pad release for BO3 mod tools. Sorry i forgot to actually tell you guys how to install the files, but i wrote a text tutorial in the download.

Download: BO3 Launch Pads [kurt2467].rar (1.22 MB)
Code:
FIRST:
Add scriptparsetree,scripts/zm/zm_launch_pad.gsc to your maps zone file

SOUNDS:
Add the following to your user_aliases.csv in root/share/raw/sound/aliases/

launchpad_wind_loop,,,kurt_sounds\flinger_wind_loop.wav,,,UIN_MOD,,,,,,,,,,,100,100,200,1000,,,,,,4,,,,,,,,,,,3d,,,LOOPING,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
launchpad_activate,,,kurt_sounds\flinger_activate.wav,,,UIN_MOD,,,,,,,,,,,60,100,100,400,,,,,,1,,,,,,,,,,,3d,,,NONLOOPING,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
launchpad_land,,,kurt_sounds\flinger_land.wav,,,UIN_MOD,,,,,,,,,,,100,100,200,1000,,,,,,1,,,,,,,,,,,3d,,,NONLOOPING,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
launchpad_fly,,,kurt_sounds\flinger_fly.wav,,,UIN_MOD,,,,,,,,,,,100,100,200,1000,,,,,,1,,,,,,,,,,,3d,,,NONLOOPING,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

SCRIPTING:
1. Add "#using scripts\zm\zm_launch_pad;" to your mapname.gsc
2. Add "thread zm_launch_pad::init();" in the init function inside of your mapname.gsc
BO3 Mod Tools - Magic Chest

My custom mystery box that i made just for some extra customization. Only thing left to do is to make it move around when u get a teddy bear.

BO3 Mod Tools - Ascension Lunar...
PS4 Private Static ORTMAPILib.IProcess IProcess by RFOoD x MoDz
Earlier this week PlayStation 4 developer @MrNiato made available his PS4 Console Manager Tool Source Code followed by the required Interop.ORTMAPILib.dll via @oldschoolmodzhd, and now RFOoD x MoDz shared a Private Static ORTMAPILib.IProcess IProcess with homebrew developers. :ninja:

To quote: Private Static ORTMAPILib.IProcess IProcess;

Code:
       void SetMemory(ulong Address, object Bytes)
            {
                IProcess.SetMemory(Address, Bytes);
            }

           void GetMemory(ulong Address, uint ByteCount, out uint Bytes)
           {
               IProcess.GetMemory(Address, ByteCount, out Bytes);
           }

           void SendConsoleInput(string InptText)
           {
               IProcess.SendConsoleInput(eConsoleOutputPort.STREAM_STDERR, InptText);
           }
Example:
Code:
byte[] buffer = new byte[] { 0xFF, 0xFF };
SetMemory(0xFFFFF, buffer);
Thanks to @HydrogenNGU for sharing the Pastebin in the PSXHAX Shoutbox! :thumbup:
PS4SDK Setup on Windows Guide by PS4 Developer BadChoicesZ
Following the PS4 *** Installer Script, PlayStation 4 developer @BadChoicesZ recently shared a guide to PS4SDK setup on Windows using either CTurt's PS4 *** or PS4Dev's PS4SDK with details below. <3

To quote via the Pastebin from BadChoicesZ:

Code:
#
# BadChoicesZ guide to PS4SDK setup on Windows:
# using CTURTS ***, although can use PS4DEV's *** aswell.
# revision 2.0
#

1.
# Download cygwin x86_64 from browser:
# https://www.cygwin.com/setup-x86_64.exe

2.
# Create folder:
C:\cygwin64
# And copy the setup-x86_64.exe into it.

3.
# setup (using cmd.exe)
cd C:\cygwin64
setup-x86_64 -q -P wget,tar,qawk,bzip2,subversion,vim

4.
# Download/install apt-cyg using the cygwin terminal:
wget rawgit.com/transcode-open/apt-cyg/master/apt-cyg
install apt-cyg /bin

5.
# Install required. ( using cygwin terminal )
apt-cyg install nano git make python binutils clang
git clone https://github.com/kR105/PS4-dlclose.git
git clone https://github.com/CTurt/PS4-***.git

6.
# make Environmental variable "PS4SDK" point to PS4-***'s folder.
# replace <user> with profile name..ie. BadChoicesZ
export PS4SDK=/home/<user>/PS4SDK/PS4-***

7.
# Install GCC -
# Run the cygwin installer again "setup-x86_64.exe" this time by double clicking on it ( not using cmdline )
# and make sure to download the GCC as shown below.
# https://i.stack.imgur.com/E4uZh.png
# (just click on the 'skip' to toggle install..)

8.
# Compile Cturts *** ( Could also use PS4DEV's.. )
cd PS4-***
cd libPS4
make
cd ..
cd libusbfatfs
make
cd ..

9.
# you can now compile projects with ps4sdk on windows.
:arrow: Update: Below is another tutorial on How To Setup the PS4SDK on Windows 10 by 0x199 for those interested, to quote:

Today I'm going to explain how to setup the PS4SDK on Windows 10. Get that VM out of the way, it's time for the real deal.

Requirements
  • Desktop with Windows 10 installed
Let's get started

Part 1: Installing Bash on Ubuntu on Windows 10

First things first, we're going to enable developer mode on your Windows 10...
PlayStation 4 Games Coming in 2017, PS4 Exclusives Teaser Trailer
With the new year upon us, Sony has released a PlayStation 4 teaser trailer video spotlighting some of the PS4 games and exclusives coming in 2017 and beyond! :lovexf2:

Check it out below, and from the video's caption to quote: The new year is here and with it comes some of the most exciting console exclusives coming to PS4 and PlayStation VR in 2017 and beyond.

Back
Top