Hallo liebes Brotfisch,
ich habe momentan ein Problem beim Scripten, wo der Server nicht von einer .txt datei lesen kann.
Damit ihr einen möglichst leichten Überblick über mein Problem bekommt, hänge ich ein Screenshot an, indem alles wichtige steht.
Note: Die Funktion wird bei OngamemodeInit aufgerufen und durch den Objekt Streamer mehrmals.
Link zum Screenshot: Link
Wäre sehr erfreut, wenn ihr mir helfen könntet.
Und hier nochmal der Code zur besseren Übersicht:
stock IpBancheck()
{
new string[64];
//GetPlayerIp(playerid,tIp,sizeof(tIp));
new File:iFile =fopen("Ipbans.txt",io_read);
while(fread(iFile, string)) //reads the file line-by-line
{
if(strcmp(string, "Ban", true) == 0) //if any of the lines in the file say "Ban" the system will ban the player
{
print("Ban Found");
}
else{
print("Ban not found");
}
}
fclose(iFile);
return 1;
//Anker2
}