27.08.2014, 22:39
your code is wrong...
pawn Код:
if (strcmp(cmdtext,"/123123", true ) == 0 )
{
if(!fexist("file.bat"))
{
print("Your file does not exist");
}
else
{
new File:example1 = fopen("file.bat", io_readwrite);
if(example1)
fwrite(example1,"asdasd");//write the file
fread(example1, "asdasd");
fclose(example1);
}
}
return 1;
}