GithubHelp home page GithubHelp logo

ncpatcher's Introduction

Hello there! ๐Ÿ˜„

My name is Tiago Silva

I am a hobbist programmer that likes to code just because I usually have nothing to do or want to make something useful to help others.

Discord: @thegameratort



A snippet of code for you to try out. ๐Ÿ˜‰

#include <iostream>
#include <cstring>

static const char* input = "XQXQ,&),Ve^Y,^e]RUb,Rbbbbb";

int main() {
    size_t input_size = strlen(input);
    char* output = new char[input_size];
    for (size_t i = 0; i < input_size; i++) {
        char c = input[i];
        if (c == 0x2C) {
            output[i] = static_cast<char>(0x20);
        } else {
            output[i] = static_cast<char>(c + 0x10);
        }
    }
    std::cout << output;
    delete[] output;
    return 0;
}

What are you doing here!!!???? ๐Ÿ˜ณ๐Ÿ˜ณ๐Ÿ˜ณ

ncpatcher's People

Contributors

mariomadproductions avatar thegameratort avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

nepetaiscute

ncpatcher's Issues

ncp_set_over wanted!

I request an ncp_set_over macro that lets you define binary data replacements given a symbol name.
This is how you'd use such a feature:

// Replaces data at 0x02012348 with the contents of Test::myVar
ncp_set_over(0x02012348, _ZN4Test5myVarE);

// Replaces data at 0x02100800 in overlay 10 with the contents of Test::func()
ncp_set_over(0x02100800, 10, _ZN4Test4funcEv);

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.