Jump to content

taha201100

Members
  • Posts

    1,453
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by taha201100

  1. اعرف انها شغاله لكن ما يسجل حسابات جديده
  2. اعرف انها شغاله لكن ما يسجل حسابات جديده
  3. الموضوع ماله فايدة انسى خلاص بحاول اشوف مودات واتعلم منها افضل لانه ما في نتيجة واضحة للحين
  4. الموضوع ماله فايدة انسى خلاص بحاول اشوف مودات واتعلم منها افضل لانه ما في نتيجة واضحة للحين
  5. مو شغال +اللوحة ما تختفي الحين ذي سهله بس المشكله ما يسجل ابدا
  6. مو شغال +اللوحة ما تختفي الحين ذي سهله بس المشكله ما يسجل ابدا
  7. والله يخوي اخطاء كثيره يا ريت تجرب الاكواد وتشوف بنفسك مثلن لما يجي يسجل بأمكانه يسجل اكثر من 5 مرات على نفس اسم الاكونت +ما يقدر يسجل دخول وكذا لهيك جرب الاكواد افضل لك اخي :]
  8. والله يخوي اخطاء كثيره يا ريت تجرب الاكواد وتشوف بنفسك مثلن لما يجي يسجل بأمكانه يسجل اكثر من 5 مرات على نفس اسم الاكونت +ما يقدر يسجل دخول وكذا لهيك جرب الاكواد افضل لك اخي :]
  9. السلام عليكم كيفكم اليوم احب اقدم لكم هريستي المتواضعه :] كلنت GUIEditor = { checkbox = {}, button = {}, window = {}, label = {}, edit = {} } addEventHandler("onClientResourceStart", resourceRoot, function() local screenW, screenH = guiGetScreenSize() GUIEditor.window[1] = guiCreateWindow((screenW - 218) / 2, (screenH - 240) / 2, 218, 240, "لوحة التسجيل", false) guiWindowSetSizable(GUIEditor.window[1], false) username = guiCreateEdit(9, 57, 105, 23, "", false, GUIEditor.window[1]) password = guiCreateEdit(9, 103, 105, 23, "", false, GUIEditor.window[1]) guiEditSetMasked(password, true) GUIEditor.label[1] = guiCreateLabel(11, 42, 103, 15, "أسم الحساب", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[1], "default-bold-small") GUIEditor.label[2] = guiCreateLabel(11, 88, 103, 15, "كلمة المرور", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[2], "default-bold-small") login = guiCreateButton(19, 136, 95, 22, "دخول", false, GUIEditor.window[1]) register = guiCreateButton(19, 168, 95, 22, "تسجيل", false, GUIEditor.window[1]) closee = guiCreateButton(19, 200, 95, 22, "أغلاق", false, GUIEditor.window[1]) GUIEditor.checkbox[1] = guiCreateCheckBox(118, 107, 17, 15, "", false, false, GUIEditor.window[1]) GUIEditor.label[3] = guiCreateLabel(138, 104, 70, 18, "أظهار الكلمة", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[3], "default-bold-small") end ) addEventHandler("onClientGUIClick", root, function() if (source == login ) then username = guiGetText (username) password = guiGetText (password) if username ~= "" and password ~= "" then triggerServerEvent ("11",localPlayer,username,password) end elseif source == register then username = guiGetText (username) password = guiGetText (password) if username ~= "" and password ~= "" then triggerServerEvent ("22",localPlayer,username,password) end end end ) addEventHandler("onClientGUIClick", root, function() if (source == GUIEditor.checkbox[1])then if (guiCheckBoxGetSelected(GUIEditor.checkbox[1]== true))then guiEditSetMasked(GUIEditor.edit[2], false) end end end) addEventHandler("onClientGUIClick", root, function() if (source == GUIEditor.checkbox[1])then if (guiCheckBoxGetSelected(GUIEditor.checkbox[1],false))then guiEditSetMasked(GUIEditor.edit[2], true) end end end) سيرفر addEvent ("11",true) addEventHandler ("11",root, function (username,password) gg = getAccount (username,password) if gg then logIn (source,gg,password) outputChatBox("#FF8000[server]#FAFAFAتم تسجيل الدخول بنجاح", source, 142, 96 ,62, true ) end end ) addEvent ("22",true) addEventHandler ("22",root, function (username,password) if not getAccount (username,password) then addAccount (username,password) outputChatBox("#FF8000[server]#FAFAFA تم تسجيل حساب جديد", source, 142, 96 ,62, true ) else outputChatBox("#FF8000[server]#FAFAFA الحساب موجود بالفعل", source, 142, 96 ,62, true ) end end ) الكود فيه مليون غلط وش اسوي ؟؟ يا ريت لا تعطوني جاهز بس وش اعدل وكذا
  10. السلام عليكم كيفكم اليوم احب اقدم لكم هريستي المتواضعه :] كلنت GUIEditor = { checkbox = {}, button = {}, window = {}, label = {}, edit = {} } addEventHandler("onClientResourceStart", resourceRoot, function() local screenW, screenH = guiGetScreenSize() GUIEditor.window[1] = guiCreateWindow((screenW - 218) / 2, (screenH - 240) / 2, 218, 240, "لوحة التسجيل", false) guiWindowSetSizable(GUIEditor.window[1], false) username = guiCreateEdit(9, 57, 105, 23, "", false, GUIEditor.window[1]) password = guiCreateEdit(9, 103, 105, 23, "", false, GUIEditor.window[1]) guiEditSetMasked(password, true) GUIEditor.label[1] = guiCreateLabel(11, 42, 103, 15, "أسم الحساب", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[1], "default-bold-small") GUIEditor.label[2] = guiCreateLabel(11, 88, 103, 15, "كلمة المرور", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[2], "default-bold-small") login = guiCreateButton(19, 136, 95, 22, "دخول", false, GUIEditor.window[1]) register = guiCreateButton(19, 168, 95, 22, "تسجيل", false, GUIEditor.window[1]) closee = guiCreateButton(19, 200, 95, 22, "أغلاق", false, GUIEditor.window[1]) GUIEditor.checkbox[1] = guiCreateCheckBox(118, 107, 17, 15, "", false, false, GUIEditor.window[1]) GUIEditor.label[3] = guiCreateLabel(138, 104, 70, 18, "أظهار الكلمة", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[3], "default-bold-small") end ) addEventHandler("onClientGUIClick", root, function() if (source == login ) then username = guiGetText (username) password = guiGetText (password) if username ~= "" and password ~= "" then triggerServerEvent ("11",localPlayer,username,password) end elseif source == register then username = guiGetText (username) password = guiGetText (password) if username ~= "" and password ~= "" then triggerServerEvent ("22",localPlayer,username,password) end end end ) addEventHandler("onClientGUIClick", root, function() if (source == GUIEditor.checkbox[1])then if (guiCheckBoxGetSelected(GUIEditor.checkbox[1]== true))then guiEditSetMasked(GUIEditor.edit[2], false) end end end) addEventHandler("onClientGUIClick", root, function() if (source == GUIEditor.checkbox[1])then if (guiCheckBoxGetSelected(GUIEditor.checkbox[1],false))then guiEditSetMasked(GUIEditor.edit[2], true) end end end) سيرفر addEvent ("11",true) addEventHandler ("11",root, function (username,password) gg = getAccount (username,password) if gg then logIn (source,gg,password) outputChatBox("#FF8000[server]#FAFAFAتم تسجيل الدخول بنجاح", source, 142, 96 ,62, true ) end end ) addEvent ("22",true) addEventHandler ("22",root, function (username,password) if not getAccount (username,password) then addAccount (username,password) outputChatBox("#FF8000[server]#FAFAFA تم تسجيل حساب جديد", source, 142, 96 ,62, true ) else outputChatBox("#FF8000[server]#FAFAFA الحساب موجود بالفعل", source, 142, 96 ,62, true ) end end ) الكود فيه مليون غلط وش اسوي ؟؟ يا ريت لا تعطوني جاهز بس وش اعدل وكذا
  11. ارفعه على مركز ثاني ما يشتغل ذا
  12. ارفعه على مركز ثاني ما يشتغل ذا
  13. وش رايك ترسل المود اشوف حقك ارسله لنشوف
  14. وش رايك ترسل المود اشوف حقك ارسله لنشوف
  15. الفري روم مغلق ما في غيره لكن مو ضابط
  16. الفري روم مغلق ما في غيره لكن مو ضابط
  17. يعطيه الشخصية فقط لثانيتين ثم تتغير
  18. يعطيه الشخصية فقط لثانيتين ثم تتغير
  19. taha201100

    id

    السلام عليكم كيف يمديني اسوي لكل لاعب اي دي لما يدخل الخادم +كيف يمديني انفذ اوامر عن طريق الاي دي مثلن اسجنه عن طريق احط اي دي حقه بالأديت بوكس
×
×
  • Create New...