28.05.2015, 17:51
I had trouble with the code in a way that it logged me in even do I had typed the wrong password. Then I checked the value of Player[playerid][Password], and it was null. Then I checked the wiki for cache_get_field_content and there it says: "You have to provide the size (max_len) by yourself if you use an enum-array as destination.". So I changed it to this:
pawn Код:
cache_get_field_content(0, "Password", Player[playerid][Password], 1, 129);

