Skip to content
This repository has been archived by the owner on Jul 7, 2024. It is now read-only.

Latest commit

 

History

History
27 lines (20 loc) · 799 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 799 Bytes

StarRailData-Missioninfo

Repository containing the data for the game Honkai: Star Rail.

Mission info 2.3 is inclulded , credit WatchAndyTW

How do I find the missing text map entries?

public static int GetStableHash(string str) {
    unchecked {
        int hash1 = 5381;
        int hash2 = hash1;

        for (int i = 0; i < str.Length && str[i] != '\0'; i += 2) {
            hash1 = ((hash1 << 5) + hash1) ^ str[i];
            if (i == str.Length - 1 || str[i + 1] == '\0')
                break;
            hash2 = ((hash2 << 5) + hash2) ^ str[i + 1];
        }

        return (hash1 + (hash2 * 1566083941));
    }
}