[Tutorial] Login and Register System - Dialogs - Using Y_INI
#1

Login and Register System - Dialogs - Using Y_INI


What is this?
A simple tutorial on how to make a Login and Register system using Y_INI.

What is Y_INI?
Y_INI is an extensive .INI based file reader and writer, also known as a 'File Management System' created by ******. This is included in the YSI Library/Directory along with other useful includes such as y_commands (YCMD) and y_groups.


What's the difference between this and my file writer?
Y_INI has not only been said, but has been proven to be one of the fastest and most efficient .INI file readers and writers created. You can read more by visiting: https://sampforum.blast.hk/showthread.php?tid=175565


How to 'install' y_ini?
You must first download y_INI ----> https://sampforum.blast.hk/showthread.php?tid=175565. Once the download has finished, place the YSI folder in your includes folder.


Step I
Add the Y_INI Include at the beginning of the script.
pawn Code:
#include <YSI\y_ini>
This include contains all necessary functions needed to create our Login and Register system.


Step II
Lets define some Dialogs.

pawn Code:
#define DIALOG_REGISTER 1
#define DIALOG_LOGIN 2
#define DIALOG_SUCCESS_1 3
#define DIALOG_SUCCESS_2 4

Step III
Defining the 'PATH' of the .INI file.

pawn Code:
#define PATH "/Users/%s.ini"
Step IV
Lets add some colors.

pawn Code:
#define COL_WHITE "{FFFFFF}"
#define COL_RED "{F81414}"
#define COL_GREEN "{00FF22}"
#define COL_LIGHTBLUE "{00CED1}"
Step V
We're going to use an enum, to store our variables.

pawn Code:
enum pInfo
{
    pPass,
    pCash,
    pAdmin,
    pKills,
    pDeaths
}
new PlayerInfo[MAX_PLAYERS][pInfo];
Step VI
Now, we're going to create a function to Load the User's data.


pawn Code:
forward LoadUser_data(playerid,name[],value[]);
public LoadUser_data(playerid,name[],value[])
{
    INI_Int("Password",PlayerInfo[playerid][pPass]);
    INI_Int("Cash",PlayerInfo[playerid][pCash]);
    INI_Int("Admin",PlayerInfo[playerid][pAdmin]);
    INI_Int("Kills",PlayerInfo[playerid][pKills]);
    INI_Int("Deaths",PlayerInfo[playerid][pDeaths]);
    return 1;
}

Step VII
Lets create a simple stock function.

pawn Code:
stock UserPath(playerid)
{
    new string[128],playername[MAX_PLAYER_NAME];
    GetPlayerName(playerid,playername,sizeof(playername));
    format(string,sizeof(string),PATH,playername);
    return string;
}
The stock function 'UserPath' is merely going to 'grab' the 'PATH' of the User's file.

Step VIII
Add this code below your previous stock function.
pawn Code:
/*Credits to Dracoblue*/
stock udb_hash(buf[]) {
    new length=strlen(buf);
    new s1 = 1;
    new s2 = 0;
    new n;
    for (n=0; n<length; n++)
    {
       s1 = (s1 + buf[n]) % 65521;
       s2 = (s2 + s1)     % 65521;
    }
    return (s2 << 16) + s1;
}
The stock above is a simple 'hasher', and will be used to hash passwords, Credits to Dracoblue.


Step IX
We're going to now use the 'OnPlayerConnect' callback to check whether the player is registered or not.
pawn Code:
public OnPlayerConnect(playerid)
{
    if(fexist(UserPath(playerid)))
    {
        INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
        ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,""COL_WHITE"Login",""COL_WHITE"Type your password below to login.","Login","Quit");
    }
    else
    {
        ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT,""COL_WHITE"Registering...",""COL_WHITE"Type your password below to register a new account.","Register","Quit");
    }
    return 1;
}
We'll be using the native 'fexist' function to search for our file. Parameters are set to our stock function which we've created. If the file exists, you will receive a 'Login' dialog. If it doesn't, you will receive a register dialog.


Step X

pawn Code:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    switch( dialogid )
    {
        case DIALOG_REGISTER:
        {
            if (!response) return Kick(playerid);
            if(response)
            {
                if(!strlen(inputtext)) return ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT, ""COL_WHITE"Registering...",""COL_RED"You have entered an invalid password.\n"COL_WHITE"Type your password below to register a new account.","Register","Quit");
                new INI:File = INI_Open(UserPath(playerid));
                INI_SetTag(File,"data");
                INI_WriteInt(File,"Password",udb_hash(inputtext));
                INI_WriteInt(File,"Cash",0);
                INI_WriteInt(File,"Admin",0);
                INI_WriteInt(File,"Kills",0);
                INI_WriteInt(File,"Deaths",0);
                INI_Close(File);

                SetSpawnInfo(playerid, 0, 0, 1958.33, 1343.12, 15.36, 269.15, 0, 0, 0, 0, 0, 0);
                SpawnPlayer(playerid);
                ShowPlayerDialog(playerid, DIALOG_SUCCESS_1, DIALOG_STYLE_MSGBOX,""COL_WHITE"Success!",""COL_GREEN"Great! Your Y_INI system works perfectly. Relog to save your stats!","Ok","");
            }
        }

        case DIALOG_LOGIN:
        {
            if ( !response ) return Kick ( playerid );
            if( response )
            {
                if(udb_hash(inputtext) == PlayerInfo[playerid][pPass])
                {
                    INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
                    GivePlayerMoney(playerid, PlayerInfo[playerid][pCash]);
                    ShowPlayerDialog(playerid, DIALOG_SUCCESS_2, DIALOG_STYLE_MSGBOX,""COL_WHITE"Success!",""COL_GREEN"You have successfully logged in!","Ok","");
                }
                else
                {
                    ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,""COL_WHITE"Login",""COL_RED"You have entered an incorrect password.\n"COL_WHITE"Type your password below to login.","Login","Quit");
                }
                return 1;
            }
        }
    }
    return 1;
}
Instead of using the 'if' statement to define my dialogs, I've used cases as they seem to take less space and are supposedly 'faster'. The (!response) is the function if the first Button hasn't been clicked, it will then kick the player.

The if(!strlen(inputtext)) explains if nothing has been entered into the dialog (input), you would then be prompted to another dialog which shows you 'Incorrect Password'.

If all goes well, the function INI_Open is then 'executed' which loads and opens the Userfile. Once open, the function 'INI_WriteInt' is then called and starts writing the data into the userfile. The udb_hash would generate a hash code from the player's inputtext (what you've typed). And after all this is completed, it is then closed by 'INI_Close' function.

Once finished, you will then be prompted to the 'Login' dialog.


In 'DIALOG_LOGIN', if the response is false (you have clicked 'QUIT), you would then be kicked. If given the correct information (password provided), the INI_Parsefile function would then scan and load your player's data.

Step XI
Don't forget, you would need a way to save those variables. The OnPlayerDisconnect callback simply re-opens the files, write what-ever values which has been stored and then closes it.
pawn Code:
public OnPlayerDisconnect(playerid, reason)
{
    new INI:File = INI_Open(UserPath(playerid));
    INI_SetTag(File,"data");
    INI_WriteInt(File,"Cash",GetPlayerMoney(playerid));
    INI_WriteInt(File,"Admin",PlayerInfo[playerid][pAdmin]);
    INI_WriteInt(File,"Kills",PlayerInfo[playerid][pKills]);
    INI_WriteInt(File,"Deaths",PlayerInfo[playerid][pDeaths]);
    INI_Close(File);
    return 1;
}
Step XII
Finally, add this to OnPlayerDeath to add value(s) to kills and deaths.

pawn Code:
public OnPlayerDeath(playerid, killerid, reason)
{
    PlayerInfo[killerid][pKills]++;
    PlayerInfo[playerid][pDeaths]++;
    return 1;
}
Downloads:



Credits:
****** - y_ini.
Reply


Messages In This Thread
Login and Register System - Dialogs - Using Y_INI - by Kush - 31.07.2011, 09:27
Re: Login and Register System - Dialogs - Using Y_INI - by Black_Death - 31.07.2011, 09:30
Re: Login and Register System - Dialogs - Using Y_INI - by Tyler_Cordwell - 31.07.2011, 09:31
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 31.07.2011, 09:38
Re: Login and Register System - Dialogs - Using Y_INI - by kingchandio - 31.07.2011, 09:44
Re: Login and Register System - Dialogs - Using Y_INI - by Basicz - 31.07.2011, 09:56
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 31.07.2011, 09:59
Re: Login and Register System - Dialogs - Using Y_INI - by kingchandio - 31.07.2011, 10:10
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 31.07.2011, 10:28
Re: Login and Register System - Dialogs - Using Y_INI - by kingchandio - 31.07.2011, 10:31
Re: Login and Register System - Dialogs - Using Y_INI - by Dan. - 01.08.2011, 14:12
Re: Login and Register System - Dialogs - Using Y_INI - by Snowman12 - 01.08.2011, 15:07
Re: Login and Register System - Dialogs - Using Y_INI - by Shockey HD - 01.08.2011, 17:35
Re: Login and Register System - Dialogs - Using Y_INI - by Shockey HD - 01.08.2011, 17:39
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 01.08.2011, 18:11
Re: Login and Register System - Dialogs - Using Y_INI - by jot16 - 02.08.2011, 05:01
Re: Login and Register System - Dialogs - Using Y_INI - by Shockey HD - 02.08.2011, 05:21
Re: Login and Register System - Dialogs - Using Y_INI - by jot16 - 02.08.2011, 05:23
Re: Login and Register System - Dialogs - Using Y_INI - by Shockey HD - 02.08.2011, 05:28
Re: Login and Register System - Dialogs - Using Y_INI - by jot16 - 02.08.2011, 05:30
Re: Login and Register System - Dialogs - Using Y_INI - by Shockey HD - 02.08.2011, 05:32
Re: Login and Register System - Dialogs - Using Y_INI - by jot16 - 02.08.2011, 05:33
Re: Login and Register System - Dialogs - Using Y_INI - by Shockey HD - 02.08.2011, 05:34
Re: Login and Register System - Dialogs - Using Y_INI - by jot16 - 02.08.2011, 05:36
Re: Login and Register System - Dialogs - Using Y_INI - by Shockey HD - 02.08.2011, 05:37
Re: Login and Register System - Dialogs - Using Y_INI - by jot16 - 02.08.2011, 05:40
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 02.08.2011, 06:06
Re: Login and Register System - Dialogs - Using Y_INI - by Shockey HD - 02.08.2011, 06:09
Re: Login and Register System - Dialogs - Using Y_INI - by iiKyle - 04.08.2011, 11:27
Re: Login and Register System - Dialogs - Using Y_INI - by jstowe - 04.08.2011, 16:42
Re: Login and Register System - Dialogs - Using Y_INI - by Shockey HD - 04.08.2011, 16:53
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 04.08.2011, 17:09
Re: Login and Register System - Dialogs - Using Y_INI - by Collin - 04.08.2011, 17:10
Re: Login and Register System - Dialogs - Using Y_INI - by jstowe - 04.08.2011, 17:15
Re: Login and Register System - Dialogs - Using Y_INI - by Shockey HD - 04.08.2011, 17:34
Re: Login and Register System - Dialogs - Using Y_INI - by iiKyle - 05.08.2011, 01:25
Re: Login and Register System - Dialogs - Using Y_INI - by Chrillzen - 05.08.2011, 04:17
Re: Login and Register System - Dialogs - Using Y_INI - by Shockey HD - 05.08.2011, 07:21
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 18.08.2011, 21:57
Re: Login and Register System - Dialogs - Using Y_INI - by 0_o - 18.08.2011, 22:04
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 18.08.2011, 22:11
Re: Login and Register System - Dialogs - Using Y_INI - by 0_o - 18.08.2011, 22:14
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 18.08.2011, 22:16
Re: Login and Register System - Dialogs - Using Y_INI - by 0_o - 18.08.2011, 22:36
Re: Login and Register System - Dialogs - Using Y_INI - by ElieJabbour - 18.08.2011, 23:33
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 18.08.2011, 23:55
Re: Login and Register System - Dialogs - Using Y_INI - by Wesley221 - 20.08.2011, 13:21
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 20.08.2011, 13:44
Re: Login and Register System - Dialogs - Using Y_INI - by Admigo - 20.08.2011, 14:14
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 20.08.2011, 14:27
Re: Login and Register System - Dialogs - Using Y_INI - by Wesley221 - 20.08.2011, 14:36
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 20.08.2011, 15:02
Re: Login and Register System - Dialogs - Using Y_INI - by Henkie - 26.08.2011, 06:58
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 26.08.2011, 10:06
Re: Login and Register System - Dialogs - Using Y_INI - by Henkie - 26.08.2011, 10:16
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 26.08.2011, 10:28
Re: Login and Register System - Dialogs - Using Y_INI - by Henkie - 26.08.2011, 10:49
Re: Login and Register System - Dialogs - Using Y_INI - by SantarioLeone - 28.08.2011, 16:41
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 28.08.2011, 16:42
Re: Login and Register System - Dialogs - Using Y_INI - by SantarioLeone - 28.08.2011, 16:48
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 28.08.2011, 16:53
Re: Login and Register System - Dialogs - Using Y_INI - by SantarioLeone - 28.08.2011, 17:04
Re: Login and Register System - Dialogs - Using Y_INI - by Kush - 28.08.2011, 17:20
Re: Login and Register System - Dialogs - Using Y_INI - by SantarioLeone - 30.08.2011, 17:57
Re: Login and Register System - Dialogs - Using Y_INI - by Coffeemonster - 30.08.2011, 20:57
Re: Login and Register System - Dialogs - Using Y_INI - by Tigerbeast11 - 31.08.2011, 11:21
Re: Login and Register System - Dialogs - Using Y_INI - by SantarioLeone - 31.08.2011, 14:09
Re: Login and Register System - Dialogs - Using Y_INI - by Swyft™ - 26.10.2011, 01:17
Re: Login and Register System - Dialogs - Using Y_INI - by newbienoob - 17.05.2012, 14:25
Re: Login and Register System - Dialogs - Using Y_INI - by Ballu Miaa - 17.05.2012, 16:58
Re: Login and Register System - Dialogs - Using Y_INI - by jaami - 17.05.2012, 17:18
Re: Login and Register System - Dialogs - Using Y_INI - by Bokyyy - 21.05.2012, 21:58
Re: Login and Register System - Dialogs - Using Y_INI - by Ballu Miaa - 22.05.2012, 01:30
Re: Login and Register System - Dialogs - Using Y_INI - by Stm - 23.05.2012, 22:37
Re: Login and Register System - Dialogs - Using Y_INI - by ReneG - 23.05.2012, 23:47
Re: Login and Register System - Dialogs - Using Y_INI - by Jonny5 - 24.05.2012, 00:31
Re: Login and Register System - Dialogs - Using Y_INI - by Ballu Miaa - 24.05.2012, 01:29
Re: Login and Register System - Dialogs - Using Y_INI - by Stm - 26.05.2012, 13:38
Re: Login and Register System - Dialogs - Using Y_INI - by David (Sabljak) - 20.06.2012, 20:40
Re: Login and Register System - Dialogs - Using Y_INI - by Speeeeeed - 29.06.2012, 09:56
Re: Login and Register System - Dialogs - Using Y_INI - by ErzaNatsu - 30.06.2012, 00:50
Re: Login and Register System - Dialogs - Using Y_INI - by Speeeeeed - 02.07.2012, 13:00
Re: Login and Register System - Dialogs - Using Y_INI - by Lynn - 05.07.2012, 09:56
Re: Login and Register System - Dialogs - Using Y_INI - by Samp-Media - 07.07.2012, 21:03
Re: Login and Register System - Dialogs - Using Y_INI - by TheDeath - 10.07.2012, 16:27
Respuesta: Login and Register System - Dialogs - Using Y_INI - by !R1Ch@rD! - 12.07.2012, 08:42
Re: Login and Register System - Dialogs - Using Y_INI - by Blunt - 12.07.2012, 11:16
Re: Login and Register System - Dialogs - Using Y_INI - by Goru - 12.07.2012, 13:02
Re: Login and Register System - Dialogs - Using Y_INI - by Bug. - 14.09.2012, 17:55
Re: Login and Register System - Dialogs - Using Y_INI - by Guitar - 15.09.2012, 10:24
Re: Login and Register System - Dialogs - Using Y_INI - by Bug. - 15.09.2012, 13:45
Re: Login and Register System - Dialogs - Using Y_INI - by gtakillerIV - 15.09.2012, 15:00
Re: Login and Register System - Dialogs - Using Y_INI - by Bug. - 15.09.2012, 15:26
Re: Login and Register System - Dialogs - Using Y_INI - by Sig Hansen - 15.09.2012, 15:30
Re: Login and Register System - Dialogs - Using Y_INI - by Bug. - 15.09.2012, 15:44
Respuesta: Login and Register System - Dialogs - Using Y_INI - by RiChArD_A - 20.09.2012, 21:45
Respuesta: Login and Register System - Dialogs - Using Y_INI - by RiChArD_A - 23.09.2012, 22:26
Re: Respuesta: Login and Register System - Dialogs - Using Y_INI - by Glint - 24.09.2012, 07:00
Re: Login and Register System - Dialogs - Using Y_INI - by Glint - 27.09.2012, 18:04
Re: Login and Register System - Dialogs - Using Y_INI - by Bug. - 29.09.2012, 10:06
Re: Login and Register System - Dialogs - Using Y_INI - by NoahF - 29.09.2012, 10:55
Re: Login and Register System - Dialogs - Using Y_INI - by BlueFire_ - 30.09.2012, 12:08
Re: Login and Register System - Dialogs - Using Y_INI - by Bug. - 01.10.2012, 11:18
Re: Login and Register System - Dialogs - Using Y_INI - by Guitar - 01.10.2012, 11:50
Re: Login and Register System - Dialogs - Using Y_INI - by Bug. - 01.10.2012, 12:36
Re: Login and Register System - Dialogs - Using Y_INI - by doreto - 01.10.2012, 13:22
Re: Login and Register System - Dialogs - Using Y_INI - by rayan khan - 06.10.2012, 04:02
Re: Login and Register System - Dialogs - Using Y_INI - by Omar166 - 06.10.2012, 12:24
Re: Login and Register System - Dialogs - Using Y_INI - by Potatoes - 08.10.2012, 11:44
Re: Login and Register System - Dialogs - Using Y_INI - by ZackBoolaro - 08.10.2012, 11:45
Re: Login and Register System - Dialogs - Using Y_INI - by Mustafa6155 - 09.10.2012, 15:41
Re: Login and Register System - Dialogs - Using Y_INI - by Ghost_Boii - 09.10.2012, 23:31
Re: Login and Register System - Dialogs - Using Y_INI - by DownDuckling - 15.10.2012, 22:57
Re: Login and Register System - Dialogs - Using Y_INI - by DownDuckling - 16.10.2012, 23:34
Re: Login and Register System - Dialogs - Using Y_INI - by Zh0ro` - 17.10.2012, 19:29
Re: Login and Register System - Dialogs - Using Y_INI - by DownDuckling - 18.10.2012, 23:57
Re: Login and Register System - Dialogs - Using Y_INI - by Minve - 19.10.2012, 12:26
Re: Login and Register System - Dialogs - Using Y_INI - by DownDuckling - 20.10.2012, 15:53
Re: Login and Register System - Dialogs - Using Y_INI - by SiraBots - 18.11.2012, 23:51
Re: Login and Register System - Dialogs - Using Y_INI - by mls1500 - 19.11.2012, 00:02
Re: Login and Register System - Dialogs - Using Y_INI - by JaKe Elite - 19.11.2012, 09:15
Re: Login and Register System - Dialogs - Using Y_INI - by Konstantinos - 19.11.2012, 09:18
Re: Login and Register System - Dialogs - Using Y_INI - by NismoRush - 20.11.2012, 21:14
Re: Login and Register System - Dialogs - Using Y_INI - by Coder_ - 24.11.2012, 12:12
Re: Login and Register System - Dialogs - Using Y_INI - by Zex Tan - 03.12.2012, 01:24
Re: Login and Register System - Dialogs - Using Y_INI - by Mwowwtittybang - 11.12.2012, 01:03
Re: Login and Register System - Dialogs - Using Y_INI - by Dan. - 14.12.2012, 08:22
Re: Login and Register System - Dialogs - Using Y_INI - by [CG]Milito - 18.12.2012, 04:37
Re: Login and Register System - Dialogs - Using Y_INI - by gtakillerIV - 18.12.2012, 09:29
Re: Login and Register System - Dialogs - Using Y_INI - by Coder_ - 18.12.2012, 17:42
Re: Login and Register System - Dialogs - Using Y_INI - by Coder_ - 18.12.2012, 17:48
Re: Login and Register System - Dialogs - Using Y_INI - by Rashyy - 20.12.2012, 03:54
Re: Login and Register System - Dialogs - Using Y_INI - by Michael_Cruise - 23.12.2012, 15:46
Re: Login and Register System - Dialogs - Using Y_INI - by jNkk - 24.12.2012, 20:29
Re: Login and Register System - Dialogs - Using Y_INI - by Jimmy0wns - 30.12.2012, 19:48
Re: Login and Register System - Dialogs - Using Y_INI - by Giannidw - 31.12.2012, 03:40
Re: Login and Register System - Dialogs - Using Y_INI - by Frank Biohazard - 01.01.2013, 15:27
Respuesta: Login and Register System - Dialogs - Using Y_INI - by RiChArD_A - 23.01.2013, 15:40
Re: Respuesta: Login and Register System - Dialogs - Using Y_INI - by DobbysGamertag - 02.04.2013, 01:19
Re: Login and Register System - Dialogs - Using Y_INI - by Hargrave - 05.05.2013, 17:52
Re: Login and Register System - Dialogs - Using Y_INI - by Pettersen - 18.05.2013, 17:37
Re: Login and Register System - Dialogs - Using Y_INI - by Guest123 - 26.06.2013, 13:55
Re: Login and Register System - Dialogs - Using Y_INI - by coolkowkank - 05.07.2013, 09:53
Re: Login and Register System - Dialogs - Using Y_INI - by Ryan_Bowe - 06.07.2013, 06:43
Re: Login and Register System - Dialogs - Using Y_INI - by Georgi166 - 07.07.2013, 13:18
Re: Login and Register System - Dialogs - Using Y_INI - by kN1GhT - 07.07.2013, 13:22
Re: Login and Register System - Dialogs - Using Y_INI - by Ryan_Bowe - 08.07.2013, 00:03
Re: Login and Register System - Dialogs - Using Y_INI - by Georgi166 - 08.07.2013, 12:41
Re: Login and Register System - Dialogs - Using Y_INI - by iTheScripter - 08.07.2013, 15:16
Re: Login and Register System - Dialogs - Using Y_INI - by PrivatioBoni - 18.07.2013, 09:06
Re: Login and Register System - Dialogs - Using Y_INI - by EasYWiN - 22.07.2013, 08:11
Re : Login and Register System - Dialogs - Using Y_INI - by Garwan50 - 23.07.2013, 14:40
Re : Login and Register System - Dialogs - Using Y_INI - by Garwan50 - 23.07.2013, 19:38
Re : Login and Register System - Dialogs - Using Y_INI - by Garwan50 - 24.07.2013, 20:55
Re : Login and Register System - Dialogs - Using Y_INI - by Garwan50 - 24.07.2013, 23:49
Re : Login and Register System - Dialogs - Using Y_INI - by Garwan50 - 25.07.2013, 15:36
Re: Login and Register System - Dialogs - Using Y_INI - by Binx - 25.07.2013, 15:46
Re: Login and Register System - Dialogs - Using Y_INI - by •Alcatraz• - 25.07.2013, 16:34
Re : Re: Login and Register System - Dialogs - Using Y_INI - by Garwan50 - 25.07.2013, 21:50
Re: Login and Register System - Dialogs - Using Y_INI - by Hargrave - 27.07.2013, 10:06
Re: Login and Register System - Dialogs - Using Y_INI - by jstowe96 - 27.07.2013, 17:46
Re: Login and Register System - Dialogs - Using Y_INI - by ThaCrypte - 01.08.2013, 09:05
Re: Login and Register System - Dialogs - Using Y_INI - by Ryan_Bowe - 01.08.2013, 16:05
Re: Login and Register System - Dialogs - Using Y_INI - by Tuntun - 01.08.2013, 16:38
Re: Login and Register System - Dialogs - Using Y_INI - by EmpireSk - 02.08.2013, 11:43
Re: Login and Register System - Dialogs - Using Y_INI - by CH | FuDo - 02.08.2013, 16:08
Re: Login and Register System - Dialogs - Using Y_INI - by Tuntun - 02.08.2013, 16:09
Re: Login and Register System - Dialogs - Using Y_INI - by RedJohn - 04.08.2013, 00:09
Re: Login and Register System - Dialogs - Using Y_INI - by bustern - 31.08.2013, 14:04
Re: Login and Register System - Dialogs - Using Y_INI - by DanishHaq - 31.08.2013, 14:04
Re: Login and Register System - Dialogs - Using Y_INI - by bustern - 31.08.2013, 19:22
Re: Login and Register System - Dialogs - Using Y_INI - by bustern - 04.09.2013, 17:13
Re: Login and Register System - Dialogs - Using Y_INI - by qazwsx - 21.09.2013, 06:20
Re: Login and Register System - Dialogs - Using Y_INI - by DanishHaq - 21.09.2013, 09:32
Re: Login and Register System - Dialogs - Using Y_INI - by rogueshinobi - 25.09.2013, 10:49
Re: Login and Register System - Dialogs - Using Y_INI - by rogueshinobi - 03.10.2013, 15:39
Re: Login and Register System - Dialogs - Using Y_INI - by DanishHaq - 04.10.2013, 21:24
Re: Login and Register System - Dialogs - Using Y_INI - by AnonScripter - 14.10.2013, 03:39
Re: Login and Register System - Dialogs - Using Y_INI - by DownDuckling - 21.11.2013, 20:12
Re: Login and Register System - Dialogs - Using Y_INI - by Audi_Quattrix - 22.11.2013, 20:32
Re: Login and Register System - Dialogs - Using Y_INI - by DanishHaq - 22.11.2013, 20:45
Re: Login and Register System - Dialogs - Using Y_INI - by Hansrutger - 27.11.2013, 23:23
Re: Login and Register System - Dialogs - Using Y_INI - by 2KY - 28.11.2013, 04:04
Re: Login and Register System - Dialogs - Using Y_INI - by Hansrutger - 28.11.2013, 06:24
Re: Login and Register System - Dialogs - Using Y_INI - by Edu4rd - 25.12.2013, 16:16
Re: Login and Register System - Dialogs - Using Y_INI - by SkyLe - 24.01.2014, 22:20
Re: Login and Register System - Dialogs - Using Y_INI - by Rudiz - 08.02.2014, 10:15
Re: Login and Register System - Dialogs - Using Y_INI - by Extraordinariness - 26.02.2014, 09:58
Re: Login and Register System - Dialogs - Using Y_INI - by Praa - 03.03.2014, 01:39
Re: Login and Register System - Dialogs - Using Y_INI - by Praa - 03.03.2014, 01:43
Re: Login and Register System - Dialogs - Using Y_INI - by ChandraLouis - 07.03.2014, 12:35
Re: Login and Register System - Dialogs - Using Y_INI - by VenomMancer - 20.03.2014, 10:55
Re: Login and Register System - Dialogs - Using Y_INI - by Flstene - 20.03.2014, 20:20
Re: Login and Register System - Dialogs - Using Y_INI - by ]Rafaellos[ - 21.03.2014, 04:11
Re: Login and Register System - Dialogs - Using Y_INI - by VenomMancer - 23.03.2014, 01:34
Re: Login and Register System - Dialogs - Using Y_INI - by gravey - 25.03.2014, 07:23
Re: Login and Register System - Dialogs - Using Y_INI - by GeekSiMo - 20.04.2014, 08:38
Re: Login and Register System - Dialogs - Using Y_INI - by Cena44 - 20.04.2014, 09:28
Re: Login and Register System - Dialogs - Using Y_INI - by N0SsL0 - 27.04.2014, 09:37
Re: Login and Register System - Dialogs - Using Y_INI - by UnknownOwner - 27.04.2014, 09:38
Re: Login and Register System - Dialogs - Using Y_INI - by serdar189 - 27.04.2014, 10:52
Re: Login and Register System - Dialogs - Using Y_INI - by NviDa - 28.04.2014, 05:35
Re: Login and Register System - Dialogs - Using Y_INI - by Andreas1331 - 12.05.2014, 15:14
Re: Login and Register System - Dialogs - Using Y_INI - by bgedition - 08.07.2014, 08:36
Re: Login and Register System - Dialogs - Using Y_INI - by Strummer - 15.07.2014, 16:20
Re: Login and Register System - Dialogs - Using Y_INI - by Nightangle - 22.07.2014, 14:45
Re: Login and Register System - Dialogs - Using Y_INI - by SanAndreasMP - 22.07.2014, 15:21
Re: Login and Register System - Dialogs - Using Y_INI - by GeekSiMo - 01.08.2014, 17:48
Re: Login and Register System - Dialogs - Using Y_INI - by MaxTuner - 05.08.2014, 10:30
Re: Login and Register System - Dialogs - Using Y_INI - by AzaMx - 10.08.2014, 01:28
Re: Login and Register System - Dialogs - Using Y_INI - by Mohamedilham - 04.09.2014, 13:35
Re: Login and Register System - Dialogs - Using Y_INI - by Rissam - 27.09.2014, 07:48
Re: Login and Register System - Dialogs - Using Y_INI - by Steel_ - 27.09.2014, 07:57
Re: Login and Register System - Dialogs - Using Y_INI - by amirm3hdi - 24.04.2015, 05:54
Re: Login and Register System - Dialogs - Using Y_INI - by Champion - 30.06.2015, 18:20
Re: Login and Register System - Dialogs - Using Y_INI - by Eestlane123 - 10.07.2015, 10:12
Re: Login and Register System - Dialogs - Using Y_INI - by MiTaKa - 19.07.2015, 19:15
Re: Login and Register System - Dialogs - Using Y_INI - by Crayder - 19.07.2015, 20:31
Re: Login and Register System - Dialogs - Using Y_INI - by (_AcE_) - 31.07.2015, 18:57
Re: Login and Register System - Dialogs - Using Y_INI - by HyperVoice - 28.08.2015, 21:08
Re: Login and Register System - Dialogs - Using Y_INI - by dimashr12345 - 01.09.2015, 13:04
Re: Login and Register System - Dialogs - Using Y_INI - by AndreiWow - 04.09.2015, 10:46
Re: Login and Register System - Dialogs - Using Y_INI - by DownDuckling - 12.09.2015, 04:57
Re: Login and Register System - Dialogs - Using Y_INI - by GlorifiedPig - 16.11.2015, 15:40
Re: Login and Register System - Dialogs - Using Y_INI - by GlorifiedPig - 17.11.2015, 07:50
Re: Login and Register System - Dialogs - Using Y_INI - by Markhoss - 06.01.2016, 15:37
Re: Login and Register System - Dialogs - Using Y_INI - by salaheddine - 07.01.2016, 19:19
Re: Login and Register System - Dialogs - Using Y_INI - by Joron - 17.01.2016, 23:23
Re: Login and Register System - Dialogs - Using Y_INI - by Cylano - 19.02.2016, 19:34
Re: Login and Register System - Dialogs - Using Y_INI - by Dejan12345 - 18.07.2016, 08:33
Re: Login and Register System - Dialogs - Using Y_INI - by iKarim - 18.07.2016, 08:39
Re: Login and Register System - Dialogs - Using Y_INI - by Mitchyjones - 04.08.2016, 01:16
Re: Login and Register System - Dialogs - Using Y_INI - by Oracle1997 - 04.08.2016, 13:02
Re: Login and Register System - Dialogs - Using Y_INI - by Stinged - 04.08.2016, 13:19
Re: Login and Register System - Dialogs - Using Y_INI - by Mitchyjones - 05.08.2016, 14:37
Re: Login and Register System - Dialogs - Using Y_INI - by Gorgeousmaniac - 21.08.2016, 22:03
Re: Login and Register System - Dialogs - Using Y_INI - by AvicennaRabama - 09.12.2016, 07:44
Re: Login and Register System - Dialogs - Using Y_INI - by FreakyTeddyKiller - 30.03.2017, 11:15
Re: Login and Register System - Dialogs - Using Y_INI - by KizZweLL - 03.04.2017, 19:22
Re: Login and Register System - Dialogs - Using Y_INI - by ShaharG - 27.04.2017, 22:04
Re: Login and Register System - Dialogs - Using Y_INI - by dopeboy1040 - 09.05.2017, 11:04
Re: Login and Register System - Dialogs - Using Y_INI - by DomagojSellug - 14.06.2017, 19:54
Re: Login and Register System - Dialogs - Using Y_INI - by KushalD - 27.08.2017, 10:22
Re: Login and Register System - Dialogs - Using Y_INI - by KushalD - 27.08.2017, 10:24
Re: Login and Register System - Dialogs - Using Y_INI - by Misiur - 27.08.2017, 10:40
Re: Login and Register System - Dialogs - Using Y_INI - by hadyzeeneldin - 09.09.2017, 21:08
Re: Login and Register System - Dialogs - Using Y_INI - by Nardo - 09.12.2017, 21:21
Re: Login and Register System - Dialogs - Using Y_INI - by Tass007 - 13.12.2017, 04:07
Re: Login and Register System - Dialogs - Using Y_INI - by Imbalo - 31.12.2017, 06:54
Re: Login and Register System - Dialogs - Using Y_INI - by Divyanshu - 20.03.2018, 18:39
Re: Login and Register System - Dialogs - Using Y_INI - by GeorgeLimit - 16.04.2018, 05:52
Re: Login and Register System - Dialogs - Using Y_INI - by ProScripter - 16.04.2018, 09:58
Re: Login and Register System - Dialogs - Using Y_INI - by PlayHard - 04.05.2018, 03:15
Re: Login and Register System - Dialogs - Using Y_INI - by CrystalGamer - 04.05.2018, 10:54
Re: Login and Register System - Dialogs - Using Y_INI - by KamilPolska - 22.09.2018, 20:18
Re: Login and Register System - Dialogs - Using Y_INI - by v1k1nG - 22.09.2018, 20:33
Re: Login and Register System - Dialogs - Using Y_INI - by Susenkus - 13.03.2019, 17:36
Re: Login and Register System - Dialogs - Using Y_INI - by Awkward - 20.06.2019, 14:19
Re: Login and Register System - Dialogs - Using Y_INI - by Nitrofuel786 - 21.06.2019, 02:42
Re: Login and Register System - Dialogs - Using Y_INI - by oghabanjb - 22.06.2019, 13:46
Re: Login and Register System - Dialogs - Using Y_INI - by TheMarioTR - 16.09.2019, 14:11
Re: Login and Register System - Dialogs - Using Y_INI - by bero1711 - 13.11.2019, 18:14
Re: Login and Register System - Dialogs - Using Y_INI - by STORIEL000 - 29.06.2020, 10:14

Forum Jump:


Users browsing this thread: 2 Guest(s)