Coder Social home page Coder Social logo

cracko298 / isz-2021-plugin Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 2.0 2.71 MB

A cheat/hack plugin for Ice Station Z on PC/Steam in a compiled *.dll format. Made for use with RE-UE4SS (Lua Subsystem), UUU4, and ISZ-Injector.

License: MIT License

C++ 88.34% C 9.75% Objective-C 0.15% Objective-C++ 1.72% Shell 0.01% GLSL 0.02% GDB 0.02%

isz-2021-plugin's Introduction

paypal

ISZ-2021-Plugin

  • Simple yet powerful plugin for ISZ-2021 (PC/Steam Port) with plentiful features.
  • Supports "RE-UE4SS", "ISZCI", and "UUU4".

Downloads:

Next Update Plans:

  • Add EVEN More Codes (or Add Alternate Codes).

Plugin Codes:

Spacebar        = Jump
Period          = Hyper Speed
Comma           = Reset Speed
Up-Arrow        = Spam Days
Down-Arrow      = Stop Spamming Days
Numkey 6        = Infinite Status
Numkey 7        = No Fuel/Engine Parts Needed
Numkey 8        = Reset All Vehciles
Numkey 9        = Infinite Ammo
Numkey 0        = Infinite Weapon Durrability
Plus Key        = No Reload
Star Key        = Enable Zooming on Non-Rifles
Tilde Key       = Unlimited Weapon Range
Forward Slash   = Go Invisible

Esc + Ctrl      = Close Plugin/Cheats

FaQ:

Why are there so many version of the Same Plugin?

  • This is so the User who wishes to Install the Plugin, can do it on a plethera of Different Platforms for Hacking UE4 Games.

Can this do Much more than just Load the iszplugin.dll Files?

  • Nothing is stopping you from developing your Own custom Loader with your own Codes/Cheats, just understand/follow the MIT License.

Will this Get Me Banned?

  • No, this is an External Program that in-of itself cannot get you Banned by itself.
  • Using a thing like "RE-UE4SS", and "UUU4" could technically get you banned if used to Cheat Online. Otherwise they are 100% Legal & Safe.

Will this support UMU/UML (Unreal Mod Unlocker/Loader)?

  • As of version "v4" the release has now included Loading the ISZ-2021-Plugin "PluginLoader.exe" which is needed as it's a wrapper for the Plugin.

Do these work Online?

  • Yes, however I strongly advise against this, cheating online can ruin the game for others. And possibly if reported, could get you VAC Banned.

Can I use ISZ_J and/or ISZ_R?

  • Yes! Infact both of these codes/cheats are avaliable in "THIS" Plugin! Same controls, with more functionality (Faster and Better Super Speed).

Do you accept donations?

  • Yes! I accept donations via PayPal.

Why is this open-source?

  • I love helping others get into Modding anyway I can. Albeit this is a simple cheat, but it is open-source to allow YOU to experiment and make your own Codes.

Why "ISZ-Plugin" vs. "ISZ-Hack-Tool"?

  • ISZ-Plugin allows YOU to be in control of your own Game. Instead of just having preset conditions and Modified Save-Games.

Where do I put the "Automatic Loader" *.dll File?

  • You can put it into the "UnrealModUnlockerPlugins" Folder using UMU, or the "Mods" Folder for both RE-UE4SS and UML. (Note: That the PluginLoader/Wrapper is required along with iszplugin).

Does this support Switch/Linux/MacOS?

  • No, it doesn't support HorizonOS (Switch), MacOS, or Linux Operating Systems. And likely won't ever support these platforms.

Building:

Automatic-Loader (Requires Plugin-Loader)

  • Supports Automatic Loading the "ISZ-2021-Plugin" with UMU, RE-UE4SS, and UML.
> g++ -shared -o iszplg_loader.dll -O3 -s iszplg_load.cpp

Plugin-Loader

  • A Basic Wrapper for the DLL Plugin Loading.
> g++ -o PluginLoader.exe -O3 -s PluginWrapper.cpp

RE-UE4SS Plugin

> g++ -shared -o iszplugin_lua.dll -O3 -s iszplugin_lua.cpp

UUU4 Plugin

  • UUU4 (Universal UE4 Unlocker) Plugin.
> g++ -shared -o iszplugin_uuu.dll -O3 -s iszplugin_uuu.cpp

ISZ-Injector Plugin

  • ISZCI (ISZ Console Injector) Plugin.
> g++ -shared -o iszplugin_isz_inj.dll -O3 -s iszplugin_isz_inj.cpp

Documentation/Dumps:

  • Want to make your own ISZ PC/Steam Plugins?
  • You can make your own using these Dump Files Here.

Call 'iszplugin.dll' files Yourself:

Function Names:

Credits();
Jumping();
Walkspeed();
ResetWalk();
FastTime();
NormalTime();
Status();
Vehcile();
ResetVehcile();
InfAmmo();
NoReleoad();
InfWeapon();
Invisible();
Zoom();
Range();

Example Calling:

#include <iostream>
#include <windows.h>
#include <TlHelp32.h>
#include <cstdlib>
#include <string>

typedef void (*HiddenFunc)();

int main() {

    HINSTANCE dllHandle = nullptr;
    dllHandle = LoadLibrary("iszplugin_uuu.dll");

    if (dllHandle == NULL) {
        std::cerr << "Failed to load the DLL Plugin." << std::endl;
        Sleep(2000);
        std::exit(0);
    }

    HiddenFunc Hidden = reinterpret_cast<HiddenFunc>(GetProcAddress(dllHandle, "Invisible"));

    if (Hidden == NULL) {
        std::cerr << "Failed to Find Allocated Memory for DLL Plugin." << std::endl;
        FreeLibrary(dllHandle);
        Sleep(2000);
        std::exit(0);
    }

    while (1==1){
    if (GetAsyncKeyState(VK_DIVIDE) & 0x8000) // Forward Slash Enables Invisibility
        {
            Sleep(10);
            Hidden();
        }
    }

    if ((GetAsyncKeyState(VK_ESCAPE) & 0x8000) && (GetAsyncKeyState(VK_CONTROL) & 0x8000))
        {
            break;
        }
  }

FreeLibrary(dllHandle);
std::exit(0);

}

Credits:

  • @Cracko298 - Head/Lead Researcher & Developer of Plugin.
  • @YT-Toaster - Co-Developer & Researcher of Plugin.
  • @KingBlueJay - Tested-Out Plugin Offline and Online Codes.
  • @GageCover - Tested-Out Plugin Offline & Online Codes.
  • And everyone else who helped use, and test out the plugin!

isz-2021-plugin's People

Contributors

cracko298 avatar yt-toaster avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.