Page 1 of 5

Epl persona 4 extracting error?

Posted: Sat May 23, 2020 10:14 am
by slasherguy21
Image
I keep getting this error when I use the EPL Extractor by ThatTrueStruggle,
can anyone help me out, please?

Re: Epl persona 4 extracting error?

Posted: Sat May 23, 2020 10:49 am
by Poipt
That's strange, decode works fine for me. What Python version do you have?

Re: Epl persona 4 extracting error?

Posted: Sat May 23, 2020 10:54 am
by slasherguy21
3.7

Re: Epl persona 4 extracting error?

Posted: Sat May 23, 2020 10:55 am
by slasherguy21
I am just trying to extract the cutin's btw

Re: Epl persona 4 extracting error?

Posted: Sat May 23, 2020 11:00 am
by Poipt
The program is trying to decode a string, which is already decoded. Try adding a b in front of the string, like

Code: Select all

b"F00...".decode("hex")

Re: Epl persona 4 extracting error?

Posted: Sat May 23, 2020 11:01 am
by Poipt
Or maybe

Code: Select all

"F00...".encode().decode("hex")

Re: Epl persona 4 extracting error?

Posted: Sat May 23, 2020 11:04 am
by slasherguy21
In within the cmd or python script?

Re: Epl persona 4 extracting error?

Posted: Sat May 23, 2020 11:04 am
by Poipt
The python script.

Re: Epl persona 4 extracting error?

Posted: Sat May 23, 2020 11:05 am
by slasherguy21
I'll see what it can do

Re: Epl persona 4 extracting error?

Posted: Sat May 23, 2020 11:11 am
by slasherguy21
it says this "hex' is not a text encoding; use codecs.decode() to handle arbitrary codecs"