0 Üye ve 1 Ziyaretçi konuyu incelemekte.
if guiGetText(editbox1) == guiGetText(editbox2) then -- editbox yazıları aynı ise outputChatBox("Şifreler aynı.",0,255,0,true)else -- yazılar aynı değil ise outputChatBox("Şifreler uyuşmuyor !",255,0,0,true)end
function girisyapfonk()if not( (guiGetText(edit_k) == "") or (guiGetText(edit_k) == nil) ) and not (guiGetText(edit_s) == "") or (guiGetText(edit_s) == nil) ) then triggerServerEvent( "girisyap.s", getLocalPlayer(), (guiGetText(edit_k) , (guiGetText(edit_s))endend
if not( (guiGetText(edit_k) == "") or (guiGetText(edit_k) == nil) ) and not (guiGetText(edit_s) == "") or (guiGetText(edit_s) == nil) ) then
function girisyapserver(kullanıcıadı,sifre)if logIn( source, getAccount(kullanıcıadı,sifre), sifre ) thenoutputChatBox("Başarıyla Giriş yaptınız.",source)setElementdata(source,"girisyapti",1)elseoutputChatBox("Bir Hata Oluştu",source)endendaddEvent("girisyap.s", true)addEventHandler("girisyap.s", root, girisyapserver)
function girisyapfonk() if not( (guiGetText(edit_k) == "") or (guiGetText(edit_k) == nil) ) and not (guiGetText(edit_s) == "") or (guiGetText(edit_s) == nil) then triggerServerEvent( "girisyap.s", getLocalPlayer(), guiGetText(edit_k) , guiGetText(edit_s)) endend
function girisyapserver(kullanıcıadı,sifre) if logIn( source, getAccount(kullanıcıadı,sifre), sifre ) then outputChatBox("Başarıyla Giriş yaptınız.",source) setElementdata(source,"girisyapti",1) else outputChatBox("Bir Hata Oluştu",source) endendaddEvent("girisyap.s", true)addEventHandler("girisyap.s", root, girisyapserver)
function girisyapserver(kullaniciadi,sifre) if not (kullaniciadi == "") then if not (sifre == "") then local hesap = getAccount ( kullaniciadi, sifre ) if ( hesap ~= false ) then logIn(source, hesap, sifre) outputChatBox("Başarıyla Giriş yaptınız.",source) setElementdata(source,"girisyapti",1) else outputChatBox("hesap ismi veya sifre yanlis'", source, 255,255,255,true) end else outputChatBox("sifre girmelisin!", source, 255,255,255, true) end else outputChatBox("Bir Hata Oluştu",source,255,255,255,true) endendaddEvent("girisyap.s", true)addEventHandler("girisyap.s", root, girisyapserver)function uyeol(kullaniciadi, sifre, sifretekrar) if not (kullaniciadi == "") then if not (sifre == "") then if not (sifretekrar == "") then if not (sifre == sifretekrar) outputChatBox("şifreler uyuşmuor", source, 255,255,255,true) return end local hesap = getAccount (kullaniciadi,sifre) if (hesap == false) then local hesapekleme = addAccount(tostring(kullaniciadi),tostring(sifre)) if (hesapekleme) then local hesap = getAccount ( kullaniciadi, sifre ) outputChatBox("üye oldun", source, 255,255,255,true) end else outputChatBox("şifre boş bırakma", source,255,255,255,true) end else outputChatBox("şifre boş bırakma", source,255,255,255,true) end else outputChatBox("kullaniciadi bos bırakma", source,255,255,255,true) endendaddEvent("uyeol.s", true)addEventHandler("uyeol.s", root, uyeol)
editKullanici = guiCreateEdit()editSifre = guiCreateEdit()loginButon = guiCreateButton()registerButon = guiCreateButton()addEventHandler("onClientGUIClick",loginButon,function() if(source == loginButon)then local kullaniciadi = guiGetText(editKullanici) local sifre = guiGetText(sifre) triggerServerEvent("girisyap.s", kullaniciadi, sifre) end end,false) addEventHandler("onClientGUIClick",registerButon,function() if(source == registerButon)then local kullaniciadi = guiGetText(editKullanici) local sifre = guiGetText(sifre) triggerServerEvent("uyeol.s", kullaniciadi, sifre) end end,false)
function girisyapfonk() if not( (guiGetText(edit_k) == "") or (guiGetText(edit_k) == nil) ) and not (guiGetText(edit_s) == "") or (guiGetText(edit_s) == nil) then triggerServerEvent( "giris_yapti", getLocalPlayer(), guiGetText(edit_k) , guiGetText(edit_s)) endend