Skip to content
View yanfox777's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report yanfox777

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
yanfox777/README.md

Hello World!

👨‍💻 About Me :

I am a Pawn & PHP Developer from Russia.
I am fond of modifications for GTA: SA, I love 3D modeling)

Pinned Loading

  1. RemoveVehicleLimit-R1 RemoveVehicleLimit-R1
    1
    const auto sampdll =  reinterpret_cast<std::uintptr_t>(GetModuleHandleA("samp.dll"));
    2
    const auto PatchAddressFirst = sampdll + 0x2545D4;
    3
    const auto PatchAddressSecond = sampdll + 0x285679;
    4
    Utils::Memory::MemoryFill(PatchAddressFirst, 0x90, 6, true); // Off Vehicles Check
    5
    Utils::Memory::MemoryFill(PatchAddressSecond, 0x90, 6, true); // Off Vehicles Check
  2. RemoveVehicleLimit-R3 RemoveVehicleLimit-R3
    1
    DWORD FindAddress(HMODULE hModule, const char* mem_tofind, size_t strSize) {
    2
        MODULEINFO moduleInfo;
    3
        DWORD dwModule = reinterpret_cast<DWORD>(hModule);
    4
        GetModuleInformation(GetCurrentProcess(), hModule, &moduleInfo, sizeof(moduleInfo));
    5
        for (auto i = dwModule; i < moduleInfo.SizeOfImage + dwModule - 1 - strSize; i++) {
  3. RemoveVehicleLimit RemoveVehicleLimit Public

    C++

  4. trinity-rp-copy trinity-rp-copy Public

    Making a copy of the Trinity RP game mod from scratch

    Pawn