// ......
std::string Pack = defaultLocation;
Pack.append(reader.Get("", x1.c_str(), "null"));
std::string Start = reader.Get("", x2.c_str(), "null");
std::string Length = reader.Get("", x3.c_str(), "null");
unsigned long long StartI = ll_from_string(Start);
unsigned long long LengthI = ll_from_string(Length);
char *data;
std::ifstream myfile;
myfile.open(Pack.c_str());
myfile.seekg(0, StartI); // here is the error
myfile.read(&data,LengthI);
myfile.close();
cannot convert long long int to sd::ios_base seekdir, and i don't even know if i'm doing this right
i really cant figure this out on my own