Jump to content

AHMED MOSTAFA

Members
  • Posts

    1,367
  • Joined

  • Last visited

  • Days Won

    27

Everything posted by AHMED MOSTAFA

  1. localPlayer الي resourceRoot سطر 7 بالكلنت غير وبملف السيرفر ObjectName = createPed ( Model,X,Y,Z,Rx,Ry,Rz ) #.. بس لازم تسوي جدول عشان تتحكم بالبيد مثلا لوخرجت وزي كذا خطأ في السطر الرابع في ملف سيرفر - createPed خلاص ما علينا منها الحين - رح الحق انام شوي قبل قبل الفجر
  2. وش مشكلة هذا الحين addEvent("Trigger1CreatePed",true) addEventHandler("Trigger1CreatePed",root, function (X,Y,Z,Rx,Ry,Rz,Model,ObjectName) --[[ObjectName = ]]createPed ( Model,X,Y,Z,Rx,Ry,Rz ) end ) if source == CreatePedButton then local X,Y,Z,Rx,Ry,Rz = guiGetText(PositionX),guiGetText(PositionY),guiGetText(PositionZ),guiGetText(RotationX),guiGetText(RotationY),guiGetText(RotationZ) local Model = guiGetText (ID) local ObjectName = guiGetText (Name) triggerServerEvent("Trigger1CreatePed",resourceRoot,X,Y,Z,Rx,Ry,Rz,Model,ObjectName) end
  3. شكراً - معلومة مفيدة جديدة يبدو اني نست اساسيات البرمجة - يلزمني اعادة تدوير هههههه
  4. شكراً - معلومة مفيدة بالنسبة لي
  5. السلام عليكم ورحمة الله وبركاته اليوم حاولت اسوي نظام يمكن يفيد بعض الناس ومدري اذا موجود او لا المهم سويت لوحة تقدر تسوي منها - ماركر . شخصية . سيارة ( لكن ما تقدر تركبها مدري ليش ض ) . علامة . اوبجكت لكني طفشط وانا اسوي بها - هذا نشر يمكن تستفيدون منه بشي ما ابي مساعدة به لأني بسافر بكرة ان شاء الله - فقط ناشره - يمكن تستفيدون منه بأي كود اتمنى اذا الموضوع مخالف - اي شخص يرد عليه ويقول انه مخالف + وين انشره بالضبط addEventHandler("onClientResourceStart", resourceRoot, function() local screenW, screenH = guiGetScreenSize() window = guiCreateWindow((screenW - 360) / 2, (screenH - 358) / 2, 360, 358, "Object System ( By Developer Ahmed )", false) guiWindowSetSizable(window, false) guiSetVisible(window,false) PositionX = guiCreateEdit(10, 40, 106, 29, "0", false, window) PositionY = guiCreateEdit(126, 40, 106, 29, "0", false, window) PositionZ = guiCreateEdit(242, 40, 106, 29, "0", false, window) RotationX = guiCreateEdit(10, 87, 106, 29, "0", false, window) RotationY = guiCreateEdit(126, 87, 106, 29, "0", false, window) RotationZ = guiCreateEdit(242, 87, 106, 29, "0", false, window) ID = guiCreateEdit(10, 203, 106, 29, "ID", false, window) Name = guiCreateEdit(127, 203, 106, 29, "Name", false, window) CreatePedButton = guiCreateButton(10, 281, 106, 29, "Create Ped", false, window) CreateMarkerButton = guiCreateButton(128, 281, 106, 29, "Create Marker", false, window) CreateObjectButton = guiCreateButton(242, 281, 106, 29, "Create Object", false, window) CreateVehicleButton = guiCreateButton(10, 319, 106, 29, "Create Vehicle", false, window) CreateBlipButton = guiCreateButton(128, 319, 106, 29, "CreateBlip", false, window) outputSystem = guiCreateButton(242, 319, 106, 29, "out put", false, window) label1 = guiCreateLabel(10, 21, 105, 18, "Position X", false, window) label2 = guiCreateLabel(126, 21, 105, 18, "Position Y", false, window) label3 = guiCreateLabel(242, 21, 105, 18, "Position Z", false, window) label4 = guiCreateLabel(10, 69, 105, 18, "Rotation X", false, window) label5 = guiCreateLabel(126, 69, 105, 18, "Rotation Y", false, window) label6 = guiCreateLabel(242, 69, 105, 18, "Rotation Z", false, window) label7 = guiCreateLabel(10, 185, 105, 18, "ID", false, window) label8 = guiCreateLabel(128, 185, 105, 18, "Name", false, window) guiSetFont(label1, "default-bold-small") guiSetFont(label2, "default-bold-small") guiSetFont(label3, "default-bold-small") guiSetFont(label4, "default-bold-small") guiSetFont(label5, "default-bold-small") guiSetFont(label6, "default-bold-small") guiSetFont(CreatePedButton, "default-bold-small") guiSetFont(CreateObjectButton, "default-bold-small") guiSetFont(CreateBlipButton, "default-bold-small") guiSetFont(CreateMarkerButton, "default-bold-small") guiSetFont(label7, "default-bold-small") guiSetFont(label8, "default-bold-small") guiSetFont(CreateVehicleButton, "default-bold-small") guiSetFont(outputSystem, "default-bold-small") -- guiSetFont(DestroyElement, "default-bold-small") outputwindow = guiCreateWindow((screenW - 640) / 2, (screenH - 418) / 2, 640, 418, "output", false) guiWindowSetSizable(outputwindow, false) guiSetVisible(outputwindow,false) outputedit = guiCreateMemo(9, 24, 621, 358, "", false, outputwindow) guiMemoSetReadOnly(outputedit, true) closewindowoutput = guiCreateButton(597, 387, 33, 21, "X", false, outputwindow) guiSetFont(closewindowoutput, "default-bold-small") end ) addEventHandler('onClientGUIClick', root, function () if source == outputSystem then guiSetVisible(outputwindow,true) guiSetVisible(window,false) end if source == closewindowoutput then guiSetVisible(outputwindow,false) guiSetVisible(window,true) end if source == CreatePedButton then local X,Y,Z,Rx,Ry,Rz = guiGetText(PositionX),guiGetText(PositionY),guiGetText(PositionZ),guiGetText(RotationX),guiGetText(RotationY),guiGetText(RotationZ) local Model = guiGetText (ID) local ObjectName = guiGetText (Name) ObjectName = createPed ( Model,X,Y,Z,Rx,Ry,Rz ) end if source == CreateVehicleButton then local X,Y,Z,Rx,Ry,Rz = guiGetText(PositionX),guiGetText(PositionY),guiGetText(PositionZ),guiGetText(RotationX),guiGetText(RotationY),guiGetText(RotationZ) local Model = guiGetText (ID) local ObjectName = guiGetText (Name) ObjectName = createVehicle ( Model,X,Y,Z,Rx,Ry,Rz ) end if source == CreateMarkerButton then local X,Y,Z,Rx,Ry,Rz = guiGetText(PositionX),guiGetText(PositionY),guiGetText(PositionZ),guiGetText(RotationX),guiGetText(RotationY),guiGetText(RotationZ) local Model = guiGetText (ID) local ObjectName = guiGetText (Name) ObjectName = createMarker ( X,Y,Z-2, "cylinder", 1.5, 255, 255, 0, 170 ) end if source == CreateObjectButton then local X,Y,Z,Rx,Ry,Rz = guiGetText(PositionX),guiGetText(PositionY),guiGetText(PositionZ),guiGetText(RotationX),guiGetText(RotationY),guiGetText(RotationZ) local Model = guiGetText (ID) local ObjectName = guiGetText (Name) ObjectName = createObject ( Model,X,Y,Z-2,Rx,Ry,Rz ) end if source == CreateBlipButton then local X,Y,Z= guiGetText(PositionX),guiGetText(PositionY),guiGetText(PositionZ) local Model = guiGetText (ID) ObjectName = createBlip ( X,Y,Z,Model) end end ) bindKey ( "F2" , "down" , function() guiSetVisible ( window, not guiGetVisible ( window ) ) showCursor ( guiGetVisible ( window ) ) guiSetVisible(outputwindow,false) end)
  6. بسم الله الرحمن الرحيم ----- السلام عليكم ورحمة الله وبركاته كيفكم ياعرب ان شاء الله طيبين ----- اصدار اول HUD قبل شي اسبوعين نشرت اليوم وقت الاصدار الثاني بإذن الله ----- صور ----- بعض المميزات يختفي وقت تفتح الخريطة اذا مامعك اسلحة رح تختفي صور الاسلحة واذاالعكس رح تظهر اذا الدم 0 رح يختفي من مكانه ونفس الوضع في الدرع اما بالنسبة للأكسجين اذا كامل رح يختفي - هذي ما كانت موجودة بالاصدار القديم وبالنسبة للنجوم وهي بها شي مميز شوي - تشبه حقت سيرفر بسول بشي وهي انها تدور + حليت مشكلة كانت بالهيد القديم وهي خاصة بالاسلحة ما علينا منها الحين المهم - طولت عليكم - رابط التحميل Click here to download ملاحظة مهمة : ممنوع تغيير اسم المود ميشان الصور HUD-v2 الاسم
  7. في الاصدار هذا ما كان معي وقت وكنت بسافر شي اسبوع وارجع - بضبطه ان شاء الله
  8. ان شاء الله بضبط لكم الاصدار الثاني وبخليه رائع وافضل من ذا بكثير
  9. الاصدار الثاني ان شاء الله يا غالي
  10. السلام عليكم ورحمة الله وبركاته جديد hud سويت لكم اتمنى يعجبكم - مع ملاحظة انه الاصدار الاول + قريباً الاصدار الثاني صورة التحميل ( Click here to Download )
  11. السلام عليكم ورحمة الله وبركاته اليوم بطرح لكم سكربت لوحة تسجيل الدخول طبعاً المود لازم ينضاف بجروب ادمن + يفضل عدم تغيير الاسم - loginPanel ميشان النغمة + الصورة صور التحميل http://up.top4top.net/downloadf-189j8jo1-zip.html
  12. شكراً لك اخي بالنسبة للنقط - الارض مرتفعة ف رفعت الاوبجكت معها
  13. السلام عليكم ورحمة الله وبركاته ابي اتأكد من اكوادي الحين انا مقدر اجرب تجارب كاملة بدون سيرفر استضافة المهم الابواب هي - اذا كنت بسيرفر استضافة - وقت يفتحوا رح يفتحو للكل او للي واقف بالماركر فقط واذا اللي بده يدخل مب من تيم الشرطة هل الباب رح يفتح لتيم الشرطة وما يفتح له ؟ + فيه شي غريب بالاكواد وقت ادخل بدون مركبة يفتح ويقفل بدون مشاكل وقت ادخل ب مركبة يفتح ويقفل لكن يجيب خطأ في التأكد من تيم اللاعب طيب الاكواد هي - ابي اعرف منكم ID, x, y, z = 975, -297.9,1507.5,76 x2, y2, z2 = -306.7,1507.5,76 ---------------------------------------------------------------------------------------------------------- local Object = createObject ( ID, x, y, z ) local Object2 = createObject ( ID, x2, y2, z2 ) local Marker = createMarker ( -302.25726, 1507.37756, 75.3593-1, "cylinder", 10, 255, 255, 255, 100 ) local Markers = createMarker ( x, y+10, z-1, "cylinder", 5, 255, 255, 255, 100 ) ---------------------------------------------------------------------------------------------------------- addEventHandler ( "onMarkerHit", root, function (ThePolice) if source == Marker then if getPlayerTeam (ThePolice) and getTeamName (getPlayerTeam(ThePolice)) == "Police" then moveObject (Object,5000,x+7,y,z+.2) moveObject (Object2,5000,x2-7,y2,z2+.2) else exports["guimessages"]:outputServer(ThePolice,"* Only Police Can Open This Door.",255,255,0) end end if source == Markers then if getPlayerTeam (ThePolice) and getTeamName (getPlayerTeam(ThePolice)) == "Police" then moveObject (Object,5000,x+7,y,z+.2) moveObject (Object2,5000,x2-7,y2,z2+.2) else exports["guimessages"]:outputServer(ThePolice,"* Only Police Can Open This Door.",255,255,0) end end end ) ---------------------------------------------------------------------------------------------------------- addEventHandler ( "onMarkerLeave", root, function (ThePolice) if source == Marker then if getPlayerTeam (ThePolice) and getTeamName (getPlayerTeam(ThePolice)) == "Police" then moveObject (Object,5000,x,y,z) moveObject (Object2,5000,x2,y2,z2) end end if source == Markers then if getPlayerTeam (ThePolice) and getTeamName (getPlayerTeam(ThePolice)) == "Police" then moveObject (Object,5000,x,y,z) moveObject (Object2,5000,x2,y2,z2) end end end )
  14. بالنسبة للدخول - هذا مثال فقط انا بسوي جيم مود وابي الكاميرات تكون متغيرة ابي مثال لـ unpack
  15. انا اعرف ال math.random لكن ال table.random صعبة شوي بالنسبة لي المهم - التجربة local CamMax = { --[[ وش احط بالجدول ]] } TheCamMax = CamMax[math.random(#CamMax)] addEvent("SetCameraMatrixLocalPlayer",true) addEventHandler("SetCameraMatrixLocalPlayer",root, function () fadeCamera(source,true, 3, 0, 0, 0) setCameraMatrix(source,CamMax) --=================-- camera 2 end )
  16. السلام عليكم ورحمة الله وبركاته ابي مساعدة في الرقم العشوائي لكن ابيه لل كاميرا ماتركس CameraMatrix مثلاً وقت ادخل السيرفر يجيب الكاميرا ماتركس على مكان معين واذا خرجت و دخلت مرة ثانية يجيب الكاميرا على مكان آخر وهكذا اتمنى فهمتوني
  17. وقت تضغط هنا بتدخل سيرفري تلقائي Click here to enter the server ( Gta 4u )
  18. السلام عليكم ورحمة الله وبركاته ياشباب ابي طلب بسيط في التنسيق انا مثلاً ابي اذا احد ضغط كلمة ( هنا ) يروح على شي معين مثلاً https://www.youtube.com/channel/UCc9vKd ... r4y3oeh9mg وش اسوي ؟ مثال اضغط ( هنا ) للذهاب لقناتي ابي اذا ضغط ( هنا ) اروح للقناة حقتي
×
×
  • Create New...