RealSoft
Banned User
21:42 Azru [36]: you have been playing tibia for 4 years, been online on that character almost everyday for the past 2 years, and still you haven't pass level 15... dude, damn you suck!
int Check_File(char *FileName)
{
ifstream FileL;
FileL.open(FileName);
if(!FileL)
{
FileL.close();
return -1;
}
else
{
FileL.close();
return 0;
}
}