SA-MP Forums Archive
[Tutorial] A simple registration & login system with Dialogs - Using DOF2 - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Tutorials (https://sampforum.blast.hk/forumdisplay.php?fid=70)
+---- Thread: [Tutorial] A simple registration & login system with Dialogs - Using DOF2 (/showthread.php?tid=290320)



A simple registration & login system with Dialogs - Using DOF2 - SmiT - 15.10.2011

Introduction
Double-O-Files 2
Download
Step 1
Step 2
Step 3
Step 4
Step 5
Step 6
Step 7 Step 8
Step 9
Final Step
Download
Credits



Re: A simple registration & login system with Dialogs - Using DOF2 - Mr_Scripter - 15.10.2011

Good Tutorial


Re: A simple registration & login system with Dialogs - Using DOF2 - Jantjuh - 20.10.2011

Nice!
The first tut using DOF2

Edit: Oh, not the first but still nice!


Re: A simple registration & login system with Dialogs - Using DOF2 - BetaLaxx - 20.10.2011

Good Job SmiT


Re: A simple registration & login system with Dialogs - Using DOF2 - lordturhan - 22.10.2011

This tuturoiol will help me a lot thanks.

Edit:Also Please can you show how to make more commands.


Re: A simple registration & login system with Dialogs - Using DOF2 - SmiT - 23.10.2011

Thanks for the comments.


Re: A simple registration & login system with Dialogs - Using DOF2 - Dredd - 05.11.2011

awesome, thx!


Re: A simple registration & login system with Dialogs - Using DOF2 - bestr32 - 14.01.2012

Very good, thanks it really helped me for making my server(My GM). But I got 1 bug. When I registered, logging in didn't pop-up so I couldn't change skins than I just quited and logged in.... I don't know what was that.


Re: A simple registration & login system with Dialogs - Using DOF2 - Brian_G - 14.01.2012

Really nice, good tutorial.


Re: A simple registration & login system with Dialogs - Using DOF2 - Nezinuu - 13.02.2012

Good


Re: A simple registration & login system with Dialogs - Using DOF2 - Drake_Lopez - 31.07.2012

"DOF2" Sucks Balls! I hate this Mother Fucking ShiT! Man! Its very bad!


Re: A simple registration & login system with Dialogs - Using DOF2 - Maniek - 03.10.2012

Code:
if(DOF2_GetString(password, "Password"))
Code:
error 033: array must be indexed (variable "DOF2_GetString")
How to fix this?


Re: A simple registration & login system with Dialogs - Using DOF2 - Mustafa6155 - 09.10.2012

Smit i cant open that dof2 site


Re: A simple registration & login system with Dialogs - Using DOF2 - michaelcosyns - 17.04.2013

Indeed, this is really helpfull. Thanks!


Re: A simple registration & login system with Dialogs - Using DOF2 - ProgrammerZ - 15.06.2013

Nice work,congratulations.


Re: A simple registration & login system with Dialogs - Using DOF2 - Goldilox - 15.06.2013

Here at OnPlayerDeath you're incrementing the kills of playerid instead of killer id.

pawn Code:
public OnPlayerDeath(playerid, killerid, reason)
{
    if( killerid != INVALID_PLAYER_ID )
    {
        PlayerInfo[ playerid ][ pKills ] ++;
    }
    PlayerInfo[ playerid ][ pDeaths ] ++;
    return 1;
}
Shouldn't that be like this:
pawn Code:
public OnPlayerDeath(playerid, killerid, reason)
{
    if( killerid != INVALID_PLAYER_ID )
    {
        PlayerInfo[ killerid ][ pKills ] ++;
    }
    PlayerInfo[ playerid ][ pDeaths ] ++;
    return 1;
}



Re: A simple registration & login system with Dialogs - Using DOF2 - xVIP3Rx - 16.06.2013

Good Job, Helped me alot )


Re: A simple registration & login system with Dialogs - Using DOF2 - Chrisis - 01.07.2013

if i just had 1 rup i will give it to you , the first and the last login / register tuto that helped me !