☠ RaZeR ☠ Posted August 10, 2015 Share Posted August 10, 2015 (edited) السلام عليكم !! ليه مااشتغل function fox( ) local money = getPlayerMoney(source) if ( money > 1000000 ) then outputChatBox( "thanks!!", source, 255, 255, 0 ) triggerClientEvent ( source, "dd" , source ) else outputChatBox( "sorry", source, 255, 255, 0 ) end end setTimer ( fox, 3000, 0 ) صورة في الديبوق سطر 3 Edited August 10, 2015 by Guest Link to comment
MoDeR2014 Posted August 10, 2015 Share Posted August 10, 2015 source مو معرف - تبي تسوي تحقق لكل اللاعبين ؟ Link to comment
MoDeR2014 Posted August 10, 2015 Share Posted August 10, 2015 setTimer( function() for index, value in ipairs( getElementsByType("player") ) do if getPlayerMoney( value ) >= 1000000 ) then outputChatBox( "thanks!!", value, 255, 255, 0 ); triggerClientEvent ( value, "dd" , value ); else outputChatBox( "sorry", value, 255, 255, 0 ); end end end, 3000, 0 ); Link to comment
☠ RaZeR ☠ Posted August 10, 2015 Author Share Posted August 10, 2015 مشكور لاكن ابيه اذا تحقق الشرط يوقف التايمر اعتقد بتسخدم killtimer واذا ماتحقق يكمل التايمر الى ما لانهايه Link to comment
☠ RaZeR ☠ Posted August 10, 2015 Author Share Posted August 10, 2015 سويته لاكن لما اسوي كيل تايمر ولما اجمع الفلوس المطلوبه مايسوي تحقق اعتقد بتستخدم بعد مخرج الشات outputChatBox( "sorry", value, 255, 255, 0 ) resetTimer(tim) tim = setTimer( function() for index, value in ipairs( getElementsByType("player") ) do if getPlayerMoney( value ) >= 1000000 ) then outputChatBox( "thanks!!", value, 255, 255, 0 ); triggerClientEvent ( value, "dd" , value ); killTimer ( tim ) else outputChatBox( "sorry", value, 255, 255, 0 ); end end end, 3000, 0 ); يعني الكود بيصير كذا tim = setTimer( function() for index, value in ipairs( getElementsByType("player") ) do if getPlayerMoney( value ) >= 1000000 ) then outputChatBox( "thanks!!", value, 255, 255, 0 ); triggerClientEvent ( value, "dd" , value ); killTimer ( tim ) else outputChatBox( "sorry", value, 255, 255, 0 ); resetTimer(tim) end end end, 3000, 0 ); أسف إذا جاوبت لنفسي Link to comment
</Mr.Tn6eL> Posted August 10, 2015 Share Posted August 10, 2015 حاب أقلك متى تستخدم السورس عشان ماتطيح بالخطأ مرة ثانية السورس خاص بالافنت يعني بالعربي مصدر الحدث مثلا الاعب داخل من هو مصدر الحدث المصدر هو الاعب اللي دخل وكمان اذ ضغط زر المصدر هو الزر اللي انضغط ومثال اذا دخل الماركر المصدر هو الماركر اللي دخله الالمنت فكل افنت له سورس خاص فيه وفيه حاجة بنبهك عليها يمديك تعرف السورس يعني source = getRandomPlayer( ) كذا كأن سوينا متغير عادي يعني السورس خاص بالحدث فقط برب بنام 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