You can join our Discord server by clicking the button above.
PUBG LITE game reverse engineering, for educational purposes.
I want a free roam version of this game, which is why I'm working hard on the project.
And also to have control over the game, I want to do funny things.
In short, the game is working but needs several things fixed to make it stable and functional.
This repository is to demonstrate progress and how things are going and how they stand.
Don't expect too much for now.
Below is a list of problems that haven't been fixed yet.
I hope you understand.
1.4.2.681: It doesn't work on Windows 11 22h2 and higher.
1.4.2.423: It works at 23h2 and below.
1.4.2.14: It works at 23h2 and below.
1.4.0.15: It works at 23h2 and below.
0.7.0.1: The h4tiux crack patch works on any operating system, from Windows 7 to the latest Windows 26h2.
- 🟢 Being able to drive - Fix by
PHIKILL - 🟢 character positioned correctly in the seats - Fix by
PHIKILL - 🟢 correctly switch to the vehicle seats, press CTRL + 1, 2, 3, 4, 5, 6, 7, 8, 9 - Fix by
PHIKILL - 🟡 to be able to get out of the vehicle - Fix by
PHIKILL1.
- 🔴 When aiming with ADS, the animation should be correct.
- 🟡 When looking around, the server replicates the character rotation according to the yaw while it is stationary.2.
- 🟢 receive and give damage - needs to improve - Fix By
H4tiux - 🟢 successfully landing - needs to improve - Fix By
JerryPrimeDevandPHIKILL - 🔴 Correctly updating character information in the inventory. such as keeping a helmet and other equipment even when they are unequipped.
- 🔴 Relevance correction based on distance from the camera's
viewTarget. - This problem causes physics-based actors to fall when they are far from the host's camera. - 🔴 DOORS, Yes, the doors are quite complicated; they neither open nor close, and they are not being replicated.
- NOTE! Partially fixed, it works on the host, but the door is not replicated to the clients.
- 🔴 Item spawning on maps
- 🔴 Vehicle spawning on maps
- 🔴 Replicate gunshots, including impact, decals, effects, and damage.
- 🟡 reloading weapons in newer versions - Fix By
H4tiux3.
- 🔴 The Grenades timings has been corrected to 5 seconds instead of 2.5.
Other issues in newer versions were fixed by H4tiux, such as the camera in the battle royale plane, getting out of the plane, crash problems, and others.
Lobby Code : -> ogbg_lobby
The lobby is just web code, so you can open it in your browser.
The game uses Coherent GT to apply web elements as UI.
- 🔴 Sometimes, repeatedly, or constantly, the asynchronous loading of game information via Coherent GT fails to respond and gets stuck in an infinite loading loop.
- 🔴 Clicks fail in the lobby; you have to move the cursor so that the command switching focuses on web elements.
The code is completely open source ❤️; if anyone has the knowledge, they can access the branch listed above and modify the code. It would help me a lot Since -> I don't have much experience with web coding 💔, I hate it and it's very annoying.
@PUBGLite-Win64-Shipping.exe -UI -LobbyUrl="https://phikill.github.io/RE_PUBG_LITE/custom_lobby/index.html" -AllowJoinAnyMatchState -LOG -NOSPLASH
The -AllowJoinAnyMatchState parameter is required for creating matches; otherwise, you will not be able to.
You can create simple matches in the custom_match menu. To play, simply open two instances of the game: one will be the server and the other the client.
Some parameters, such as TPP/FPP and the number of players in the match, don't work, so you can ignore them. and also the name of the match.
And the game mode works.
Default: It does not add any extra parameters to the map; it loads the map's default blueprint.
TRAINING MALE: This game mode loads the training mode with a male character; in this mode, the character does not take damage.
TRAINING FEMALE: This game mode loads the training mode with a female character; in this mode, the character takes damage but does not die.
BATTLE ROYALE FOREST: Battle royale game mode, but loaded by Erangel by default. works in the Miramar
BATTLE ROYALE DESERT: Battle Royale game mode, but loaded by Miramar by default. Works on Erangel.
On this page, simply enter the IP address of the server you wish to connect to. More instructions below.
Remember, you need to open the program twice! this part is to turn the current process window into a host server, which is not playable.
To play, you need another instance and to join the match. as a CLIENT
These images below are an example.
The host cannot interact with elements in the environment, among other things; it is not meant to be played, only to host the game.
(1) Host (2) Client
You can create matches from the lobby in any version of the game except those mentioned later, and you can also use an SDK to open the map with DLL injection, or in the server panel.
(1). First, create a match as host 👑🌐🗔.
- Make sure you have all the pre-configuration information, such as server port and the map's gamemode blueprint.
(2). You can join the match 🖥️🎮
- from the lobby by entering the IP address in the
join from IP Adressoption. If you are on the same computer as the host, simply enter127.0.0.1if everything is standard. - If you're trying to connect using a different port or IP address, just try something like this.
on the page : CUSTOM MATCH/JOIN FROM IP ADRESS
(1) in case it's a different port : Example 9999
- 127.0.0.1:9999
(2) In case it's a different IP address but with the standard port : 7777.
- 192.168.15.15
(3) in case the IP address and port are configured differently : Example 4050
- 192.168.15.15:4050
(4) default local address, and default port
127.0.0.1:7777The address of the same computer that is being hosted and the default port defined by Unreal Engine.
By default, the game opens on port 7777.
(1).You can change the port by adding a new parameter ?port= to the UWorld URL in Unreal Engine
- Like :
open MapName?listen?port=7778
(2).Or you can use it in the program parameters -port=
- Like :
PUBGLite-Win64-Shipping.exe -UI -LobbyUrl="" -AllowJoinAnyMatchState -NOSPLASH -port=9999
matchmaking works up to version 1.4.0.15, in higher versions like 1.4.2.423 and 1.4.2.681 the game crashes
Note: the fixes are in the releases; you just need to inject the DLL on the host side when the game is loaded and in the lobby. You can inject it during the match, but I recommend injecting it before any player joins the match or lobby.
I'm decompiling the launcher and making it in pure C, with support for Linux and even Windows XP.
Branch Link :Launcher Source Code
(1). Currently, the launcher only serves to add a nickname, in this case, simply change the UID, and disable the Please run from launcher error message.

(2). If you are trying to open PUBG Lite 0.7.0.1 and are receiving a LauncherIpc.dll message like the one below.

- You need the crack that's in this release : 0.7.0.1 Crack Patch
That's all there is to it; you can't start the game from the Launcher, -> you have to start it Externally.
If you want, you can implement it yourself; the code is in C, using Chromium for web with the LIBCEF library for its implementation.
And be happy, the code is in the branch mentioned above.
Login Page - nickname Set CHICKEN in capital

Main Page - there is little here

Nickname inside Game - set in launcher - lobby view 0.7.0.1

Nickname inside Game - set in launcher - Training Mode 0.7.0.1

IGNORE, OLD PHOTOS , the first steps of the project , It only works now on Windows 7 x64 or higher .
and the same code working on linux

I created this Server Panel to remotely control the server from a browser, view its status, and more.
Don't expect too much; when trying to spawn vehicles, there's a 99% chance your server will crash. But it works fine.
More implementations and bug fixes will follow in the future.
You can call Unreal console commands from the page; there are some tick issues at the moment, but I'll fix that later.
You can spawn vehicles from the page; there are some tick issues at the moment, but I'll fix that later.
or this
🟢1.4.2.681 | (02.22.2021) link 1
🟢1.4.2.681 | (02.22.2021) link 2
🟢1.4.2.423 | (23.02.2020)
🟢1.4.2.14 | (..)
🟢1.4.0.15 | (21.11.2019)
🟢1.3.0.90 | (10.10.2019)
🔴1.0.0.40 | (2019)
🟢0.8.3.14 | (6.07.2019) link 1
🟢0.8.3.14 | (6.07.2019) link 2
🟢0.8.1.29 | (1.8.2019) link 1
🟢0.8.1.29 | (1.8.2019) link 2
🟢0.7.7.20 | (2019)
🔴0.7.3.32 | (2019)
🔴0.7.1.48 | (2.2019)
🟢0.7.0.1 | (24.1.2019) link 1
🟢0.7.0.1 | (24.1.2019) link 2
some tools that I use to modify the game
name of the tools so I don't forget
.PAK files exploring PUBG Lite Explorer by Warranty Voider
UMODEL
FModel
UAssetGUI
UnrealLocres
Wireshark
EchoMirage
FakeNet
Cain & Abel
Postman
node.js
Nmap
QuickUnpack 4.3
xvolkolak Unpacker
Detect It Easy DIE
HXD
ImHex
Dumper-7
UE4-Function-Address-Finder
Unreal Engine Uasset Viewer/Editor
Kismet Analyzer
depends22_x64
winapiexec64
Xenos_2.3.2
X64DBG
Ghidra
Error Lookup
FileGrab
ForceToolKit
RegShot
Process Explorer
OpenHashTab
CyberChef
XOpcodeCalc
Hollows_Hunter
Footnotes
-
NOTE! For now, the character is quite buggy when exiting the vehicle. The bugs are: character rotation and invalid activation of the underwater state. ↩
-
- NOTE! I made a quick fix, so this conflicts with the
ALT FreeCam, but it helps with the punching gameplay.
- NOTE! I made a quick fix, so this conflicts with the
-
It works well, but needs improvement because it's quite broken. ↩



















