BeCooL Posted November 13, 2012 Author Share Posted November 13, 2012 وش اسم البرنامج الي تستخدمه وش برنامجه ؟ Link to comment
Tete omar Posted November 13, 2012 Share Posted November 13, 2012 حقlua وش ؟؟؟؟؟؟؟؟؟؟؟؟؟؟ Link to comment
3NAD Posted November 13, 2012 Share Posted November 13, 2012 function hill_Enter ( thePlayer ) if thePlayer == localPlayer then local theSound = playSound ( "mohamad.mp3" ) setSoundVolume ( theSound, 1 ) outputChatBox ( "you are left bank zone!!", 255, 255, 0, true ) end end addEventHandler ( "onClientColShapeLeave", col, hill_Enter ) ليش تسوي الصوت قلوبال وهو ما يستاهل ؟ ^ الافضل على شأن احطه في setSoundVolume ولو بسويه بالطريقة المختصرة مآراح يفهمه اللي طلبه =/ setSoundVolume ( playSound ( "mohamad.mp3" ), 1 ) Link to comment
./BlackBird# Posted November 13, 2012 Share Posted November 13, 2012 حقlua وش ؟؟؟؟؟؟؟؟؟؟؟؟؟؟ البرنامج الي يستعمله في لغه lua لان المفكره خويي كان يشتغل عليها و يخرب المود دايم Link to comment
BeCooL Posted November 13, 2012 Author Share Posted November 13, 2012 حقlua برنامج luaedit Link to comment
Tete omar Posted November 13, 2012 Share Posted November 13, 2012 function hill_Enter ( thePlayer ) if thePlayer == localPlayer then local theSound = playSound ( "mohamad.mp3" ) setSoundVolume ( theSound, 1 ) outputChatBox ( "you are left bank zone!!", 255, 255, 0, true ) end end addEventHandler ( "onClientColShapeLeave", col, hill_Enter ) ليش تسوي الصوت قلوبال وهو ما يستاهل ؟ ^ الافضل على شأن احطه في setSoundVolume ولو بسويه بالطريقة المختصرة مآراح يفهمه اللي طلبه =/ setSoundVolume ( playSound ( "mohamad.mp3" ), 1 ) انا قصدي local Link to comment
iPrestege Posted November 13, 2012 Share Posted November 13, 2012 حقlua وش ؟؟؟؟؟؟؟؟؟؟؟؟؟؟ يقصد برنامجة حق النص مثل المفكرة..الخ ~ Link to comment
BeCooL Posted November 13, 2012 Author Share Posted November 13, 2012 حقlua وش ؟؟؟؟؟؟؟؟؟؟؟؟؟؟ يقصد برنامجة حق النص مثل المفكرة..الخ ~ وش صار معك يا فهد جربته ؟ Link to comment
iPrestege Posted November 13, 2012 Share Posted November 13, 2012 وش صار معك يا فهد جربته ؟ جربتة طلع لي علآمة الدولآر بالخريطة رحححت للبنك مآيدخل ولآ فية صوت ذذ Link to comment
./BlackBird# Posted November 13, 2012 Share Posted November 13, 2012 فهد سوي تيم اسمه Police او Criminal و روح لما الماركر و جرب Link to comment
BeCooL Posted November 13, 2012 Author Share Posted November 13, 2012 ي شباب ابغى اذا الاعب دخل الماركر يبدأ الست تايمر كيف؟ Link to comment
hassan.k.s.a Posted November 13, 2012 Share Posted November 13, 2012 ي شباب ابغى اذا الاعب دخل الماركر يبدأ الست تايمر كيف؟ وينه السيت تيمر !؟ Link to comment
BeCooL Posted November 13, 2012 Author Share Posted November 13, 2012 ي شباب ابغى اذا الاعب دخل الماركر يبدأ الست تايمر كيف؟ وينه السيت تيمر !؟ هذا setTimer Link to comment
hassan.k.s.a Posted November 13, 2012 Share Posted November 13, 2012 تبيه يبدأ في وشو ؟ ماوضحت طلبك Link to comment
BeCooL Posted November 13, 2012 Author Share Posted November 13, 2012 تبيه يبدأ في وشو ؟ ماوضحت طلبك مثلا: اذا الاعب لمس الماركر بعد 5 دقائق ينقل الى مكان ثاني انشالله فهمت علي Link to comment
./BlackBird# Posted November 13, 2012 Share Posted November 13, 2012 marker = createMarker( ... ) addEventHandler("onClientMarkerHit",marker, function() setTimer(setElementPosition,3000000,1,source,x,y,z) end) صعب؟ Link to comment
BeCooL Posted November 13, 2012 Author Share Posted November 13, 2012 marker = createMarker( ... ) addEventHandler("onClientMarkerHit",marker, function() setTimer(setElementPosition,3000000,1,source,x,y,z) end) صعب؟ انا سويت مثله بس نسيت الافنت Link to comment
./BlackBird# Posted November 13, 2012 Share Posted November 13, 2012 خطا علي كتبت source و المفروض localPlayer اسف Link to comment
abu5lf Posted November 13, 2012 Share Posted November 13, 2012 تبيه يبدأ في وشو ؟ ماوضحت طلبك مثلا: اذا الاعب لمس الماركر بعد 5 دقائق ينقل الى مكان ثاني انشالله فهمت علي استخدم Timer = { } marker = createMarker ( 0, 0, 0 ) addEventHandler ( 'onMarkerHit', marker, function ( hitElement ) if ( getElementType ( hitElement ) == 'player' ) then Timer[hitElement] = setTimer ( setElementPosition, 300000, 1, hitElement, 10, 0, 3 ) end end ) addEventHandler ( 'onMarkerLeave', marker, function ( leaveElement ) if ( getElementType ( leaveElement ) == 'player' ) then if isTimer ( Timer[leaveElement] ) then killTimer ( Timer[leaveElement] ) end end end ) Link to comment
BeCooL Posted November 13, 2012 Author Share Posted November 13, 2012 خطا علي كتبت source و المفروض localPlayer اسف كذا marker = createMarker( ... ) addEventHandler("onClientMarkerHit",marker, function() setTimer(setElementPosition,3000000,1,localPlayer,x,y,z) end) ؟ هذا سيرفر ولاكلنت ؟ Link to comment
./BlackBird# Posted November 13, 2012 Share Posted November 13, 2012 "onClientMarkerHit" وش تشوف هنا Link to comment
abu5lf Posted November 13, 2012 Share Posted November 13, 2012 شكلي سويت الكود من غير فائدة : ) Link to comment
BeCooL Posted November 13, 2012 Author Share Posted November 13, 2012 (edited) شكلي سويت الكود من غير فائدة : ) انا اقرأ الاكواد كلها يعني مافي شي في موضوعي ما له فائده وانا استفدت من كودك ------------------------------- ي شباب وش الفرق بين onClientMarkerHit و onMarkerHit ؟؟ Edited November 15, 2012 by Guest Link to comment
./BlackBird# Posted November 13, 2012 Share Posted November 13, 2012 onClientMarkerHit للكلنت onMarkerHit سيرفر 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