Mohamed Posted March 25, 2015 Share Posted March 25, 2015 ابي كود السيارة تكون شفافة و ما تلمس السيارة الاخرين مثل زي في الرايس لما تعمل سباق مافيك تلمس السيارة لجنبك يعني تتخترق السيارة لجنبك بدون ما تلمسها كمان طلب ثاني كيف اخلي الهنتر ما تطلاق سواريخ ارجو الرد بسرعة و شكر Link to comment
Mr-M3AND Posted March 25, 2015 Share Posted March 25, 2015 طلبك الاول setElementCollidableWith طلبك الثاني #Event onVehicleEnter onVehicleExit #function getElementModel unbindKey bindKey Link to comment
' A F . Posted March 25, 2015 Share Posted March 25, 2015 + عشان تخفي السياره - 0 عشان تظهرها - 255 setElementAlpha Link to comment
yazan Posted March 25, 2015 Share Posted March 25, 2015 +عشان تخفي السياره - 0 عشان تظهرها - 255 setElementAlpha وش دخل خخخخخ ------------- ظيف له الحدث و في اند للحين يوق احد اند زايد حقت الحدث function(element) if getElementType(element) == "player" then local vehicle = getPedOccupiedVehicle (element) for index,vehicle in ipairs(getElementsByType("vehicle")) do setElementCollidableWith(vehicle, v, false) end end end) Link to comment
The Killer Posted March 25, 2015 Share Posted March 25, 2015 طلبك الاول setElementCollidableWith طلبك الثاني #Event onVehicleEnter onVehicleExit #function getElementModel unbindKey bindKey ما تقدر تسوي unbindKey للأزرار الرئيسيه لاكن عشان يوقف إطلاق الصواريخ او الرشاش يستخدم toggleControl ---- ظيف له الحدث و في اند للحين يوق احد اند زايد حقت الحدث function(element) if getElementType(element) == "player" then local vehicle = getPedOccupiedVehicle (element) for index,vehicle in ipairs(getElementsByType("vehicle")) do setElementCollidableWith(vehicle, v, false) end end end) انت وش قاعد تسوي ! حاط قوس اغلاق الحدث , ومافيه حدث ومسوي لي وظيفه بدون اسم و element = ? ماهو معرف Link to comment
yazan Posted March 25, 2015 Share Posted March 25, 2015 (edited) function df ( element ) if getElementType(element) == "vehicle" then if ( getElementModel ( element ) == 520 ) toggleControl ( source, "vehicle_fire", false ) else toggleControl ( source, "vehicle_fire", true ) end end end addEventHandler ( "onPlayerVehicleEnter", getRootElement(), df ) Edited March 25, 2015 by Guest Link to comment
The Killer Posted March 25, 2015 Share Posted March 25, 2015 vehicle_secondary_fire = ؟ هذا ما يوقف اطلاق الصواريخ من الطائره هذا يوقف فقط الرشاش vehicle_fire = ايقاف الصواريخ تستخدم Link to comment
yazan Posted March 25, 2015 Share Posted March 25, 2015 vehicle_secondary_fire = ؟هذا ما يوقف اطلاق الصواريخ من الطائره هذا يوقف فقط الرشاش vehicle_fire = ايقاف الصواريخ تستخدم اعتذر من انتبهت Link to comment
The Killer Posted March 25, 2015 Share Posted March 25, 2015 الظاهر انك مافهمت قصدي addEventHandler ("onPlayerVehicleEnter", root, function (vehicle) if getElementModel (vehicle) == 520 then toggleControl (source, "vehicle_fire", false) toggleControl (source, "vehicle_secondary_fire", false) else toggleControl (source, "vehicle_fire", true) toggleControl (source, "vehicle_secondary_fire", true) end end ) Link to comment
yazan Posted March 25, 2015 Share Posted March 25, 2015 اي الحين فهمت ض1 بس هو طلب صوريخ ما طلب رشاش الحين شفت طلب قسم من دخلت الموضوع الحين اشوف وش يبي Link to comment
iMr.TZ[W]ER Posted March 25, 2015 Share Posted March 25, 2015 ال unbindkey داخل السكربت الموجود فيه فقط ما يسوي ان بند لكل المودات يعني لوكل Link to comment
yazan Posted March 25, 2015 Share Posted March 25, 2015 ال unbindkeyداخل السكربت الموجود فيه فقط ما يسوي ان بند لكل المودات يعني لوكل انت فاهم غلط الازرار حقت لعبه الاساسيه مثل تمشي لقدام او يمين او شمال او تطلق نار هذي ما تقدر تعدل عليها عن طريق هذه الفنيشن لكن تقدر بطرق اخرى مثل كود فوق Link to comment
iMr.TZ[W]ER Posted March 25, 2015 Share Posted March 25, 2015 ال unbindkeyداخل السكربت الموجود فيه فقط ما يسوي ان بند لكل المودات يعني لوكل انت فاهم غلط الازرار حقت لعبه الاساسيه مثل تمشي لقدام او يمين او شمال او تطلق نار هذي ما تقدر تعدل عليها عن طريق هذه الفنيشن لكن تقدر بطرق اخرى مثل كود فوق ياخي شوف كلامي وروح صفحة الويكي شوف ايش مكتوب Note: unbindKey will only work on binds that were added by the same resource Link to comment
N3xT Posted March 25, 2015 Share Posted March 25, 2015 وش تقصد الصواريخ .. حدد الصورايخ فيه ( رشاشات ف الهنتر + صواريخ ف الهنتر ) + السيارات الشفافة جرب الكود ذا #Server gmontext = get("gmontext") gmoncolor = get("gmoncolor") gmofftext = get("gmofftext") gmoffcolor = get("gmoffcolor") addEvent("onMapStarting") addEventHandler("onMapStarting", getRootElement(), function(mapInfo) if string.find(mapInfo.name, "[DM]", 1, true) or string.find(mapInfo.name, "=DM=", 1, true) or string.find(mapInfo.name, "DM", 1, true) or mapInfo.modename == "Sprint" then gmon() else gmoff() end end) function gmon() for theKey,thePlayer in ipairs(getElementsByType("player")) do setElementData( thePlayer, "overrideCollide.uniqueblah", 0, false ) outputChatBox(gmoncolor..gmontext,thePlayer,186,212,71,true) end end function gmoff() for theKey,thePlayer in ipairs(getElementsByType("player")) do setElementData(thePlayer, "overrideCollide.uniqueblah", nil, false ) outputChatBox(gmoffcolor..gmofftext,thePlayer,255,255,255,true) end end meta.xml "Autoghostmode" author="ahmtork" type= "script" version="1.0.0"/> فـ أنتظارك By AboShanab : الأكواد من Link to comment
yazan Posted March 25, 2015 Share Posted March 25, 2015 وش تقصد الصواريخ .. حدد الصورايخ فيه ( رشاشات ف الهنتر + صواريخ ف الهنتر ) + السيارات الشفافة جرب الكود ذا #Server gmontext = get("gmontext") gmoncolor = get("gmoncolor") gmofftext = get("gmofftext") gmoffcolor = get("gmoffcolor") addEvent("onMapStarting") addEventHandler("onMapStarting", getRootElement(), function(mapInfo) if string.find(mapInfo.name, "[DM]", 1, true) or string.find(mapInfo.name, "=DM=", 1, true) or string.find(mapInfo.name, "DM", 1, true) or mapInfo.modename == "Sprint" then gmon() else gmoff() end end) function gmon() for theKey,thePlayer in ipairs(getElementsByType("player")) do setElementData( thePlayer, "overrideCollide.uniqueblah", 0, false ) outputChatBox(gmoncolor..gmontext,thePlayer,186,212,71,true) end end function gmoff() for theKey,thePlayer in ipairs(getElementsByType("player")) do setElementData(thePlayer, "overrideCollide.uniqueblah", nil, false ) outputChatBox(gmoffcolor..gmofftext,thePlayer,255,255,255,true) end end meta.xml "Autoghostmode" author="ahmtork" type= "script" version="1.0.0"/> فـ أنتظارك By AboShanab : الأكواد من انت تيجي بعد سنه تم الافاده مو لازم كل واحد يطرح كود لو شفت غلط اطرح كودك او صحح يلي نطرح Link to comment
N3xT Posted March 26, 2015 Share Posted March 26, 2015 وش تقصد الصواريخ .. حدد الصورايخ فيه ( رشاشات ف الهنتر + صواريخ ف الهنتر ) + السيارات الشفافة جرب الكود ذا #Server gmontext = get("gmontext") gmoncolor = get("gmoncolor") gmofftext = get("gmofftext") gmoffcolor = get("gmoffcolor") addEvent("onMapStarting") addEventHandler("onMapStarting", getRootElement(), function(mapInfo) if string.find(mapInfo.name, "[DM]", 1, true) or string.find(mapInfo.name, "=DM=", 1, true) or string.find(mapInfo.name, "DM", 1, true) or mapInfo.modename == "Sprint" then gmon() else gmoff() end end) function gmon() for theKey,thePlayer in ipairs(getElementsByType("player")) do setElementData( thePlayer, "overrideCollide.uniqueblah", 0, false ) outputChatBox(gmoncolor..gmontext,thePlayer,186,212,71,true) end end function gmoff() for theKey,thePlayer in ipairs(getElementsByType("player")) do setElementData(thePlayer, "overrideCollide.uniqueblah", nil, false ) outputChatBox(gmoffcolor..gmofftext,thePlayer,255,255,255,true) end end meta.xml "Autoghostmode" author="ahmtork" type= "script" version="1.0.0"/> فـ أنتظارك By AboShanab : الأكواد من انت تيجي بعد سنه تم الافاده مو لازم كل واحد يطرح كود لو شفت غلط اطرح كودك او صحح يلي نطرح وين بعد سنة ؟ .. الموضوع أمس .. شغل تزويد مشاركات م نبي Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now