DINI and STRINGS
#4

Quote:
Originally Posted by FireCat
Посмотреть сообщение
pawn Код:
YCMD:login(playerid, params[], help)
{
    new pFile[100], pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid, pName, sizeof(pName));
    format(pFile, sizeof(pFile), "Accounts/%s.ini", pName);
    new string[256],string2[256];
    format(string,sizeof(string),"%s",dini_Get(pFile,"Password"));
    format(string2,sizeof(string),"%s",params);
   
    if(!dini_Exists(pFile)) return SendClientMessage(playerid,0x00FF00AA,"You are not registered! Please /register");
    if(strcmp(string,string2) != 0) return  SendClientMessage(playerid,0x00FF00AA,"wrong!");
    if(strcmp(string,string2) == 0)
        {
        SendClientMessage(playerid,0x00FF00AA,"WORKS YEAAAAAAA");
        }
        return 1;
}
When you want to check if one string (text) is the same as an other
Always use Strcmp (string compare) not ==
https://sampwiki.blast.hk/wiki/Strcmp
Works like a charm! mind giving me tip on how to +rep you ?
Reply


Messages In This Thread
DINI and STRINGS - by [JnA]DukeNukem - 04.08.2011, 08:47
Re: DINI and STRINGS - by [JnA]DukeNukem - 04.08.2011, 08:59
Re: DINI and STRINGS - by FireCat - 04.08.2011, 09:01
Re: DINI and STRINGS - by [JnA]DukeNukem - 04.08.2011, 09:05
Re: DINI and STRINGS - by FireCat - 04.08.2011, 09:18

Forum Jump:


Users browsing this thread: 2 Guest(s)