I'm trying to add new characters to my gikopoi instance, but I couldn't it out, so I'm asking here. This is the software that I'm using:
https://github.com/153/gikopoi3.
The first thing I tried was adding a new directory in the static/characters directory and naming it after the character I want to add with the .png files for that in there. Then I grep'ed through the source code to see where it loads the characters from. I tried it with "yume" in order to search for the Yumme Nikki character.
$ grep -r yume .
grep: ./.git/index: binary file matches
./static/scripts/character.js: yume: new Character("yume", "png", false),
./build/index.js: || characterId == "yume"
./index.ts: || characterId == "yume"
Eventually I went through the source code and added in both the static/scripts/character.js and the index.ts the character as all the characters are there.It does create a new slot, like you can see, but it doesn't load at all. It's stuck on the login page and doesn't continue to the actual game. It worked neither on the my server nor when I tested it on my computer as localhost.
Are tehre any people, who set up gikopoi before, and know how to do that?