Search Results
Password are hashed to secure them. They are not meant to be De-hashed
109
I dont save Password on each Disconnect.
156
There is no problems with ip saving. And IP is a string.
156
First i need to fix this problem. Then i will improve security.
156
Try updating all includes and plugins. Recompile your script. Make sure you are using right samp version for gamemode.
238
All the stats except Password and Ip aren`t saving! pawn Код: public OnPlayerDisconnect(playerid, reason){    new h, m, s;    TotalGameTime(playerid, h, m, s);    new INI:File = INI_Open(Us...
156
I dont use Timer anymore. pawn Код: forward LoadUser_data(playerid,name[],value[]);public LoadUser_data(playerid,name[],value[]){    INI_Int("Password",PlayerInfo[playerid][pPass]);    INI_Int...
224
pawn Код: stock TotalGameTime(playerid, &h=0, &m=0, &s=0){    PlayerInfo[playerid][pTotalTime] =    (        (gettime() - PlayerInfo[playerid][pConnectTime]) + (PlayerInfo[play...
224
pawn Код: forward timetimer();public timetimer(){    for(new i; i<MAX_PLAYERS; i++)    {        if(!IsPlayerConnected(i)) continue;        PlayerInfo[i][pSeconds] ++;        if(...
224
pawn Код: public OnPlayerDisconnect(playerid, reason){    new INI:File = INI_Open(UserPath(playerid));    INI_SetTag(File,"data");    INI_WriteInt(File,"Cash",GetPlayerMoney(playerid));   ...
224
Is this what you mean? https://sampforum.blast.hk/showthread.php?tid=282753
90
if you didnt make/edit include its most likely your script
151
pawn Код: [debug] #0 0000941c in public Streamer_OnPlayerConnect () at C:\Users\MaHdy\Desktop\SPA\filterscripts\AdminSystem.pwn:517 I think it means line 517 of AdminSystem.pwn (Not sure) So show ...
151
Fixed it myself. For others who have same problem pawn Код: public OnPlayerCommandReceived(playerid, cmdtext[])  //return 0 to disable commands
130