mahmod3 Posted October 17, 2016 Share Posted October 17, 2016 السلام عليكم ورحمة الله انا عملت لما شخص يدخل الماركر نعمل صورة تفتح ونعمل صوت ونعمل الكاميرى تبعد شوي وترجع يعني ب الوقت بس المشكلة ان الكاميرا مب تبعد لما ادخل الماركر كل شي يصير الا ان الكاميرى تبعد يعني وترجع في وقت محدود محاولتي function sound() REC = guiCreateStaticImage( 0, 0, 1920, 1200, "LK-REC.png", false ) setTimer ( playSound, 1000, 1, "13.mp3" ) setTimer ( destroyElement, 3100, 1, REC ) setTimer ( setPedAnimation, 0800, 1, localPlayer,"RIOT","RIOT_ANGRY" ) setTimer ( setPedAnimation, 4000, 1, localPlayer, false ) setTimer ( setCameraMatrix, 4000, 1, localPlayer,-296.84891,1519.38721,75.35938,-302.39999389648,1510.3000488281,74.400001525879 ) end addEvent("sound", true) addEventHandler( "sound", getRootElement(), sound ) رجاء حل ومشكورين Link to comment
!#NssoR_) Posted October 17, 2016 Share Posted October 17, 2016 كود الكاميرا بجهة الكلنت مافيه ارقمنت للاعب , فالمفروض تحذفه . Link to comment
AHMED MOSTAFA Posted October 17, 2016 Share Posted October 17, 2016 38 minutes ago, mahmod3 said: السلام عليكم ورحمة الله انا عملت لما شخص يدخل الماركر نعمل صورة تفتح ونعمل صوت ونعمل الكاميرى تبعد شوي وترجع يعني ب الوقت بس المشكلة ان الكاميرا مب تبعد لما ادخل الماركر كل شي يصير الا ان الكاميرى تبعد يعني وترجع في وقت محدود محاولتي function sound()REC = guiCreateStaticImage( 0, 0, 1920, 1200, "LK-REC.png", false )setTimer ( playSound, 1000, 1, "13.mp3" )setTimer ( destroyElement, 3100, 1, REC )setTimer ( setPedAnimation, 0800, 1, localPlayer,"RIOT","RIOT_ANGRY" )setTimer ( setPedAnimation, 4000, 1, localPlayer, false )setTimer ( setCameraMatrix, 4000, 1, localPlayer,-296.84891,1519.38721,75.35938,-302.39999389648,1510.3000488281,74.400001525879 )endaddEvent("sound", true)addEventHandler( "sound", getRootElement(), sound ) رجاء حل ومشكورين ابي اساعدك لكن ماني فاهم وش تقصد بالضبط بس هدول كودين بيفيدوك function TimerNum1() -- Your Code -- شي يحصل كل فترة - ثانية end end ForKillTimerNum1 = setTimer ( TimerNum1, 1000, 0 ) ------------------------- setTimer(function() -- Your Code -- شي يحصل بعد ثانية end, 1000,1) Link to comment
mahmod3 Posted October 17, 2016 Author Share Posted October 17, 2016 Just now, Developer Ahmed said: ابي اساعدك لكن ماني فاهم وش تقصد بالضبط بس هدول كودين بيفيدوك function TimerNum1() -- Your Code -- شي يحصل كل فترة - ثانية end end ForKillTimerNum1 = setTimer ( TimerNum1, 1000, 0 ) ------------------------- setTimer(function() -- Your Code -- شي يحصل بعد ثانية end, 1000,1) شوف انا ابي لما شخص يدخل الماركر الكاميرى تبعد عنه يعني setCameraMatrix وتضل بعدل وقت معين وترجع كيف ماكنت للاعب Link to comment
mahmod3 Posted October 17, 2016 Author Share Posted October 17, 2016 4 minutes ago, NssoR said: هل قرات ردي ؟ مشكور قريته الحين ماكنت منتبه كفوووووء Link to comment
AHMED MOSTAFA Posted October 17, 2016 Share Posted October 17, 2016 1 minute ago, mahmod3 said: شوف انا ابي لما شخص يدخل الماركر الكاميرى تبعد عنه يعني setCameraMatrix وتضل بعدل وقت معين وترجع كيف ماكنت للاعب ما افهم كثير بالكاميرا لكن شوف مثال -- سوي هذا التايمر اول ما اللاعب يلمس الماركر وكل ثانية يزيد بعد الكاميرا function TimerNum1() -- يبعد الكاميرا في هذا التايمر end end ForKillTimerNum1 = setTimer ( TimerNum1, 1000, 0 ) -- اما هذا فبعد فترة معينة تسوي ايقاف للتيمر اللي شغال قبله -- وتبداً تايمر جديد ميشان يقرب الصورة setTimer(function() if isTimer (ForKillTimerNum1) then killTimer (ForKillTimerNum1) end function TimerNum2() -- يقرب الكاميرا في هذا التايمر end end ForKillTimerNum2 = setTimer ( TimerNum2, 1000, 0 ) end, 1000,1) -- بعد فترة اخرى يقفل التايمر الثاني حق القرب setTimer(function() if isTimer (ForKillTimerNum2) then killTimer (ForKillTimerNum2) end end, 1000,1) Link to comment
!#NssoR_) Posted October 17, 2016 Share Posted October 17, 2016 1 minute ago, mahmod3 said: مشكور قريته الحين ماكنت منتبه كفوووووء AnyTime..# Link to comment
mahmod3 Posted October 17, 2016 Author Share Posted October 17, 2016 2 minutes ago, Developer Ahmed said: ما افهم كثير بالكاميرا لكن شوف مثال -- سوي هذا التايمر اول ما اللاعب يلمس الماركر وكل ثانية يزيد بعد الكاميراfunction TimerNum1()-- يبعد الكاميرا في هذا التايمر end end ForKillTimerNum1 = setTimer ( TimerNum1, 1000, 0 ) -- اما هذا فبعد فترة معينة تسوي ايقاف للتيمر اللي شغال قبله -- وتبداً تايمر جديد ميشان يقرب الصورة setTimer(function() if isTimer (ForKillTimerNum1) then killTimer (ForKillTimerNum1) end function TimerNum2() -- يقرب الكاميرا في هذا التايمر end end ForKillTimerNum2 = setTimer ( TimerNum2, 1000, 0 ) end, 1000,1) -- بعد فترة اخرى يقفل التايمر الثاني حق القرب setTimer(function() if isTimer (ForKillTimerNum2) then killTimer (ForKillTimerNum2) end end, 1000,1) طريقة اسهل setTimer ( setCameraMatrix, 0800, 1,-296.84891,1519.38721,75.35938,-302.39999389648,1510.3000488281,74.400001525879 ) setTimer ( setCameraTarget, 4000, 1, localPlayer, localPlayer ) Link to comment
AHMED MOSTAFA Posted October 17, 2016 Share Posted October 17, 2016 1 minute ago, mahmod3 said: طريقة اسهل setTimer ( setCameraMatrix, 0800, 1,-296.84891,1519.38721,75.35938,-302.39999389648,1510.3000488281,74.400001525879 ) setTimer ( setCameraTarget, 4000, 1, localPlayer, localPlayer ) طريقتك حلوة لكن انا فهمت قصدك على انه الكاميرا تبعد عنه بمعنى مسافه المهم موفق Link to comment
mahmod3 Posted October 17, 2016 Author Share Posted October 17, 2016 1 hour ago, Developer Ahmed said: طريقتك حلوة لكن انا فهمت قصدك على انه الكاميرا تبعد عنه بمعنى مسافه المهم موفق مشكور جميعنا موفقين بأدن الله 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