SA-MP Forums Archive
HELP mysql ORM - 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)
+--- Thread: HELP mysql ORM (/showthread.php?tid=542588)



HELP mysql ORM - lukysnba - 20.10.2014

Hello, i want to to load and register system but i have one problem.
Example: I register nick Cool_Guy and if i login with nick Cool_Gu it will show login screen not register.

Код:
stock RegOrLogin(playerid)
{
        //CHECK
        orm_setkey(pInfo[playerid][ORMID], "ID");
        if(orm_errno(pInfo[playerid][ORMID]) == ERROR_NO_DATA)
        {
		//REGISTRACION
        }
        else if(orm_errno(pInfo[playerid][ORMID]) == ERROR_OK)
        {
		// LOGIN
        }
        return true;
}