Mando Posted August 30, 2013 Share Posted August 30, 2013 (edited) السلام عليكم ورحمه الله و بركاته انا اليوم ابى كود اخفاء النفاذه بدون زر و احطها وين بس اسف لانى طار من مخى الفنكشن Edited August 30, 2013 by Guest Link to comment
Stranger Posted August 30, 2013 Share Posted August 30, 2013 guiSetVisible + تحطها تحت كود النافذه Link to comment
Mando Posted August 30, 2013 Author Share Posted August 30, 2013 شكرا لكم ممكن طلب تانى ابى فكشنات اسوى ماركر و لين ادخل فيها تظهر و لين اموت او اطلع منها تختفى Link to comment
S4MuEL Posted August 30, 2013 Share Posted August 30, 2013 createMarker "onMarkerHit" guiSetVisible أو عند آلموت .. "onPlayerWasted" Link to comment
jafar Posted August 30, 2013 Share Posted August 30, 2013 createMarker "onMarkerHit" guiSetVisible أو عند آلموت .. "onPlayerWasted" اعتقد موجود ايفنت للكلينت onClientPlayerWasted + ايفنت الماركر نفس الشيء استخدم onClientMarkerHit Link to comment
Mando Posted August 30, 2013 Author Share Posted August 30, 2013 GUIEditor.window[1] = guiCreateWindow(204, 143, 899, 501, "تجربه", false) guiSetVisible (GUIEditor.window[1]) الكود مظبوط كدا ؟ Link to comment
S4MuEL Posted August 30, 2013 Share Posted August 30, 2013 onClientPlayerWasted تعآل آضربني .. نسيت آحط كلمة كلنت .. وبعدين مدآهـ يسوي ترآيقر كلنت .. window = guiCreateWindow(204, 143, 899, 501, "تجربه", false) local MyMarker = createMarker ( x , y , z , " type " , size , r , g , b , a ) addEventHandler ( "onClientMarkerHit" , MyMarker , function ( hitPlayer ) if hitPlayer == localPlayer then guiSetVisible ( window , true ) end end , false ) addEventHandler ( "onClientMarkerLeave" , MyMarker , function ( ) guiSetVisible ( window , false ) end , false ) addEventHandler ( "onClientPlayerWasted" , root , function () guiSetVisible ( window , false ) end ) أو Link to comment
Mando Posted August 30, 2013 Author Share Posted August 30, 2013 (edited) شكرا لك تعبت معاى بس انا ابى اخفى النافذه اول ما افتح المود و ياريت تقولى الكود هاد كلنت ولا سيرفر ضض1 edit : تم الافاده بس فى طلب اخير الماوس مب ظاهر باللوحه ضض1 Edited August 30, 2013 by Guest Link to comment
PaiN^ Posted August 30, 2013 Share Posted August 30, 2013 لإظهار/إخفاء الماوس showCursor إستخدم الوظيفة Link to comment
jafar Posted August 30, 2013 Share Posted August 30, 2013 onClientPlayerWasted تعآل آضربني .. نسيت آحط كلمة كلنت .. وبعدين مدآهـ يسوي ترآيقر كلنت .. window = guiCreateWindow(204, 143, 899, 501, "تجربه", false) local MyMarker = createMarker ( x , y , z , " type " , size , r , g , b , a ) addEventHandler ( "onClientMarkerHit" , MyMarker , function ( hitPlayer ) if hitPlayer == localPlayer then guiSetVisible ( window , true ) end end , false ) addEventHandler ( "onClientMarkerLeave" , MyMarker , function ( ) guiSetVisible ( window , false ) end , false ) addEventHandler ( "onClientPlayerWasted" , root , function () guiSetVisible ( window , false ) end ) أو لا بس حبيت اوضح , واذا الحدث موجود ليه تسوي ترايقر وعفسة + تعديل على كودك window = guiCreateWindow(204, 143, 899, 501, "تجربه", false) local MyMarker = createMarker ( x , y , z , " type " , size , r , g , b , a ) addEventHandler ( "onClientMarkerHit" , MyMarker , function ( hitPlayer ) if hitPlayer == localPlayer then guiSetVisible ( window , true ) end end , false ) addEventHandler ( "onClientMarkerLeave" , MyMarker , function ( leavePlayer ) if leavePlayer == localPlayer then guiSetVisible ( window , false ) end end , false ) addEventHandler ( "onClientPlayerWasted" , root , function () if source == localPlayer then guiSetVisible ( window , false ) end end ) Link to comment
S4MuEL Posted August 30, 2013 Share Posted August 30, 2013 @Jafar يسوي ترآيقر عشآن guiSetVisible ذذ بس آلأفضل يستخدم حدث آلكلنت ! + آلسورس نسيت آعرفه لول ذذ وآلبآرآمترس Link to comment
Mando Posted August 30, 2013 Author Share Posted August 30, 2013 الحين بعد انتهاء الكود local MyMarker = createMarker ( -1650.0076,1210.2770,6.25,"cylinder",1.5,0,0,255,100) addEventHandler ( "onClientMarkerHit" , MyMarker , function ( hitPlayer ) if hitPlayer == localPlayer then guiSetVisible ( wnd , true ) showCursor ( true ) end end , false ) addEventHandler ( "onClientMarkerLeave" , MyMarker , function ( ) guiSetVisible ( wnd , false ) showCursor ( false ) end , false ) addEventHandler ( "onClientPlayerWasted" , root , function () guiSetVisible ( wnd , false ) showCursor ( false ) end ) مظوبط ؟ Link to comment
Mando Posted August 30, 2013 Author Share Posted August 30, 2013 تم الافاده شكرا ل اخوانى جارى رفع المود على جراند العرب + الكومنتى معرض السيارات v1 + هاد اول مود ابرمجه و شكرا لكم كلكم http://www.gta-arabs.com/gt/showthread.php?t=65283 Link to comment
jafar Posted August 30, 2013 Share Posted August 30, 2013 الحين بعد انتهاء الكود local MyMarker = createMarker ( -1650.0076,1210.2770,6.25,"cylinder",1.5,0,0,255,100) addEventHandler ( "onClientMarkerHit" , MyMarker , function ( hitPlayer ) if hitPlayer == localPlayer then guiSetVisible ( wnd , true ) showCursor ( true ) end end , false ) addEventHandler ( "onClientMarkerLeave" , MyMarker , function ( ) guiSetVisible ( wnd , false ) showCursor ( false ) end , false ) addEventHandler ( "onClientPlayerWasted" , root , function () guiSetVisible ( wnd , false ) showCursor ( false ) 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