MrCor Posted October 18, 2012 Share Posted October 18, 2012 السلام عليكم و رحمة الله و بركاته أنا دايما أسوي بوابات في السيرفر و هذا الكود الي أستخدمه object = createObject ( 980, 2482.7, -1687.8, 15.3 ) marker = createMarker ( 2482.7, -1687.8, 10.3, 'cylinder', 15.5, 0, 0, 0, 0 ) bindKey( 'tab', 'down', function () if isElementWithinMarker( getLocalPlayer(), marker ) then if i then moveObject ( object, 1500, 2482.7, -1687.8, 15.3 ) else moveObject ( object, 1500, 2482.7, -1687.8, 18.3 ) end end i = not i end) المهم هذي البوابه تفتح للكل أنا ابيها تفتح لتيم معين مثلا بس تيم Police Link to comment
Tete omar Posted October 18, 2012 Share Posted October 18, 2012 جرب object = createObject ( 980, 2482.7, -1687.8, 15.3 ) marker = createMarker ( 2482.7, -1687.8, 10.3, 'cylinder', 15.5, 0, 0, 0, 0 ) bindKey( 'tab', 'down', function() local team=getPlayerTeam(localPlayer) if(getTeamName(team)=="police")then if(isElementWithinMarker(localPlayer,marker))then if i then moveObject ( object, 1500, 2482.7, -1687.8, 15.3 ) else moveObject ( object, 1500, 2482.7, -1687.8, 18.3 ) end end end i = not i end) نصيحة : افضل شي بالبرمجة انك تخلي كودك اقصر اذا استطعت Link to comment
abu5lf Posted October 18, 2012 Share Posted October 18, 2012 اعتقد الكود كلنت لك بس مايظهر للكل Link to comment
MrCor Posted October 18, 2012 Author Share Posted October 18, 2012 اعتقد الكود كلنت لك بس مايظهر للكل خوك مو لازم ملف سيرفر في كل المودات Link to comment
TAPL Posted October 18, 2012 Share Posted October 18, 2012 اعتقد الكود كلنت لك بس مايظهر للكل خوك مو لازم ملف سيرفر في كل المودات لما تفتح الباب بتشوفه يفتح بس اللاعبين الي بالسيرفر ما بيشوفونه يفتح عشان كذا لازم تسويه سيرفر Link to comment
abu5lf Posted October 18, 2012 Share Posted October 18, 2012 ^ هذا الي اقصده وانت بكيفك Link to comment
MrCor Posted October 18, 2012 Author Share Posted October 18, 2012 اعتقد الكود كلنت لك بس مايظهر للكل خوك مو لازم ملف سيرفر في كل المودات لما تفتح الباب بتشوفه يفتح بس اللاعبين الي بالسيرفر ما بيشوفونه يفتح عشان كذا لازم تسويه سيرفر شكرا تاابل زين يعني مو لازم أعدل شي بالكود بس أخليه سيرفر من ملف Meta لو لا ؟؟ Link to comment
MrCor Posted October 18, 2012 Author Share Posted October 18, 2012 شباب أنا سويته سيرفر من ملف الميتا ولازبط صارت البوابه ما تفتح Link to comment
abu5lf Posted October 18, 2012 Share Posted October 18, 2012 لا ، مايصلح تنقل الكود من كلنت للسيرفر لازم تعدل Link to comment
MrCor Posted October 18, 2012 Author Share Posted October 18, 2012 لا ، مايصلح تنقل الكود من كلنت للسيرفر لازم تعدل زين خوك هذا الكود سوه سيرفر object = createObject ( 2930, 1520.3000488281, -1629.5999755859, 15.199999809265 ) marker = createMarker ( 1520.0999755859, -1630.5999755859, 13.5, 'cylinder', 2, 0, 0, 0, 0 ) bindKey("tab", "down", function () if isElementWithinMarker ( localPlayer, marker ) then if ( getPlayerTeam ( localPlayer ) == getTeamFromName ( "Police" ) ) then if i then moveObject ( object, 1500, 1520.3000488281, -1631.0999755859, 15.199999809265 ) else moveObject ( object, 1500, 1520.3000488281, -1629.5999755859, 15.199999809265 ) end end i = not i end end) هذا الكود من تعديل الأخ عناد وشغال أحد يسويه سيرفر Link to comment
3NAD Posted October 18, 2012 Share Posted October 18, 2012 addEventHandler ( "onResourceStart", resourceRoot, function ( ) for _, thePlayer in ipairs ( getElementsByType ( "player" ) ) do bindKey ( thePlayer, "tab", "down", Move ) end end ) object = createObject ( 2930, 1520.3000488281, -1629.5999755859, 15.199999809265 ) marker = createMarker ( 1520.0999755859, -1630.5999755859, 13.5, 'cylinder', 2, 0, 0, 0, 0 ) function Move ( thePlayer ) if isElementWithinMarker ( thePlayer, marker ) then if ( getPlayerTeam ( thePlayer ) == getTeamFromName ( "Rebel" ) ) then if i then moveObject ( object, 1500, 1520.3000488281, -1631.0999755859, 15.199999809265 ) else moveObject ( object, 1500, 1520.3000488281, -1629.5999755859, 15.199999809265 ) end end i = not i end end 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