MA[S]RIY Posted June 10, 2018 Share Posted June 10, 2018 السلام عليكم عندي استفسارين .. اول شي ابي اول م اللعب يلمس مركر انا محدد اكثر من احداثي 5 احداثيات مثلا ابي لما الاعب يلمس المركر يحط الاعب في الاحداثي الاول ويجي لاعب غيرو يلمس المركر يحط الاعب هذا في الاحداثي الثاني وهكذا بدون يحط لاعبين في نفس الاحداثي كيف ^^ ؟ .. ثاني شئ ابي اول م الاعب يلمس المركر اول شخص يلمس المركر يطلع بالشات الاعب كذا المركز الاول وثاني شخص يلمس المركر يطلع بالشات الاعب كذا المركز الثاني وثالث شخص يلمس المركر يطلع بالشات الاعب كذا المركز الثالث كيف ^^ ؟ وبس Link to comment
Rockyz Posted June 10, 2018 Share Posted June 10, 2018 local coordinates = { {...}, {...}, {...}, {...}, {...} } local count = 1 addEventHandler('onMarkerHit', root, function(hit) count = count +1 if count > #coordinates then count = 1 end setElementPosition(hit, unpack(coordinates[count])) end) للمعلومية هذا مو كود كامل فقط توضيح للفكرة .. 1 Link to comment
MA[S]RIY Posted June 10, 2018 Author Share Posted June 10, 2018 2 hours ago, #,+( _xiRoc[K]; > said: local coordinates = { {...}, {...}, {...}, {...}, {...} } local count = 1 addEventHandler('onMarkerHit', root, function(hit) count = count +1 if count > #coordinates then count = 1 end setElementPosition(hit, unpack(coordinates[count])) end) للمعلومية هذا مو كود كامل فقط توضيح للفكرة .. هذا طلبي الاول اعتقد كيف طلبي الثاني Link to comment
Doffy Posted June 10, 2018 Share Posted June 10, 2018 (edited) 4 minutes ago, MARIY said: هذا طلبي الاول اعتقد كيف طلبي الثاني الطلب الثاني تقدر تسويه بمتغير او داتا او جدول Edited June 10, 2018 by #DesTroeyR Link to comment
MA[S]RIY Posted June 10, 2018 Author Share Posted June 10, 2018 11 minutes ago, #DesTroeyR said: الطلب الثاني تقدر تسويه بمتغير او داتا او جدول اوكيه بسويها بالداتا او متغير مشكورين 1 Link to comment
+Source|> Posted June 10, 2018 Share Posted June 10, 2018 15 minutes ago, MARIY said: هذا طلبي الاول اعتقد كيف طلبي الثاني outputChatBox( count, root, 0, 0, 0, true ) Link to comment
Doffy Posted June 10, 2018 Share Posted June 10, 2018 Just now, +Source|> said: outputChatBox( count, root, 0, 0, 0, true ) No comment Link to comment
+Source|> Posted June 10, 2018 Share Posted June 10, 2018 (edited) 1 minute ago, #DesTroeyR said: No comment Hmmmmm !! Is that wrong ? Edited June 10, 2018 by +Source|> Link to comment
TOUNSI |, السعأدة Posted June 10, 2018 Share Posted June 10, 2018 (edited) تبي آسسويلك الكود كامـل ؟ هات اكواد المـركرات لـ تبيهمم Edited June 10, 2018 by MR.TOUNSI Link to comment
Rockyz Posted June 10, 2018 Share Posted June 10, 2018 (edited) زي الطريقة الي فوق local coordinates = { {...}, {...}, {...}, {...}, {...} } local numbers = { [1] = 'الأول', [2] = 'الثاني', [3] = 'الثالث', [4] = 'الرابع', [5] = 'الخامس', } local count = 1 addEventHandler('onMarkerHit', root, function(hit) count = count +1 if count > #coordinates then count = 1 end setElementPosition(hit, unpack(coordinates[count])) outputChatBox('المركز '..numbers[count], hit) end) Edited June 10, 2018 by #,+( _xiRoc[K]; > Link to comment
MA[S]RIY Posted June 10, 2018 Author Share Posted June 10, 2018 خلاص مشكورين بسوي انا الكود انا كنت ابي اعرف وش الفكرة فقط Link to comment
A7M8D Posted June 11, 2018 Share Posted June 11, 2018 local Places = { [ 1 ] = { x = 0 , y = 0 , z = 0 } , [ 2 ] = { x = 0 , y = 0 , z = 0 } , } Var = 0 addEventHandler("onMarkerHit",root, function(player) if source == Marker then if getElementType(player) == "player" and not isPedInVehicle(player) then Var = Var + 1 setElementPosition(player,Places[Var].x,Places[Var].y,Places[Var].z ) end end end ) الكود للاخ عبد الكريم Link to comment
N3xT Posted June 11, 2018 Share Posted June 11, 2018 5 hours ago, #MR.NaiF said: local Places = { [ 1 ] = { x = 0 , y = 0 , z = 0 } , [ 2 ] = { x = 0 , y = 0 , z = 0 } , } Var = 0 addEventHandler("onMarkerHit",root, function(player) if source == Marker then if getElementType(player) == "player" and not isPedInVehicle(player) then Var = Var + 1 setElementPosition(player,Places[Var].x,Places[Var].y,Places[Var].z ) end end end ) الكود للاخ عبد الكريم اذا يا صاحب الموضوع بتستعمل الكود ذا لا تنسى تسوي تحقق ان الرقم أصغر من اللي فالجدول عشان ما يتعدا الجدول ويصير بق 2 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