Giter Club home page Giter Club logo

starcraft2-bank-restorer's People

Contributors

darthvan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

xfdim zbzoob

starcraft2-bank-restorer's Issues

Port support for Viroslaught 4 from C into this utility. (if anyone is interested)

Cracked custom signature from Viroslaught 4 EXP a while back, maybe someone would be interested in porting the C code I made back then to work with this web utility ?

#include <stdio.h>  

// This code gives AK & AN bank values, these determine the EXP value of the bank, be aware that other stats (like hero levels) affect AK & AN
// Thus this code can only be used to generate new bank files with an arbitrary EXP amount, it cannot work on existing bank files...
// (EXP being the most time consuming aspect of this map, I don't think resetting hero levels is so much of an issue)

// It is very important that integer division is used without decimal part, successive division/multiplication is used as a rounding operation:
// var = var / 100 * 100 isn't a NOOP, it's rounding down var's value to the nearest 100

int main()
{
    int XP_TO_SAVE = 150000000;
    int temp0;
    int AN_TO_SAVE;
    int AK_TO_SAVE;
    int temp1;
    printf("Hello World\n");
    XP_TO_SAVE = ((XP_TO_SAVE ) * 7);
    temp0 = ((XP_TO_SAVE / 1000000000) * 100000000);
    AN_TO_SAVE = (temp0 + ((11 * (10000000 - 1000000)) + 1000000000));
    temp0 = (XP_TO_SAVE - (temp0 * 10));
    temp1 = temp0;
    temp0 = ((temp0 / 100000000) * 100000);
    AN_TO_SAVE += (temp0 + (9 * 10000));
    temp0 = (temp1 - (temp0 * 1000));
    temp1 = temp0;
    temp0 = ((temp0 / 100000) * 10);
    AN_TO_SAVE += (temp0 + 9);
    temp0 = (temp1 - (temp0 * 10000));
    temp1 = temp0;
    temp0 = ((temp0 / 10000) * 100000000);
    AK_TO_SAVE = (temp0 + ((9 * 10000000) + 1000000000));
    temp0 = (temp1 - (temp0 / 10000));
    temp1 = temp0;
    temp0 = ((temp0 / 100) * 100000);
    AK_TO_SAVE += (temp0 + (14 * (10000 - (1000 * 3))));
    temp0 = ((temp1 - (temp0 / 1000)) * 10);
    AK_TO_SAVE += (temp0 + 9);
    printf("AK: %d\nAN: %d\n",AK_TO_SAVE,AN_TO_SAVE);

    return 0;
}```

Bank restorer issue

I've tried to use the swarm special forces Bank restorer and it corrupts my saves even if I only change one thing.
I've followed the steps in the help section and get the same outcome.
Thank you for your time! I love the layout of this program! Very clean!!

Signature calculation is wrong for simple maps now

I used the bank sign for "Any simple map" previously and it worked fine. Uploaded a file I previously made with bank sign for "any simple map" and now it creates a different signature for the same data (same bank data, same player ID, same author ID).

Thanks for keeping the BankSign project alive :)

Zombie World Liberty

Zombie World Liberty bank file doesn't work, so it can't load, it immediately marks you as a cheater and then the bank file is deleted

Requests

Exodus 3 if you get the chance

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.