Jump to content

Problem z rejestracją (bez MySQL)


Recommended Posts

Witam!

Mam problem z rejestracją.

--Rejestracja-- 
addEventHandler("onClickRegister", getRootElement(),  
function(plr, username, password)  
    local account = getAccount(username, password) 
    if (account ~= false) then 
            outputChatBox("Takie konto już istnieje!", plr, 255 , 0, 0) 
    else 
        local accountAdd = addAccount(username, password) 
        if(logIn(plr, accountAdd, password) == true) then 
            outputChatBox("Zarejestrowano pomyślnie!", plr, 0 , 255, 0) 
            triggerClientEvent("onSuccessRegister", getRootElement()) 
        else 
            outputChatBox("Błąd 2 - Rejestracja lin.39 ZGŁOŚ ADMINOWI!", plr, 255 , 0, 0) 
        end 
    end 
end) 

Po kliknięciu w przycisk "Zarejestruj" wyświetla błąd ("Błąd 2 - Rejestracja lin.39 ZGŁOŚ ADMINOWI!"). Skrypt dodałem do ACL.

Z góry thx.

Edited by Guest
Link to comment

Nie wiemy co to za funkcja logIn(). Najlepiej jakbyś zapytał jej autora.

Ups, przegapiłem najwyraźniej tą funkcję w MTA :-).

https://wiki.multitheftauto.com/wiki/LogIn

Returns false or nil if the log in failed for some reason, ie. the player was already logged in to some account (use logOut first), if the account was already in use or if it failed for some other reason.

Sprawdź czy:

- addAccount zwraca true - linia 8

- czy gracz nie jest już zalogowany

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...