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

Quote:
Originally Posted by Dan.
View Post
Huh, hello again Kush, I keep having problems with your REGISTER/LOGIN scripts, take a look at this:

pawn Code:
(242) : error 017: undefined symbol "UserPath"
(244) : error 017: undefined symbol "UserPath"
(245) : error 017: undefined symbol "DIALOG_LOGIN"
(245) : warning 215: expression has no effect
(245) : error 001: expected token: ";", but found "-string-"
(245) : warning 215: expression has no effect
(245) : error 001: expected token: "-string end-", but found "-identifier-"
(245) : fatal error 107: too many error messages on one line
And here are the lines:

pawn Code:
public OnPlayerConnect(playerid)
{
    if(fexist(UserPath(playerid))) // 242
    {
        INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid); // 244
       ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,""COL_WHITE"Login",""COL_WHITE"Type your password below to login.","Login","Quit"); //245
    }
    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;
}
I guess the errors are because DIALOG_LOGIN and UserPath are not defined, but take a look at this:

pawn Code:
// Register system things
#define DIALOG_REGISTER 1
#define DIALOG_LOGIN 2
#define DIALOG_SUCCESS_1 3
#define DIALOG_SUCCESS_2 4

#define UserPath "/Users/%s.ini"
The #define UserPath was "PATH" before.. changed it but still the same thing, so maybe you could help. And dont offer me your pastebin version, not going to copy my whole script into there, so some help, please.
The main idea for this tutorial was to explain the uses of each method used, including the different callbacks, functions, and responses. This is the same tutorial as my SII, only it's done in Y_INI and a few things has been changed. Either download the .pwn and see how everything is placed, or actually READ what I have written.
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)