MA[S]RIY Posted August 24, 2016 Share Posted August 24, 2016 السلام عليكم انا سويت لوحة تسجيل بس لما احد بيضغط لوجين يعني يسجل إذا كان وأضع بيانات صح او غلط اللوحة بتتشال أبي لما يكون البيانات صح فقط اللوحة تتشال أبي أحد يرد علي من فضلكو Link to comment
^iiEcoo'x_) Posted August 25, 2016 Share Posted August 25, 2016 سوي اذا ضغط عالزر اللوحة تروح Link to comment
^iiEcoo'x_) Posted August 25, 2016 Share Posted August 25, 2016 اقصد سوي تحقق اذا سجل دخول تختفي اللوحة واذأ م سجل دخول م تختفي Link to comment
MA[S]RIY Posted August 25, 2016 Author Share Posted August 25, 2016 طيب اخي معلش ابي فاكسات التحقق من أن البيانات صح Link to comment
AHMED MOSTAFA Posted August 25, 2016 Share Posted August 25, 2016 السلام عليكم انا سويت لوحة تسجيل بس لما احد بيضغط لوجين يعني يسجل إذا كانوأضع بيانات صح او غلط اللوحة بتتشال أبي لما يكون البيانات صح فقط اللوحة تتشال أبي أحد يرد علي من فضلكو تفضل -- Developer Ahmed --== Client ==-- if source == button_Login then local user_name = guiGetText(username_) local pass_word_1 = guiGetText(Password_) if user_name ~= "" and pass_word_1 ~= "" then triggerServerEvent("PlayerLogin", localPlayer, "Login", user_name, pass_word_1) end end addEvent("LoginCompleted", true) -- بعد التأكد يسوي لك التالي addEventHandler("LoginCompleted", root, function() guiSetVisible(windowName, false) -- اخفاء اللوحة showCursor(false) -- اخفاء مؤشر الماوس end ) --== Server ==-- addEvent("PlayerLogin", true) addEventHandler("PlayerLogin", root, function(action, user_name, pass_word_1) if (action == "Login") then local account = getAccount(user_name, pass_word_1) if account then logIn(source, account, pass_word_1) triggerClientEvent(source, "LoginCompleted", source) -- اذا اللوجن تم يرسل هذا الترايجر لملف الكلينت else outputChatBox("* wrong username or password!",source) end end end) Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now