-
Posts
506 -
Joined
-
Last visited
Everything posted by Mostafa MohammeD
-
(لوحة اعطاء الدم والدرع اول مود لي(تم تجديد الرابط
Mostafa MohammeD replied to Mostafa MohammeD's topic in المساهمات
كفوؤوؤوؤك -
السلام عليكم ورحمة الله وبركاته اليوم احب اقدم لكم مود المعرض المطور المود مو من صنعي بس انا عدلت عليه وايضا معه مواتره وكلها جديدة وبوريكم قبل التعديل وبعد التعديل رابط الفيديو رابط قناتي https://www.youtube.com/channel/UCEwOQx ... wazYDi-6mQ رابط المود http://www.up-00.com/?RDgL روابط المواتر BMW E36 سيارة ال http://www.up-00.com/?8DgL Audi R8 GT Spyder سيارة ال http://www.up-00.com/?hVgL lamborghini LP700 AVSM Roadste سيارة ال http://www.up-00.com/?EWgL Hummer H3 Limosine سيارة ال http://www.up-00.com/?M7gL ferrari 488 spider سيارة ال http://www.up-00.com/?jWgL
-
(لوحة اعطاء الدم والدرع اول مود لي(تم تجديد الرابط
Mostafa MohammeD replied to Mostafa MohammeD's topic in المساهمات
-
(لوحة اعطاء الدم والدرع اول مود لي(تم تجديد الرابط
Mostafa MohammeD replied to Mostafa MohammeD's topic in المساهمات
يا اخي احاول قدر المستطاع ان اتعلم البرمجة بس انا لسا مبتداء انشاء الله بدعمك اتقدم -
(لوحة اعطاء الدم والدرع اول مود لي(تم تجديد الرابط
Mostafa MohammeD replied to Mostafa MohammeD's topic in المساهمات
شكرا لك -
(لوحة اعطاء الدم والدرع اول مود لي(تم تجديد الرابط
Mostafa MohammeD replied to Mostafa MohammeD's topic in المساهمات
اسف شباب علي التاخر بس تم تجديد الرابط http://www.up-00.com/?6pnj -
هاي كل الاكواد الي بي المود ؟؟
-
لالا مابي اسوي لوحة التسجيل نفسها ابي اسوي لوحة لما ادخل الماركر تفتح مثل هاي الطريقة
-
شباب ابي الاكواد او الفنكشات الي تخليني اسوي اللوحة مثل الي بي هاي الفيديو https://www.youtube.com/watch?v=DUOlBU7puVE وشكرا
-
مشكورررر اخي
-
الاكواد الكلينكت local textsToDraw = {} local hideown local showtime local characteraddition local maxbubbles local showthebubbles = true function income(message,messagetype) if source ~= getLocalPlayer() or not hideown then if messagetype == 2 then if getPlayerTeam(source) == getPlayerTeam(getLocalPlayer()) then addText(source,message,messagetype) end else addText(source,message,messagetype) end end end function addText(source,message,messagetype) local notfirst = false for i,v in ipairs(textsToDraw) do if v[1] == source then v[4] = v[4] + 1 notfirst = true end end local infotable = {source,message,messagetype,0} table.insert(textsToDraw,infotable) if not notfirst then setTimer(removeText,showtime + (#message * characteraddition),1,infotable) end end function removeText(infotable) for i,v in ipairs(textsToDraw) do if v[1] == infotable[1] and v[2] == infotable[2] then for i2,v2 in ipairs(textsToDraw) do if v2[1] == v[1] and v[4] - v2[4] == 1 then setTimer(removeText,showtime + (#v2[2] * characteraddition),1,v2) end end table.remove(textsToDraw,i) break end end end function getTextsToRemove() for i,v in ipairs(textsToDraw) do if v[1] == source then removeText(v) end end end function handleDisplay() if showthebubbles then for i,v in ipairs(textsToDraw) do if isElement(v[1]) then if getElementHealth(v[1]) > 0 then local camPosXl, camPosYl, camPosZl = getPedBonePosition (v[1], 6) local camPosXr, camPosYr, camPosZr = getPedBonePosition (v[1], 7) local x,y,z = (camPosXl + camPosXr) / 2, (camPosYl + camPosYr) / 2, (camPosZl + camPosZr) / 2 --local posx,posy = getScreenFromWorldPosition(x,y,z+0.25) local cx,cy,cz = getCameraMatrix() local px,py,pz = getElementPosition(v[1]) local distance = getDistanceBetweenPoints3D(cx,cy,cz,px,py,pz) local posx,posy = getScreenFromWorldPosition(x,y,z+0.020*distance+0.10) local elementtoignore1 = getPedOccupiedVehicle(getLocalPlayer()) or getLocalPlayer() local elementtoignore2 = getPedOccupiedVehicle(v[1]) or v[1] if posx and distance <= 45 and ( isLineOfSightClear(cx,cy,cz,px,py,pz,true,true,false,true,false,true,true,elementtoignore1) or isLineOfSightClear(cx,cy,cz,px,py,pz,true,true,false,true,false,true,true,elementtoignore2) ) and ( not maxbubbles or v[4] < maxbubbles ) then -- change this when multiple ignored elements can be specified local width = dxGetTextWidth(v[2],1,"default") dxDrawRectangle(posx - (3 + (0.5 * width)),posy - (2 + (v[4] * 20)),width + 5,19,tocolor(0,0,0,255)) dxDrawRectangle(posx - (6 + (0.5 * width)),posy - (2 + (v[4] * 20)),width + 11,19,tocolor(0,0,0,33)) dxDrawRectangle(posx - (8 + (0.5 * width)),posy - (1 + (v[4] * 20)),width + 15,17,tocolor(0,0,0,255)) dxDrawRectangle(posx - (10 + (0.5 * width)),posy - (1 + (v[4] * 20)),width + 19,17,tocolor(0,0,0,33)) dxDrawRectangle(posx - (10 + (0.5 * width)),posy - (v[4] * 20) + 1,width + 19,13,tocolor(0,0,0,255)) dxDrawRectangle(posx - (12 + (0.5 * width)),posy - (v[4] * 20) + 1,width + 23,13,tocolor(0,0,0,33)) dxDrawRectangle(posx - (12 + (0.5 * width)),posy - (v[4] * 20) + 4,width + 23,7,tocolor(0,0,0,255)) local r,g,b = 255,255,255 if v[3] == 2 then r,g,b = getTeamColor(getPlayerTeam(v[1])) end dxDrawText(v[2],posx - (0.5 * width),posy - (v[4] * 20),posx - (0.5 * width),posy - (v[4] * 20),tocolor(r,g,b,255),1,"default","left","top",false,false,false) end end end end end end function getServerSettings() triggerServerEvent("onAskForBubbleSettings",getLocalPlayer()) end function saveSettings(settings) showtime = settings[1] characteraddition = settings[2] maxbubbles = settings[3] hideown = settings[4] addEvent("onChatbubblesMessageIncome",true) addEventHandler("onChatbubblesMessageIncome",getRootElement(),income) end function toggleBubblesOnOff() showthebubbles = not showthebubbles outputChatBox("Toggled chatbubbles " ..( not showthebubbles and "#FF0000off#FFFFFF." or "#00FF00on#FFFFFF." ),255,255,255,true) end addEventHandler("onClientPlayerQuit",getRootElement(),getTextsToRemove) addEventHandler("onClientRender",getRootElement(),handleDisplay) addEventHandler("onClientResourceStart",getResourceRootElement(getThisResource()),getServerSettings) addEvent("onBubbleSettingsReturn",true) addEventHandler("onBubbleSettingsReturn",getRootElement(),saveSettings) addCommandHandler("chatbubbles",toggleBubblesOnOff) السيرفر local showtime = tonumber(get("chatbubbles.DefaultTime")) local characteraddition = tonumber(get("chatbubbles.PerCharacterAddition")) local maxbubbles = get("chatbubbles.MaxBubbles") if maxbubbles == "false" then maxbubbles = false else maxbubbles = tonumber(maxbubbles) end local hideown = get("chatbubbles.HideOwn") if hideown == "true" then hideown = true else hideown = false end function sendMessageToClient(message,messagetype) if not wasEventCancelled() then if messagetype == 0 or messagetype == 2 then triggerClientEvent("onChatbubblesMessageIncome",source,message,messagetype) end end end function returnSettings() local settings = { showtime, characteraddition, maxbubbles, hideown } triggerClientEvent(source,"onBubbleSettingsReturn",getRootElement(),settings) end addEventHandler("onPlayerChat",getRootElement(),sendMessageToClient) addEvent("onAskForBubbleSettings",true) addEventHandler("onAskForBubbleSettings",getRootElement(),returnSettings)
-
شباب ابي منكمطلب انا معي مود لما اللاعب يكتب كلام يطلع فوقيه بس ابي الكلام ما يكون ابيض يكون اي لون اخر كيف اسويه اتمني الافادة وشكرا
-
(لوحة اعطاء الدم والدرع اول مود لي(تم تجديد الرابط
Mostafa MohammeD replied to Mostafa MohammeD's topic in المساهمات
شكرا لك -
(لوحة اعطاء الدم والدرع اول مود لي(تم تجديد الرابط
Mostafa MohammeD replied to Mostafa MohammeD's topic in المساهمات
شكرا لك اخي تنطيل ممكن رابط المواقع الي يرفع عليها وشكرا -
(لوحة اعطاء الدم والدرع اول مود لي(تم تجديد الرابط
Mostafa MohammeD replied to Mostafa MohammeD's topic in المساهمات
شكرا لك وانشاء الله اواصل -
(لوحة اعطاء الدم والدرع اول مود لي(تم تجديد الرابط
Mostafa MohammeD replied to Mostafa MohammeD's topic in المساهمات
شكرا لك اخي -
(لوحة اعطاء الدم والدرع اول مود لي(تم تجديد الرابط
Mostafa MohammeD replied to Mostafa MohammeD's topic in المساهمات
كفوك +تعرف مكان ار سهل التحميل فيه غير مركز الخليج ؟؟ -
(لوحة اعطاء الدم والدرع اول مود لي(تم تجديد الرابط
Mostafa MohammeD replied to Mostafa MohammeD's topic in المساهمات
شكرا + انشاء الله اكون من كبار المبرمجين -
شباب تمام وبحمدالله تمكنت من صنع اول مود لي وهو عبارة عن لوحة اعطاء الدم والدرع اتمني عدم السخرية نظارا لان المود بسيط بس اني لسا مبتداء ضعيف رابط المود http://www.up-00.com/?6pnj رابط الفيديو للمود رابط قناتي باليوتيوب https://www.youtube.com/channel/UCEwOQx ... wazYDi-6mQ اتمني تقيموني بالنسبة لاول مود لي وشكرا
-
يا شباب شو بكم ما في كود واحد شغال شو في
-
طب الان سويت الماركر والمود اشتغل والحمدالله بس ابي اخر شئ ابي اللاعب يمكنه ان يضرب بس بي يده فقط يعني مايقدر يضرب بي اي سلاح غير يده اتمني تفهموني وشكرا
-
ابي حل لمشكلتي انا سويت كود ان الصورة تظهر في القيم مود وجيت اشغله ما اشتغل مع اني حربته بقيم مود اخش واشتغل ممكن حل الاكواد+كود ظهور الصورة local sm = {} sm.moov = 0 sm.object1, sm.object2 = nil, nil local function removeCamHandler () if(sm.moov == 1) then sm.moov = 0 removeEventHandler ( "onClientPreRender", getRootElement(), camRender ) end end function camRender () if sm.object1 and isElement(sm.object1) then local x1, y1, z1 = getElementPosition ( sm.object1 ) local x2, y2, z2 = getElementPosition ( sm.object2 ) setCameraMatrix ( x1, y1, z1, x2, y2, z2 ) end end function smoothMoveCamera ( x1, y1, z1, x1t, y1t, z1t, x2, y2, z2, x2t, y2t, z2t, time ) if(sm.moov == 1) then return false end sm.object1 = createObject ( 1337, x1, y1, z1 ) sm.object2 = createObject ( 1337, x1t, y1t, z1t ) setElementAlpha ( sm.object1, 0 ) setElementAlpha ( sm.object2, 0 ) setObjectScale(sm.object1, 0.01) setObjectScale(sm.object2, 0.01) moveObject ( sm.object1, time, x2, y2, z2, 0, 0, 0, "InOutQuad" ) moveObject ( sm.object2, time, x2t, y2t, z2t, 0, 0, 0, "InOutQuad" ) addEventHandler ( "onClientPreRender", getRootElement(), camRender ) sm.moov = 1 setTimer ( removeCamHandler, time, 1 ) setTimer ( destroyElement, time, 1, sm.object1 ) setTimer ( destroyElement, time, 1, sm.object2 ) return true end function dxDrawLine(xs, ys, xe, ye, color, width, postgui) return dxDrawLine_((xs/1366)*screenW, (ys/768)*screenH, (xe/1366)*screenW, (ye/768)*screenH, color, width, postgui) end function dxDrawRectangle(x, y, w, h, color, postgui) return dxDrawRectangle_((x/1366)*screenW, (y/768)*screenH, (w/1366)*screenW, (h/768)*screenH, color, postgui) end function dxDrawText(text, x, y, w, h, color, size, font, alignl, alignt, clip, wordbreak, postgui, colorcoded, spp) return dxDrawText_(text, (x/1366)*screenW, (y/768)*screenH, (w/1366)*screenW, (h/768)*screenH, color, (size/1366)*screenW, font, alignl, alignt, clip, wordbreak, postgui, colorcoded, spp) end function dxDrawImage(x, y, w, h, image, rot, rw, ry, color, postgui) return dxDrawImage_((x/1366)*screenW, (y/768)*screenH, (w/1366)*screenW, (h/768)*screenH, image, rot, rw, ry, color, postgui) end function centerWindow(center_window) local screenW,screenH=guiGetScreenSize() local windowW,windowH=guiGetSize(center_window,false) local x,y = (screenW-windowW)/2,(screenH-windowH)/2 guiSetPosition(center_window,x,y,false) end addEventHandler("onClientResourceStart",resourceRoot, function () setTimer(function () function dxDrawLoading() rot = rot + 2 if rot > 360 then rot = 0 end dxDrawText("Welcome To Server | GameMod By : momar5600", 418 - 1, 178 - 1, 948 - 1, 208 - 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false) dxDrawText("Welcome To Server | GameMod By : momar5600", 418 + 1, 178 - 1, 948 + 1, 208 - 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false) dxDrawText("Welcome To Server | GameMod By : momar5600", 418 - 1, 178 + 1, 948 - 1, 208 + 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false) dxDrawText("Welcome To Server | GameMod By : momar5600", 418 + 1, 178 + 1, 948 + 1, 208 + 1, tocolor(0, 0, 0, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false) dxDrawText("Welcome To Server | GameMod By : momar5600", 418, 178, 948, 208, tocolor(255, 255, 255, 255), 2.00, "default-bold", "center", "top", false, false, false, false, false) dxDrawImage(621, 372, 125, 125, "Images/Loading.png", rot) dxDrawText("Loading ....", 583, 342, 783, 362, tocolor(255, 255, 255, 255), 1.20, "default-bold", "center", "top", false, false, false, false, false) end addEventHandler("onClientRender", root, dxDrawLoading); setTimer( function () removeEventHandler("onClientRender", root, dxDrawLoading); if isPedInVehicle(localPlayer) then destroyElement(getPedOccupiedVehicle(localPlayer)) end dx = true setCameraMatrix(-2684.654296875,1933.3981933594,185.04570007324,-2684.6457519531,1932.5715332031,184.48304748535) sound = playSound ("ss.mp3",true) setTime(1,0) showCursor(true) guiSetInputEnabled(true) fadeCamera(true) showChat(false) setElementDimension(localPlayer,0) setElementData(localPlayer,"new",false) outputChatBox("#0069c7 ## #ff0000 GameMode By #0069c7[#ff0000MR~#0069c7Mos.[T].aّّّfA~#ff0000] #0069c7##",255,0,0,true) end,500,1)) end)) wnd = guiCreateStaticImage(0,-268,389,268,"abed.png",false) english = guiCreateButton(0.0231,0.0284,0.0566,0.1082,"En",true,wnd) guiSetFont(english,"default-bold-small") setTimer(function() guiSetProperty(english, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255))) end, 1000, 0) arabic = guiCreateButton(0.0848,0.0284,0.0566,0.1082,"Ar",true,wnd) guiSetFont(arabic,"default-bold-small") setTimer(function() guiSetProperty(arabic, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255))) end, 1000, 0) user_l = guiCreateLabel(0.0206,0.1903,0.9614,0.0784,"Username",true,wnd) function Color ( ) guiLabelSetColor (user_l, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) end setTimer ( Color, 1000, 0 ) guiLabelSetHorizontalAlign(user_l,"center",false) guiSetFont(user_l,"default-bold-small") user = guiCreateEdit(0.0231,0.2724,0.9537,0.1306,"",true,wnd) setTimer(function() guiSetProperty(user, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255))) end, 1000, 0) pass_l = guiCreateLabel(0.0206,0.4216,0.9614,0.0784,"Password",true,wnd) function Color ( ) guiLabelSetColor (pass_l, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) end setTimer ( Color, 1000, 0 ) guiLabelSetHorizontalAlign(pass_l,"center",false) guiSetFont(pass_l,"default-bold-small") pass = guiCreateEdit(0.0231,0.5187,0.9537,0.1306,"",true,wnd) setTimer(function() guiSetProperty(pass, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255))) end, 100, 0) guiEditSetMasked(pass,true) remember = guiCreateCheckBox(0.0231,0.6642,0.3728,0.0746,"Remember Me !!",false,true,wnd) guiSetFont(remember,"default-bold-small") setTimer(function() guiSetProperty(remember, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255))) end, 1000, 0) reg = guiCreateButton(0.5244,0.7724,0.3239,0.153,"Register",true,wnd) guiSetFont(reg,"default-bold-small") setTimer(function() guiSetProperty(reg, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255))) end, 1000, 0) login = guiCreateButton(0.144,0.7724,0.3239,0.153,"Login",true,wnd) guiSetFont(login,"default-bold-small") setTimer(function() guiSetProperty(login, 'NormalTextColour', string.format("%.2X%.2X%.2X%.2X", 255, math.random(255), math.random(255), math.random(255))) end, 1000, 0) centerWindow(wnd) triggerServerEvent("onGetSave",localPlayer) addEvent("onPutSave",true) addEventHandler("onPutSave",root, function (puser,ppass) guiSetText(user,puser) guiSetText(pass,ppass) end ) addEventHandler("onClientGUIClick",root, function () if ( source == ex ) then guiSetVisible(wnd,false) showCursor(false) guiSetInputEnabled(false) Show() elseif ( source == english ) then guiSetText(user_l,"Username") guiSetText(pass_l,"Password") guiSetText(login,"Login") guiSetText(reg,"Register") guiSetText(remember,"Remember Me !!") elseif ( source == arabic ) then guiSetText(user_l,"اسم المستخدم") guiSetText(pass_l,"كلمه المرور") guiSetText(login,"تسجيل الدخول") guiSetText(reg,"حساب جديد") guiSetText(remember,"تذكرني") end 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 outputChatBox("* You Must Write Username Or Password",255,0,0) end elseif ( source == reg ) then if user ~= "" and pass ~= "" then triggerServerEvent("onReg",localPlayer,user,pass) else outputChatBox("* You Must Write Username Or Password",255,0,0) end end end ) addEvent("onCl",true) addEventHandler("onCl",root, function () guiSetVisible(wnd,false) showCursor(false) guiSetInputEnabled(false) Show() end ) function setPlayerXYZ(x,y,z) local player = getLocalPlayer() setElementData(player,"x",x) setElementData(player,"y",y) setElementData(player,"z",z) end text = ".:[حياكم الله بسيرفر جراند العرب]:." dx = false skin = {{46,"ثوب ابيض"},{0,"cj"},{217,"شخصية الادمن"},{266,"شخصية الجوكر"}} num = 1 place = { {"النخيل",2021.6854248047,1441.3870849609,40.58459854126,2022.5858154297,1441.0551757813,40.303291320801,2119.56250,1396.94238,10.81252}, {"الدائري",1869.2296142578,1426.2882080078,74.245399475098,1868.2775878906,1426.3618164063,73.948387145996,1686.27844,1400.07080,10.74839}, {"ساحة القتال",414.17388916016,2046.4881591797,61.682598114014,413.30380249023,2046.0771484375,61.410533905029,277.93359,1988.82581,17.64063}, {"البداية",7968.8471679688,-3036.4885253906,32.74340057373,7968.00390625,-3036.0454101563,32.439910888672,7955.44043,-3000.18726,5.40781}, {"الطعس",-2750.5700683594,-2616.154296875,26.364200592041,-2750.1618652344,-2615.2575683594,26.193408966064,-2682.37036,-2549.38403,3.23208}, } --[[ 1- 7892.251953125,-3044.7609863281,8.2206001281738,7892.4155273438,-3045.7424316406,8.1202297210693, 2- 7861.3447265625,-2983.4196777344,27.067300796509,7861.7626953125,-2984.2622070313,26.727567672729, -2719.56055,-318.80200,71.47559 ]]--[[ 2086.59619,1472.00696,10.82031 2040.5595703125,1424.5876464844,38.590599060059,2040.6915283203,1425.5034179688,38.211277008057 ---------------------------------------------------------------------------------------------------------------- 2109.34326,1549.89893,10.82031 2021.6854248047,1441.3870849609,40.58459854126,2022.5858154297,1441.0551757813,40.303291320801 1686.27844 1400.07080 10.74839 1869.2296142578,1426.2882080078,74.245399475098,1868.2775878906,1426.3618164063,73.948387145996 ]] function Show() smoothMoveCamera(7861.3447265625,-2983.4196777344,27.067300796509,7861.7626953125,-2984.2622070313,26.727567672729,7892.251953125,-3044.7609863281,8.2206001281738,7892.4155273438,-3045.7424316406,8.1202297210693,2000) ped = createPed(skin[1][1],7893.16943,-3050.25659,7.05853) bindKey("arrow_l","down",left) bindKey("arrow_r","down",right) bindKey("enter","down",enter) text = skin[1][2] end function left() if num == 1 then num = #skin
-
اي هذا المود يغير الالوان سيارات اي شي يغيره --- هذا يختار الوان على حسب مافهمته انك تبي تختار الوان اذا ضغطت اسود يصير اسود وهذا مثال طب وضحلي يعني انا حملت المود شو بسوي الان
