AHMED MOSTAFA
Members-
Posts
1,367 -
Joined
-
Last visited
-
Days Won
27
Everything posted by AHMED MOSTAFA
-
السلام عليكم ورحمة الله وبركاته شباب عدلت على مود خرج اللاعب و دخل اللاعب المهم - سويت مع اسم اللاعب - سرياله ميشان اذا نشر اصكه سريال لكن السريال يخرف شوي اذا انا كنت بالسيرفر و شخص دخل يجيب اسم الشخص + السريال حقي واذا انا خرجت - يجيب اسمي للشخص + يجيب سرياله هو شوفو الاكواد و قولولي وش الخطأ -- client addEventHandler('onClientPlayerJoin', root, function() outputChatBox('* ' .. getPlayerName(source) .. ' has joined the game', 255, 100, 100) outputChatBox(getPlayerSerial(source), 255, 100, 100) end ) -- addEventHandler('onClientPlayerQuit', root, function(reason) outputChatBox('* ' .. getPlayerName(source) .. ' has left the game [' .. reason .. ']', 255, 100, 100) outputChatBox(getPlayerSerial(source), 255, 100, 100) end )
-
ايه أنا الي في رآسك هههههه منور المنتدى
-
خلاص سويتها ب شخصية بدل التيم ونفعت شكراً سفاح لتعبك معي + انت تعرف سيرفر فدرالي ؟ ام انت سفاح غير ؟
-
ما اقدر اطرح الكود كامل ذا مود زومبي يعني مب قليل ذا بعد التعديل + به نفس الخطأ الخطأ هنا local Team = getPlayerTeam(getLocalPlayer()) وبالتحديد هنا getLocalPlayer() function deanimated( ammo, attacker, weapon, bodypart ) if (attacker) then if (getElementType ( attacker ) == "player") and (getElementType ( source ) == "ped") then if (getElementData (source, "zombie") == true) then local oldZcount = getElementData ( attacker, "Zombie kills" ) if oldZcount ~= false then setElementData ( attacker, "Zombie kills", oldZcount+1 ) local Team = getPlayerTeam(getLocalPlayer()) if Team and Team == getTeamFromName( Assassins_Zombie ) then givePlayerMoney (attacker, 50) end triggerEvent ( "onZombieWasted", source, attacker, weapon, bodypart ) else setElementData ( attacker, "Zombie kills", 1 ) triggerEvent ( "onZombieWasted", source, attacker, weapon, bodypart ) end end end end end addEventHandler("onPedWasted", resourceRoot, deanimated)
-
السلام عليكم ورحمة الله وبركاته ابي استفسر عن كود مدري وش الخطأ فيه الحين انا معي مود زومبي اول ما تقتل الزومبي تكسب 50 دولار بس ابي تيم معين يكسب الفلوس مب الكل حاولت لكن ما نفعت local Team = getPlayerTeam(getLocalPlayer()) if Team and getTeamName(Team) == Assassins_Zombie then givePlayerMoney (attacker, 50) else givePlayerMoney (attacker, 50) end ابي حل - وشكراً
-
هههههههه آسف حليت المشكلة كان في اديت ما كنت كاتب اسمه صح المهم شكراً - والله تعبتك معي
-
شكراً واي فاي اقسم بالله انت كفو شكراً مرة ثانية ادري اني تعبتك والله لكن فيه شي غريب بالمود اذا سويت حساب من اللوحة ما اقدر اسجل به واذا سويت حساب من اف 8 بنفس حساب اللي سويته في اللوحة ما يسجل يقول الحساب موجود واذا سويت حساب من اف 8 اقدر اسجل من اللوحة وش تعتقد
-
WARNING:GM\server.lua:21 Access denied @'addAccount'[Expected string at agrument 2,got nil] اضفت لجروب ادمن لكن طلع ذا شوف ابيك تجربها تكفى -- client R,G,P = math.random( 0, 255 ), math.random( 0, 255 ), math.random( 0, 255 ) GUIEditor = { checkbox = {}, edit = {}, button = {}, window = {}, label = {} } addEventHandler("onClientResourceStart", resourceRoot, function() local screenW, screenH = guiGetScreenSize() window_register = guiCreateWindow((screenW - 459) / 2, (screenH - 274) / 2, 459, 274, "register system ( Gta 4u )", false) guiWindowSetSizable(window_register, false) guiSetVisible(window_register, true) button_Register = guiCreateButton(10, 194, 186, 29, "Register", false, window_register) username_register = guiCreateEdit(10, 54, 186, 29, "write username", false, window_register) Password_register_1 = guiCreateEdit(10, 115, 186, 29, "write password", false, window_register) Password_register_2 = guiCreateEdit(10, 155, 186, 29, "rewrite password", false, window_register) label_User_r = guiCreateLabel(10, 28, 186, 26, "user name", false, window_register) guiLabelSetHorizontalAlign(label_User_r, "center", false) guiLabelSetVerticalAlign(label_User_r, "center") guiLabelSetColor( label_User_r, R,G,P ) label_Pass_r = guiCreateLabel(10, 89, 186, 26, "password", false, window_register) guiLabelSetHorizontalAlign(label_Pass_r, "center", false) guiLabelSetVerticalAlign(label_Pass_r, "center") guiLabelSetColor( label_Pass_r, R,G,P ) end ) addEventHandler("onClientGUIClick", root, function() if source == button_Register then local user_name = guiGetText(username_register) local pass_word_1 = guiGetText(Password_register_1) local pass_word_2 = guiGetText(Password_register_2) if user_name ~= "" and pass_word_1 ~= "" then if #pass_word_1 < 5 then outputChatBox("* The Password should be at least 5 characters long.", source, 255, 100, 0, true) elseif pass_word_1 ~= pass_word_2 then outputChatBox("* The password does not match.", 255, 0, 0) else triggerServerEvent("only_Register_", localPlayer, "Register", user_name, pass_word) guiSetEnabled(button_Register, false) setTimer(function() guiSetEnabled(button_Register, true) end, 3000, 1) end end end end) -- server addEvent("only_Register_", true) addEventHandler("only_Register_", root, function(action, user_name, pass_word_1) if (action == "Register") then if not getAccount(user_name,pass_word_1) then local accountAdded = addAccount(user_name, pass_word_1) if accountAdded then outputChatBox("* You have successfully registered!",source, 255, 100, 0, true) outputChatBox("* the user is ( "..user_name.." ) the password is ( "..pass_word_1.." )",source, 255, 100, 0, true) outputChatBox("* you can now login with your username and password.",source, 255, 100, 0, true) else outputChatBox("* Error creating account",source, 255, 100, 0, true) end else outputChatBox("* Account with this name already exists!",source ,255, 100, 0, true) outputChatBox("* please write new user",source ,255, 100, 0, true) end end end) ابي اعرف المشاكل كلها يعني اذا بده ينضاف لجروب ادمن وما الى غير
-
جروب الزائر اللي هو افري ون ؟ اول رتبة يعني صح ؟
-
WARNING:GM\server.lua:21 Access denied @'addAccount' -- هي جننتني انا غيرت اشياء بسيطة ما اعتقد انها تأثر بالمود لكن شوف الاكواد يمكن فيه خطأ -- server ------------------------ addEvent("only_Register_", true) addEventHandler("only_Register_", root, function(action, user_name, pass_word_1) if (action == "Register") then if not getAccount(user_name,pass_word_1) then local accountAdded = addAccount(user_name, pass_word_1) if accountAdded then outputChatBox("* You have successfully registered!",source, 255, 100, 0, true) end else outputChatBox("* Account with this name already exists!",source ,255, 100, 0, true) end end end) -- client ------------------------ addEventHandler("onClientGUIClick",root, function () if source == button_Register then local user_name = guiGetText(username_register) local pass_word_1 = guiGetText(Password_register_1) local pass_word_2 = guiGetText(Password_register_2) if user_name ~= "" and pass_word_1 ~= "" then if #pass_word_1 < 4 then outputChatBox("* The Password should be at least 4 characters long.", source, 255, 100, 0, true) elseif pass_word_1 ~= pass_word_2 then outputChatBox("* The password does not match.", 255, 0, 0) else triggerServerEvent("only_Register_", localPlayer, "Register", user_name, pass_word) guiSetEnabled(button_Register, false) setTimer(function() guiSetEnabled(button_Register, true) end, 3000, 1) end end end end )
-
بموت و اعرف وش الخطأ ابي مساعدة تكفون -- client if source == button_Register then local user_name = guiGetText(username_register) local pass_word_1 = guiGetText(Password_register_1) if user_name ~= "" and pass_word_1 ~= "" then if #pass_word_1 < 4 then outputChatBox("The Password should be at least 4 characters long.", 255, 100, 0) else triggerServerEvent("only_Register_", localPlayer, "Register", user_name, pass_word) end end end -- server addEvent("only_Register_", true) addEventHandler("only_Register_", root, function(action, user_name, pass_word_1) if (action == "Register") then if not getAccount(user_name) then local accountAdded = addAccount(user_name, pass_word_1) if accountAdded then outputChatBox("* You have successfully registered!",source) else outputChatBox("* Error creating account",source) end else outputChatBox("* Account with this name already exists!",source) end end end)
-
انا مسوي لوحة تسجيل دخول تسجيل الدخول بها ما فيه مشاكل لكن ابي اسوي زر يخليني اسجل حساب جديد button_Register = guiCreateButton(10, 194, 186, 29, "Register", false, window_register) username_register = guiCreateEdit(10, 54, 186, 29, "user name", false, window_register) Password_register_1 = guiCreateEdit(10, 115, 186, 29, "password", false, window_register) Password_register_2 = guiCreateEdit(10, 155, 186, 29, "rewrite password", false, window_register) button_Register = زر تسجيل حساب جديد username_register = اسم الحساب الجديد Password_register_1 = كلمة السر الخاصة بالحساب Password_register_2 = اعادة كتابة كلمة السر الخاصة بالحساب
-
خلنا في الاصعب الحين button_Register = guiCreateButton(10, 194, 186, 29, "Register", false, window_register) username_register = guiCreateEdit(10, 54, 186, 29, "user name", false, window_register) Password_register_1 = guiCreateEdit(10, 115, 186, 29, "password", false, window_register) Password_register_2 = guiCreateEdit(10, 155, 186, 29, "rewrite password", false, window_register) الحفظ مب يسوي مشكلة كبيرة متل ذا ابي اسوي حسابات من هنا تسجيل الدخول ما به اي مشاكل لكن ابي اسوي الحساب من هدول الاكواد
-
السلام عليكم ورحمة الله وبركاته اول شي كل عام وانتم بألف خير يارب يكون رمضان خير علينا وعليكم ثاني شي بدي مساعدة في لوحة تسجيل الدخول username_ = guiCreateEdit(10, 54, 186, 29, "", false, window_login) Password_ = guiCreateEdit(10, 115, 186, 29, "", false, window_login) checkbox_User = guiCreateCheckBox(10, 152, 186, 15, " save username", false, false, window_login) checkbox_Pass = guiCreateCheckBox(10, 174, 186, 15, " save password.", false, false, window_login) ابي لما اضغط على الشك بوكس يحفظ الباسورد + اليوزر بالنسبة لتسجيل الدخول سويت اللوحة بدون مشاكل اما التسجيل فما قدرت اسويها ابي حل وشكراً
-
السلام عليكم ورحمة الله وبركاته شباب ابي طلب بسيط انا اذا سويت لوحة مثلاً مخليها فوق الشاشة يعني مب في النصف ولا على الاحرف كيف اخليها فوق الشاشة عند الكل ؟ ومثال آخر انا مسوي كلمة اول ما تفتح اف 11 هي تظهر لكن ابيها تظهر بنفس المكان عند الكل لأنو الاجهزة تختلف عن بعضها متل ما تعرفون GUIEditor = { label = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.label[1] = guiCreateLabel(536, 523, 76, 30, "Los Santos\nAir Port", false) guiSetFont(GUIEditor.label[1], "default-bold-small") guiLabelSetHorizontalAlign(GUIEditor.label[1], "center", false) guiSetVisible (GUIEditor.label[1], false ) end ) ذا مثلاً اذا ضغط اف 11 تظهر اللوحة + عنوان فوق المطار الاول لكن انا عندي الكلمة فوق المطار بس عند غيري رح تختلف ابيها تكون بنفس المكان عند الكل + ابي اذا شخص ضغط على زر معين مثلا - او + اللابل يختفي
-
?? مب الكود يا طيب انا جديد بالبرمجة لكن بما انك تعرف كثير بالبرمجة تتكبر
-
انا ما افتح طول اليوم + الموضوع خلص وترا فاهم كودك لكن ما ردت لأنو ماكنت موجود وذا الكود يعطي اللاعب فلوس عشوائية اما 100 او 200 ما ابيه شكراً - من تواضع لله رفعه هذا مرض نفسي انا وخوك احمد ربك على العافيهه .. ما اقول عليك انت شي اقصد عبد الكريم ...
-
ليتك مارديت انا ما افتح طول اليوم + الموضوع خلص وترا فاهم كودك لكن ما ردت لأنو ماكنت موجود وذا الكود يعطي اللاعب فلوس عشوائية اما 100 او 200 ما ابيه شكراً - من تواضع لله رفعه
-
مب فاهمه هي انا لسة اتعلم بالبرمجة
-
onPlayerWasted مب ذا لما اللاعب يموت ؟؟ فيه بارتمنز حق القاتل , والسورس حق الاعب الي مات بدي حق الفاتل مب اللي مات
-
onPlayerWasted مب ذا لما اللاعب يموت ؟؟
-
السلام عليكم ورحمة الله وبركاته شباب ابي كود بسيط و صغير ابي لما اللاعب يقتل لاعبين يكسب فلوس + بجرب شي بعد ما تعطوني الكود وبطرحه عليكم ميشان اذا فيه خطأ وشكراً
-
وليش اللي مسويها مسويها سب ؟؟
-
السلام عليكم ورحمة الله وبركاته كيفكم ان شاء الله طيبين انا شفت شي غريب بالمنتدى وهو الرتب مثلاً Punk-@ss B*tch كيف هي تكون رتبة ؟؟؟؟ !!!! اذا لاحظتوا @ss و B*tch صراحة رتب غريبة وفيه Big-@ss و rat و fool اذا ذا شي طبيعي قولولي و اذا غريب مدري وش اقول