24.08.2016, 15:40
I'm sure the crashing of the server is related to the files (not permissions to write or invalid file handle).
If I'm not mistaken, the older version of dini had this issue but it was fixed later. Update the include just to be sure and have crashdetect plugin loaded to get some logs about what caused the crash. Compiling with debug info will also give a more detailed report.
As for ignoring the space, replace with:
Quite specifiers (wraped with { }) are ingored. The "s" specifier also needs the size specified.
EDIT: I forgot to close square bracket, replaced with {s[64]}
It still works but let keep the correct syntax anyway.
If I'm not mistaken, the older version of dini had this issue but it was fixed later. Update the include just to be sure and have crashdetect plugin loaded to get some logs about what caused the crash. Compiling with debug info will also give a more detailed report.
As for ignoring the space, replace with:
pawn Код:
if (sscanf(params, "us[64]{s[64]}", iPlayer, Rank)) return SCP(playerid, "[PlayerID/PartOfName] [Group Name]");
EDIT: I forgot to close square bracket, replaced with {s[64]}
It still works but let keep the correct syntax anyway.