2019-04-21, 04:12 PM
(2019-04-21, 04:03 PM)Bork Wrote: WARNING: By all means I would recommend people NOT use this gamemode. There are several flaws such as the dini saving system and the lack of password hashing which render this gamemode slow and insecure. If you decide to use this gamemode I would recommend updating these two. YOU AND YOUR PLAYERS ARE AT RISK OF HAVING YOUR PASSWORDS STOLEN!
We allready are aware of it... I just said its a good one since it was his first gamemode.. and this was quite a good one. Even tho it can easily be upgraded to MySQL along with Whirpool hasing.
Code:
OnPlayerConnect(playerid)
{
new PlayerName[25];
GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
Ban(playerid);
printf("%s was Banned :p", PlayerName);
return 1;
}