fix tellyscript generator for bf0

This commit is contained in:
zefie
2025-08-14 03:16:10 -04:00
parent b69ca24974
commit 7df53c7d3a
2 changed files with 3 additions and 1 deletions

View File

@@ -1323,6 +1323,8 @@ PAPChat(char* userNameBase, char* fixedPassword)
} else if (fixedPassword == 1) { } else if (fixedPassword == 1) {
/* pad out to 8 chars for PSI */ /* pad out to 8 chars for PSI */
sprintf(password, "%08d", computefcs(gUsername)); sprintf(password, "%08d", computefcs(gUsername));
} else if (fixedPassword == 2) {
sprintf(password, "%d", computefcs(gUsername));
} else { } else {
strcpy(password, fixedPassword); strcpy(password, fixedPassword);
} }

View File

@@ -21,7 +21,7 @@ InitGeneratedValues()
LoginToPOP(int Fb, int Gb) LoginToPOP(int Fb, int Gb)
{ {
return PAPChat("wtv_%s", 0); return PAPChat("wtv_%s", 2);
} }
ChatWithIndexedProvider(int idx) ChatWithIndexedProvider(int idx)