[Tutorial] How to make a register system - DIALOG
#1

New tutorial, now using up-to-date methods!

It's strongly suggested that everyone takes a look at this tutorial, help will be ignored and so will the thread be locked. The tutorial is clearly out-dated.

________________________________________

Register system in Dialog
By Lorenc

So what is this?
Its a tutorial about how to make a register system in dialog. I made this because i found one which was abit faulty and to be honest in my opinion it was crap. In this tutorial I will explain most of it.

Starting
Ok in order to make this we will need 2 includes. Dini & Dudb.
pawn Code:
#include <dini>
#include <dudb>
So just hit compile and you might get a warning like:
pawn Code:
warning 203: symbol is never used: "ret_memcpy"
To prevent that warning just insert this code to the top of your script:
pawn Code:
#pragma unused ret_memcpy
^ what that does is that it tells the script that it will be unused for this moment

Scripting
Great we're on the 2nd step now! so we got our Dudb & Dini working, lets get ready for the real scripting .
pawn Code:
enum pInfo
{
    pAdminLevel,
    pCash,
    pScore,
}
new PlayerInfo[MAX_PLAYERS][pInfo];
^ What in the hell is that? It's an enum that stores things into one variable

You might get one warning but tho it will be gone throughout scripting.

Next we will need to make gPlayerLogged, that means if the player is logged or not.
pawn Code:
new gPlayerLogged[MAX_PLAYERS];
and the last define is the userfile, where the userfile will be.
pawn Code:
#define SERVER_USER_FILE "myserver/%s.ini"
___

Lets move to the onplayer connect callback
Add these codes to the call back.
pawn Code:
gPlayerLogged[playerid] = 0;
    new name[MAX_PLAYER_NAME], file[256];
    GetPlayerName(playerid, name, sizeof(name));
    format(file, sizeof(file), SERVER_USER_FILE, name);
    if (!dini_Exists(file))
    {
        ShowPlayerDialog(playerid, 1, DIALOG_STYLE_INPUT, "Hi your not registered", "Welcome, your not registered mate, input your registration pw below", "Register", "Leave");
    }
    if(fexist(file))
    {
        ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, "Hi your registered", "Fucken awesome mate, your registered :D. Inpute your pw below", "Login", "Leave");
    }
^ what this does is that you connects you as a not logged in person and shows a dialog for if your logged or not logged.

next we have to go to the OnPlayerDisconnect Callback and put:
pawn Code:
new name[MAX_PLAYER_NAME], file[256];
    GetPlayerName(playerid, name, sizeof(name));
    format(file, sizeof(file), SERVER_USER_FILE, name);
    if(gPlayerLogged[playerid] == 1)
    {
        dini_IntSet(file, "Score", PlayerInfo[playerid][pScore]);
        dini_IntSet(file, "Money", PlayerInfo[playerid][pCash]);
        dini_IntSet(file, "AdminLevel",PlayerInfo[playerid][pAdminLevel]);
    }
    gPlayerLogged[playerid] = 0;
^What that will do for us is save our new status in-game plus it logs you out.

Dialogs
We are up to making to dialogs configure now!
so lets start off with the register dialog.

Navigate to OnDialogResponse which is at the bottom of the script usally and add this code.
pawn Code:
if (dialogid == 1)
    {
        new name[MAX_PLAYER_NAME], file[256], string[128];
        GetPlayerName(playerid, name, sizeof(name));
        format(file, sizeof(file), SERVER_USER_FILE, name);
        if(!response) return Kick(playerid);
        if (!strlen(inputtext)) return
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_INPUT, "Hi your not registered", "Welcome, your not registered mate, input your registration pw below", "Register", "Leave");
        dini_Create(file);
        dini_IntSet(file, "Password", udb_hash(inputtext));
        dini_IntSet(file, "AdminLevel",PlayerInfo[playerid][pAdminLevel] = 0);
        dini_IntSet(file, "Money",PlayerInfo[playerid][pCash] = 500);
        dini_IntSet(file, "Score",PlayerInfo[playerid][pScore] = 0);
        format(string, 128, "[SYSTEM]: You succesfully registered the nickname %s with password %s, you have been auto logged in.", name, inputtext);
        SendClientMessage(playerid, COLOR_YELLOW, string);
        gPlayerLogged[playerid] = 1;
    }
^ That configures the dialog we've got for the register

Now lets press enter at the end of the dialog 1 (register). Below it paste:

pawn Code:
if (dialogid == 2)
    {
        new name[MAX_PLAYER_NAME], file[256], string[128];
        GetPlayerName(playerid, name, sizeof(name));
        format(file, sizeof(file), SERVER_USER_FILE, name);
        if(!response) return Kick(playerid);
        if (!strlen(inputtext)) return ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, "Hi your registered", "Fucken awesome mate, your registered :D. Inpute your pw below", "Login", "Leave");
        new tmp;
        tmp = dini_Int(file, "Password");
        if(udb_hash(inputtext) != tmp) {
            SendClientMessage(playerid, COLOR_RED, "Wrong PW sir.");
            ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, "Hi your registered", "Fucken awesome mate, your registered :D. Inpute your pw below", "Login", "Leave");
        }
        else
        {
            gPlayerLogged[playerid] = 1;
            PlayerInfo[playerid][pAdminLevel] = dini_Int(file, "AdminLevel");
            SetPlayerScore(playerid, PlayerInfo[playerid][pScore]);
            GivePlayerMoney(playerid, dini_Int(file, "Money")-GetPlayerMoney(playerid));
            SendClientMessage(playerid,COLOR_RED, "[SYSTEM]: Successfully logged in!");
        }
    }
^ That configures the dialog we've got for the login

Summary
There you go you've just got a dialog reg/log system. You can now claim it as yours and edit it. Well done. Please note if i made a lil error tell me, i was acctaully trying to get the codes outta my gm. I hope i didnt fail something. If i did, tell me ill fix it.

Credits
Lorenc - Mostly creating TUT & Script parts.
-Rebel Son- - Got some codes off him.
Dracoblue - DINI & Dudb
SAMP for their new gui.


Download for the pwn
http://pastebin.com/Ygy5z1d8

Bugs bugs bugs, tell me if there is one, ill try my hardest to fix it. If i made mistakes in this tut tell me soz for awful english
Reply


Messages In This Thread
How to make a register system - DIALOG - by Lorenc_ - 14.08.2010, 11:15
Re: How to make a register system - DIALOG - by Hiddos - 14.08.2010, 11:22
Re: How to make a register system - DIALOG - by Lorenc_ - 14.08.2010, 11:23
Re: How to make a register system - DIALOG - by Retardedwolf - 14.08.2010, 11:38
Re: How to make a register system - DIALOG - by Mimic - 14.08.2010, 11:41
Re: How to make a register system - DIALOG - by Hor1z0n - 14.08.2010, 12:01
Re: How to make a register system - DIALOG - by Lorenc_ - 14.08.2010, 12:02
Re: How to make a register system - DIALOG - by Lorenc_ - 14.08.2010, 12:14
Re: How to make a register system - DIALOG - by Hor1z0n - 14.08.2010, 12:34
Re: How to make a register system - DIALOG - by Hiddos - 14.08.2010, 12:54
Re: How to make a register system - DIALOG - by Lorenc_ - 15.08.2010, 11:28
Re: How to make a register system - DIALOG - by Hor1z0n - 15.08.2010, 14:32
Re: How to make a register system - DIALOG - by Lorenc_ - 16.08.2010, 11:07
Re: How to make a register system - DIALOG - by Retardedwolf - 16.08.2010, 11:39
Re: How to make a register system - DIALOG - by Hor1z0n - 16.08.2010, 12:28
Re: How to make a register system - DIALOG - by Lorenc_ - 18.08.2010, 10:31
Re: How to make a register system - DIALOG - by Hor1z0n - 18.08.2010, 12:01
Re: How to make a register system - DIALOG - by CSMajor - 20.08.2010, 01:35
Re: How to make a register system - DIALOG - by Shyaam - 20.08.2010, 02:46
Re: How to make a register system - DIALOG - by CSMajor - 20.08.2010, 02:51
Re: How to make a register system - DIALOG - by Scenario - 20.08.2010, 02:56
Re: How to make a register system - DIALOG - by GangsTa_ - 20.08.2010, 06:54
Re: How to make a register system - DIALOG - by Ernis456 - 22.08.2010, 14:15
Respuesta: How to make a register system - DIALOG - by DarkChildren - 22.08.2010, 17:56
Re: How to make a register system - DIALOG - by Scenario - 22.08.2010, 19:08
Re: How to make a register system - DIALOG - by International - 22.08.2010, 20:23
Re: How to make a register system - DIALOG - by bertuspiteri - 22.08.2010, 22:27
Re: How to make a register system - DIALOG - by GangsTa_ - 29.09.2010, 18:38
Re: How to make a register system - DIALOG - by Lowsou - 22.12.2010, 15:29
Re: How to make a register system - DIALOG - by Sledge - 22.12.2010, 19:01
Re: How to make a register system - DIALOG - by Lowsou - 22.12.2010, 20:34
Re: How to make a register system - DIALOG - by Lorenc_ - 23.12.2010, 05:19
Re: How to make a register system - DIALOG - by GoldenM4 - 23.12.2010, 16:44
Re: How to make a register system - DIALOG - by FCosta - 23.12.2010, 18:21
Re: How to make a register system - DIALOG - by Lorenc_ - 25.12.2010, 11:24
Re: How to make a register system - DIALOG - by SkizzoTrick - 25.12.2010, 11:29
Re: How to make a register system - DIALOG - by yarrum3 - 28.12.2010, 01:58
Re: How to make a register system - DIALOG - by Lorenc_ - 28.12.2010, 02:39
Re: How to make a register system - DIALOG - by phatlaced - 03.01.2011, 10:44
Re: How to make a register system - DIALOG - by Lorenc_ - 06.01.2011, 09:08
Re: How to make a register system - DIALOG - by Tee - 08.01.2011, 07:13
Re: How to make a register system - DIALOG - by Outcast - 08.01.2011, 20:55
Re: How to make a register system - DIALOG - by Tee - 09.01.2011, 00:33
Re: How to make a register system - DIALOG - by Lorenc_ - 09.01.2011, 01:05
Re: How to make a register system - DIALOG - by Tee - 09.01.2011, 02:10
Re: How to make a register system - DIALOG - by Kasis - 10.01.2011, 03:09
Re: How to make a register system - DIALOG - by Lorenc_ - 10.01.2011, 03:26
Re: How to make a register system - DIALOG - by Kasis - 10.01.2011, 03:36
Re: How to make a register system - DIALOG - by LiamM - 16.01.2011, 20:58
Re: How to make a register system - DIALOG - by Janek17 - 19.01.2011, 22:41
Re: How to make a register system - DIALOG - by Alex.Cone - 26.02.2011, 20:48
Re: How to make a register system - DIALOG - by destroyern1 - 30.05.2011, 20:29
Re: How to make a register system - DIALOG - by Lorenc_ - 11.06.2011, 05:27
Re: How to make a register system - DIALOG - by StrawHat - 11.06.2011, 05:30
Re: How to make a register system - DIALOG - by StrawHat - 11.06.2011, 06:12
Re: How to make a register system - DIALOG - by Mean - 11.06.2011, 07:43
Re: How to make a register system - DIALOG - by Lorenc_ - 12.06.2011, 06:51
Re: How to make a register system - DIALOG - by zouyun - 12.06.2011, 23:31
Re: How to make a register system - DIALOG - by Lorenc_ - 13.06.2011, 02:12
Re: How to make a register system - DIALOG - by SpiderWalk - 13.06.2011, 09:29
Re: How to make a register system - DIALOG - by Kaperstone - 18.06.2011, 06:35
Re: How to make a register system - DIALOG - by Lorenc_ - 18.06.2011, 11:01
Re: How to make a register system - DIALOG - by Remba031 - 20.06.2011, 12:15
Re: How to make a register system - DIALOG - by Glorian - 30.06.2011, 19:57
Re: How to make a register system - DIALOG - by Revolutionary Roleplay - 30.06.2011, 20:05
Re: How to make a register system - DIALOG - by Glorian - 30.06.2011, 21:02
Re: How to make a register system - DIALOG - by romanzi - 15.07.2011, 07:06
Re: How to make a register system - DIALOG - by Kush - 15.07.2011, 07:09
Re: How to make a register system - DIALOG - by romanzi - 15.07.2011, 08:05
Re: How to make a register system - DIALOG - by Lorenc_ - 16.07.2011, 07:20
Re: How to make a register system - DIALOG - by Cody9611 - 17.07.2011, 13:37
Re: How to make a register system - DIALOG - by Lorenc_ - 19.07.2011, 06:55
Re: How to make a register system - DIALOG - by Davz*|*Criss - 03.08.2011, 17:00
Re: How to make a register system - DIALOG - by Shockey HD - 03.08.2011, 18:05
Re : How to make a register system - DIALOG - by Alvin007 - 29.10.2011, 20:33
Re: How to make a register system - DIALOG - by Lorenc_ - 29.10.2011, 20:51
Re: How to make a register system - DIALOG - by noder51 - 31.10.2011, 19:14
Re: How to make a register system - DIALOG - by Prumpuz - 31.10.2011, 20:57
Re: How to make a register system - DIALOG - by Langley - 01.11.2011, 22:37
Re: How to make a register system - DIALOG - by Lorenc_ - 03.11.2011, 06:11

Forum Jump:


Users browsing this thread: 1 Guest(s)