MA[S]RIY Posted October 22, 2017 Share Posted October 22, 2017 السلام عليكم : اولا كيف اخلي لما الاعب يدخل مركر يحطه بمكان وذا الاعب دخل نفس المركر يحطه بمكان اخر وكذا وانا الي احدد هذ الاماكن : ثانيا كيف اخلي اول لاعب يلمس المركر يطلع اسمه بالشات انه المركز الاول وثاني شخص يلمس المركر يطلع اسمه انه المركز الثاني وثالث شخص يلمس المركر يطلع المركز الثالث ؟ Link to comment
Abu-Solo Posted October 22, 2017 Share Posted October 22, 2017 (edited) 10 minutes ago, #Soking said: Value + Table + setElementData outputChatBox spawnPlayer createMarker Edited October 22, 2017 by Abu-Solo Link to comment
^iiEcoo'x_) Posted October 22, 2017 Share Posted October 22, 2017 (edited) local Table = { Position = { [ 1 ] = { x , y , z } , [ 2 ] = { x , y , z } } , ValueWarp = 1 , ValueHit = 1 } setElementPosition ( getPlayerFromName ( 'Abu-solo' ) , Table.Position [ ValueWarp ] [ 1 ] , Table.Position [ ValueWarp ] [ 2 ] , Table.Position [ ValueWarp ] [ 3 ] ) addEventHandler ( 'onMarkerHit' , root , function ( Player ) if ( source == Marker ) then if ( Table.ValueHit == 1 ) then outputChatBox ( ' اللاعب مركز اول '.. getPlayerName ( Player ) ..' ! ' , root ) end end end ) Edited October 22, 2017 by DABL Link to comment
#Soking Posted October 22, 2017 Share Posted October 22, 2017 5 hours ago, DABL said: local Table = { Position = { [ 1 ] = { x , y , z } , [ 2 ] = { x , y , z } } , ValueWarp = 1 , ValueHit = 1 } setElementPosition ( getPlayerFromName ( 'Abu-solo' ) , Table.Position [ ValueWarp ] [ 1 ] , Table.Position [ ValueWarp ] [ 2 ] , Table.Position [ ValueWarp ] [ 3 ] ) addEventHandler ( 'onMarkerHit' , root , function ( Player ) if ( source == Marker ) then if ( Table.ValueHit == 1 ) then outputChatBox ( ' اللاعب مركز اول '.. getPlayerName ( Player ) ..' ! ' , root ) end end end ) في تحققات ناقصه في حدث لمس المركر + بالشكل دا اي شخص بيطلع المركز الاول و يكفي متغير واحد يستخدم في تغير الاحدثيات و outputChatBox( getPlayerName( Player ) .. Value .. ' المركز ال ' ) 11 hours ago, MARIY said: السلام عليكم : اولا كيف اخلي لما الاعب يدخل مركر يحطه بمكان وذا الاعب دخل نفس المركر يحطه بمكان اخر وكذا وانا الي احدد هذ الاماكن : ثانيا كيف اخلي اول لاعب يلمس المركر يطلع اسمه بالشات انه المركز الاول وثاني شخص يلمس المركر يطلع اسمه انه المركز الثاني وثالث شخص يلمس المركر يطلع المركز الثالث ؟ شوف اخر ثلاث اسطر من الطلب Link to comment
Abu-Solo Posted October 22, 2017 Share Posted October 22, 2017 5 hours ago, DABL said: local Table = { Position = { [ 1 ] = { x , y , z } , [ 2 ] = { x , y , z } } , ValueWarp = 1 , ValueHit = 1 } setElementPosition ( getPlayerFromName ( 'Abu-solo' ) , Table.Position [ ValueWarp ] [ 1 ] , Table.Position [ ValueWarp ] [ 2 ] , Table.Position [ ValueWarp ] [ 3 ] ) addEventHandler ( 'onMarkerHit' , root , function ( Player ) if ( source == Marker ) then if ( Table.ValueHit == 1 ) then outputChatBox ( ' اللاعب مركز اول '.. getPlayerName ( Player ) ..' ! ' , root ) end end end ) كأني اشوف اسمي مكتوب فـ جلب اسم اللاعب؟ لا يكون اسمي له وظيفه وانا ما ادري 2 Link to comment
^iiEcoo'x_) Posted October 22, 2017 Share Posted October 22, 2017 2 hours ago, #Soking said: في تحققات ناقصه في حدث لمس المركر + بالشكل دا اي شخص بيطلع المركز الاول و يكفي متغير واحد يستخدم في تغير الاحدثيات و outputChatBox( getPlayerName( Player ) .. Value .. ' المركز ال ' ) شوف اخر ثلاث اسطر من الطلب يخي عارف قسم بالله ، بس ما ودي عشان اخليه يتعلم ؛ لاني سويت له ثلثين الكود . 1 hour ago, Abu-Solo said: كأني اشوف اسمي مكتوب فـ جلب اسم اللاعب؟ لا يكون اسمي له وظيفه وانا ما ادري بفكر اسويله وظيفة قريبا بإذن الله ! Link to comment
Abu-Solo Posted October 22, 2017 Share Posted October 22, 2017 Just now, DABL said: يخي عارف قسم بالله ، بس ما ودي عشان اخليه يتعلم ؛ لاني سويت له ثلثين الكود . بفكر اسويله وظيفة قريبا بإذن الله ! عساها وظيفه خير Link to comment
MA[S]RIY Posted October 22, 2017 Author Share Posted October 22, 2017 صح ذا طلبي الاول local Table = { Position = { [ 1 ] = { x , y , z } , [ 2 ] = { x , y , z } } , ValueWarp = 1 , ValueHit = 1 } setElementPosition ( getPlayerFromName ( 'Abu-solo' ) , Table.Position [ ValueWarp ] [ 1 ] , Table.Position [ ValueWarp ] [ 2 ] , Table.Position [ ValueWarp ] [ 3 ] ) وذا الطلب الثاني addEventHandler ( 'onMarkerHit' , root , function ( Player ) if ( source == Marker ) then if ( Table.ValueHit == 1 ) then outputChatBox ( ' اللاعب مركز اول '.. getPlayerName ( Player ) ..' ! ' , root ) end end end ) Link to comment
^iiEcoo'x_) Posted October 23, 2017 Share Posted October 23, 2017 14 hours ago, MARIY said: تماام مشكورين العفو . Link to comment
Abu-Solo Posted October 23, 2017 Share Posted October 23, 2017 15 hours ago, MARIY said: صح ذا طلبي الاول local Table = { Position = { [ 1 ] = { x , y , z } , [ 2 ] = { x , y , z } } , ValueWarp = 1 , ValueHit = 1 } setElementPosition ( getPlayerFromName ( 'Abu-solo' ) , Table.Position [ ValueWarp ] [ 1 ] , Table.Position [ ValueWarp ] [ 2 ] , Table.Position [ ValueWarp ] [ 3 ] ) وذا الطلب الثاني addEventHandler ( 'onMarkerHit' , root , function ( Player ) if ( source == Marker ) then if ( Table.ValueHit == 1 ) then outputChatBox ( ' اللاعب مركز اول '.. getPlayerName ( Player ) ..' ! ' , root ) end end end ) اشتغل واسمي موجود؟ 1 Link to comment
MA[S]RIY Posted October 23, 2017 Author Share Posted October 23, 2017 8 hours ago, Abu-Solo said: اشتغل واسمي موجود؟ ههههههههه اسمك يشغل اي مود حتي لو كان الاكواد خربانه اسمك يصلح الاكواد 1 Link to comment
Abu-Solo Posted October 24, 2017 Share Posted October 24, 2017 15 hours ago, MARIY said: ههههههههه اسمك يشغل اي مود حتي لو كان الاكواد خربانه اسمك يصلح الاكواد يااااجعلني فداك, ^ للمعلوميه قصدك العكس, يخرب ام المودات اسمي فيرس لو تحطه فـ output يطلعلك كلام وصخ Link to comment
MA[S]RIY Posted October 24, 2017 Author Share Posted October 24, 2017 11 hours ago, Abu-Solo said: يااااجعلني فداك, ^ للمعلوميه قصدك العكس, يخرب ام المودات اسمي فيرس لو تحطه فـ output يطلعلك كلام وصخ هههههههههههخ تصدق حطيه ب output لقيت المود يسبني بالشات اسمك شقي 1 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