AboShanab
Members-
Posts
1,348 -
Joined
-
Last visited
Everything posted by AboShanab
-
اسف اخوي غلطت في الكود وصلحته اخذه بعد الاصلاح
-
يعطيك الف الف مليون عافية ع هيك شروحات ..
-
marker = createMarker( 1857.47180,827.18615 ,9.39790, "cylinder", 2, 255, 255, 0, 255 ) addEventHandler("onMarkerHit", marker, function ( player ) if ( getElementType ( player ) == ( "player" ) ) then if ( isObjectInACLGroup ("user."..getAccountName ( getPlayerAccount ( player ) ), aclGetGroup ( "Admin" ) ) ) then outputChatBox("تم الدخول",player,255,0,0) setElementInterior(player,14) setElementPosition(player,204.33232116699,-166.63243103027,1000.5234375) else outputChatBox("غير مصرح لكـ بأن تدخل آلمنزل",player,255,0,0) end end end ) markerquit = createMarker( x,y, z, "cylinder", 2, 255, 255, 0, 255 ) setElementInterior(markerquit,14) addEventHandler("onMarkerHit",markerquit, function (player) if ( getElementType ( player ) == ( "player" ) ) then setElementPosition(player,x,y,z) setElementInterior(player,0) end end ) التعديلات : في السطر 15 حط احداثيات الماركر اللي تبيها داخل المنزل وفي السطر 20 حط احداثيات عند الخروج يخللي احداثياته ..
-
يب هنا الغلط كنت ناسي بالنهاية القوسسس
-
https://community.multitheftauto.com/index.php?p=resources&s=details&id=7463 original : https://community.multitheftauto.com/in ... ls&id=5974 .. DONE
-
https://community.multitheftauto.com/index.php?p=resources&s=details&id=7464 original : https://community.multitheftauto.com/ind ... ls&id=2577 DONE
-
ههههههههههههههههههه ااقول امشش سكايب
-
انت مستر الكارثة ؟؟ ع العموم اذا مستر الكارثة هات سكايبي حقك ابيك !!
-
اسممع حبيبي اطرح كودك كلنت وسيرفر ونضبطك .. #
-
تبعد الشاشة قصدك انها تروح ؟
-
حبيبي زاحف بقول لك نصيحة وحطها لك ك مبرمج اذا بتستخدم XML راح ينلعن ام البيانات خخخخخخخخخخخخخ السطور تكون واحد فوق واحط فيه رموز واحد مدري وشو الافضل في الاستخدام ترتيب وحركات وكل شي مضبوط = SQL تحياتي لك
-
يب ، مهو بس انفجار ، تصير السيارة ماتضرر أبد .. اوكك يعطيك العافية هذا اللي نبي احنا خخخخخخخخخخخخخخخخخخخ ي نوب و اليوم اذا كلمتك سكايب الساعه 12 لا ترد الا 1 اوك حبيبي خخخخخخخخخخخخ
-
newvehicle = createVehicle(602, 0, 0, 6) setVehicleDamageProof(newvehicle, true) هذي يعني تمنع الانفجار حق newvehice ??
-
السسلام عليكم ورحمة الله وبركاته .. # كيف الحال .. $ عسساكم بالف خير وصصحة وسلاممة .. # جاي ابي اسوي كود مضاد الانفجار يعني لو تجيك هنتر تفجرك ما تنفجر سويت الكود كذا لاكن ما ادري اذا شغال ولا لا لاني مو بجهازي addEventHandler("onVehicleDamage",root, function () local car = getVehicleOccupant(source) if ( car ) then fixVehicle ( source ) end end )
-
اووووووووووه طيب سساعددني ي ليل >< تككفى وربي ابي كود محتاجهه مرة
-
عرفتها الحرككة لكن مثلا لو اني رافعه في منتدى او موقع وابيه ما احد يقدر يفكه لاني تاعب على الكودات كيف ؟؟َ
-
اسسف على اللي سويته كننت في غفلهه .. # مثلا لو مسسوي مود حصري ولا ابي احد يفككه كيف .. ؟
-
7yeak allah الله يحيك ..
-
السلام عليكم ورحمة الله وبرككاته .. # كيف حالكم شباب .. # عساكم بالف خير وصصحة وسسلامة .. # اليوم جاي اطلب منكم كود منع فك التشفير .. # جربت ذا الكود ولا ضبط .. # function dxDrawColorText(str, ax, ay, bx, by, color, scale, font, alignX, alignY) bx, by, color, scale, font = bx or ax, by or ay, color or tocolor(255,255,255,255), scale or 1, font or "default" if alignX then if alignX == "center" then ax = ax + (bx - ax - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font))/2 elseif alignX == "right" then ax = bx - dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) end end if alignY then if alignY == "center" then ay = ay + (by - ay - dxGetFontHeight(scale, font))/2 elseif alignY == "bottom" then ay = by - dxGetFontHeight(scale, font) end end local alpha = string.format("%08X", color):sub(1,2) local pat = "(.-)#(%x%x%x%x%x%x)" local s, e, cap, col = str:find(pat, 1) local last = 1 while s do if cap == "" and col then color = tocolor(getColorFromString("#"..col..alpha)) end if s ~= 1 or cap ~= "" then local w = dxGetTextWidth(cap, scale, font) dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) ax = ax + w color = tocolor(getColorFromString("#"..col..alpha)) end last = e + 1 s, e, cap, col = str:find(pat, last) end if last <= #str then cap = str:sub(last) dxDrawText(cap, ax, ay, ax + dxGetTextWidth(cap, scale, font), by, color, scale, font) end end هل من اكواد غيرهه تمنع فك التشفير .. # وشكرا
-
Tnx To : 6ArHxiMr'3a[Z]eF Mr.Pres[T]ege Tete omar
-
اخي مستر بريستيج ششوف ردي عدلته
-
ما فهمت ولا بفهمم طيب هذا رابطه https://community.multitheftauto.com/in ... ls&id=3804 اوك المششكلة الحين كيف اطلع الـ كول ؟
-
الوظيفة ببساطة تعد الوقت الي السيرفر اشتغل فيه في milliseconds ما تحتاج شرح milliseconds اعتقد كلكم عارفين بالوظيفة هذي يمديك تجيب مثلاً الوقت الي مضى بين فترة وفترة .. هذي اعتقد للي يعرفون رياضيات اممم يعطيكك العافيةة ع هيكك شرح بس تقصد بـ milliseconds اللي هو 1 ثانية يعني 1000 ؟
-
حتى انا ابي مثال لها مي تو ..
-
السسلام عليككم ورحممةة الله وبركاتته .. # كيف الحال .. # عسساكم بخير .. اليوم ودي اخذ مثال او تعريب المهم ابي افهم وش سالفتهه .. # createColCuboid ( fX, fY, fZ, fWidth, fDepth,fHeight ) انا ماني فاهم fX fY fZ fWidth fDepth fHeight يعني الكود كله ماني فاهمه خخخخخخخخخخخ العم الويكي كاتب كذا createColCuboid ( fX, fY, fZ, 10.0, 10.0, 10.0 ) متى ومتى ومتى احط ض1 10.0 المهممممممم Required Arguments fX: The X position of the collision cuboid's western side fY: The Y position of the collision cuboid's southern side fZ: The Z position of the collision cuboid's lowest side fWidth: The collision cuboid's width fDepth: The collision cuboid's depth fHeight: The collision cuboid's height هل من تعريب لذوول وشكرا
