1 Star 0 Fork 0

alechy/PUBG-Lite-ESP-Source

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

PUBG Lite C# ESP Source

A external ESP base for PUBG Lite 1.4.2.423 written in C#

This does not include code for accessing the games memory or for drawing.

Usage

    Vector2 screenSize = new Vector2(1920, 1080);
    Game pubg = new Game("PUBGLite-Win64-Shipping", "PUBGLite-Win64-Shipping.exe");

    UWorld uWorld = pubg.UWorld();
    APlayerController playerController = uWorld.OwningGameInstance().LocalPlayers().LocalPlayer().PlayerController();

    APlayerCameraManager cameraManager = playerController.PlayerCameraManager();
    AActor localPawn = playerController.AknowledgedPawn();
    AActor[] actors = uWorld.CurrentLevel().AActors();

    for (int i = 0; i < actors.Length; i++)
    {
        if (actors[i].TeamID != localPawn.TeamID && actors[i].Health > 0 && actors[i].ObjectID == localPawn.ObjectID)
        {
            if (cameraManager.WorldToScreen(actors[i].GetBoneLocation(Bones.Head), screenSize, out Vector2 headScreenLocation))
            {
                Vector2 rootScreenLocation = cameraManager.WorldToScreen(actors[i].GetBoneLocation(Bones.Root), screenSize);
                //DrawBox(rootScreenLocation, headScreenLocation, actors[i].Health);
            }
        }
    }

Result

PUBG Lite ESP

Notes

The code in the usage part is only a demonstation. I would suggest adding some error checks to your code. I have near to 0 minutes played on the game so it might have a lot of bugs. Consider it a base for you to progress on.

Credits

The people in uknowncheats.net PUBG Lite Reversal, Structs and Offsets.

master131 for the rotate code.

空文件

简介

取消

发行版

暂无发行版

贡献者 (1)

全部

近期动态

3年多前创建了仓库
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/alechy/PUBG-Lite-ESP-Source.git
git@gitee.com:alechy/PUBG-Lite-ESP-Source.git
alechy
PUBG-Lite-ESP-Source
PUBG-Lite-ESP-Source
master

搜索帮助