12.02.2012, 17:55
I've attempted to create a changepassword command which works perfectly, except for one thing..
Here's the code.. What's the problem?
Quote:
Passcode = 43057480 [data] Passcode = 20644050 RegisteredIP = 127.0.0.1 Funds = 0 BankFunds = 0 SkinModel = 0 Kills = 0 Deaths = 0 EventsWon = 0 X_Pos = 149.641220 Y_Pos = -140.928146 Z_Pos = 2.172309 Ang_Pos = 179.944030 |
pawn Код:
CMD:changepassword(playerid, params[])
{
if(isnull(params))
return SendClientMessage(playerid, -1, ""#LIME"<CMD USAGE> "#WHITE"/changepassword <new password>");
accInfo[playerid][Passcode] = udb_hash(params);
new
INI:accFile = INI_Open(find_accPath(playerid) );
INI_WriteInt(accFile, "Passcode", udb_hash(params) );
INI_Close(accFile);
return true;
}