Search the Community
Showing results for tags 'مساعده في قيم مود'.
-
addEvent("onPutSave",true) addEventHandler("onPutSave",root, function (puser,ppass) guiSetText(user,puser) guiSetText(pass,ppass) end ) addEventHandler("onClientGUIClick",root, function () local user = guiGetText(user) local pass = guiGetText(pass) if ( source == login ) then if user ~= "" and pass ~= "" then if guiCheckBoxGetSelected(remember) then triggerServerEvent("onLoginWith",localPlayer,user,pass) else triggerServerEvent("onLogin",localPlayer,user,pass) end else exports["notices"]:addNotification("يجب كتابة اسم المستخدم وكلمة المرور",'warning'); end elseif ( source == reg ) then if user ~= "" and pass ~= "" then triggerServerEvent("onReg",localPlayer,user,pass) else exports["notices"]:addNotification("يجب كتابة اسم المستخدم وكلمة المرور",'warning'); end end end ) االمشكلة لما اسجل بحساب ثاني واحط حفظ وبرجع ادخل يطلعلي بحساب اول مدخلت بيه ومايتغير رجاء الحل
-
addEvent("onGetSave",true) addEventHandler("onGetSave",root, function () local serial = getPlayerSerial(source) if isPlayerSave(serial) then local user,pass = getUserAndPass(serial) triggerClientEvent(source,"onPutSave",source,user,pass) end end ) عندي مشكلة في قيم مود لما اسجل دخولي واسوي حفظ وارجع اخش يطلع لى اول حساب دخلت بيه ومايتغير