S4MuEL Posted June 7, 2013 Share Posted June 7, 2013 آلسلآم عليكمم , يَ عيآل في شي قآهرني دآيم , وصرآحة ما ففهمتهـ .. آللي هي كلمةة ! nil آبي كيفيةة إستخدآمهآ , وبإيشش آستحقهآ ؟ ! وممكن مثآلين عليهآ ؟ ! Link to comment
فاّرس Posted June 7, 2013 Share Posted June 7, 2013 هذي تنفي وجود الشيء , يعني تشيله مره, مثلا , Timer = setTimer( function() -- Any thing end if isTimer(Timer) then Timer = nil end Link to comment
AhmeD~9MoD Posted June 7, 2013 Share Posted June 7, 2013 هذي تنفي وجود الشيء ,يعني تشيله مره, مثلا , Timer = setTimer( function() -- Any thing end if isTimer(Timer) then Timer = nil end يعني مثل destroyElement ? Link to comment
AhmeD~9MoD Posted June 7, 2013 Share Posted June 7, 2013 تقريبآ, يعني تقدر تسوي كذا بعد Timer = setTimer( function() -- Any thing end if isTimer(Timer) then destroyElement ( Timer ) end Link to comment
S4MuEL Posted June 7, 2013 Author Share Posted June 7, 2013 مثآل ذا آلكود وش يسوي ؟ ! يعطي آللآعبين 100 ويقتل آلتآيمر ؟ ! local = getElementsByType("player") for _,s in ipairs ( ) do Timer = setTimer( function() setPlayerMoney(s,100) end,3000,0) end if isTimer(Timer) then Timer = nil end Link to comment
فاّرس Posted June 7, 2013 Share Posted June 7, 2013 اي تقدر, وتقدر تضيف لها Timer = nil مثآل ذا آلكود وش يسوي ؟ !يعطي آللآعبين 100 ويقتل آلتآيمر ؟ ! local = getElementsByType("player") for _,s in ipairs ( ) do Timer = setTimer( function() setPlayerMoney(s,100) end,3000,0) end if isTimer(Timer) then Timer = nil end اي , بس هنا يختلف , يعني مثلا لو اللاعب معه 200 وتعطيه 100 ما راح تصير 300 راح ترجع 100 Link to comment
AhmeD~9MoD Posted June 7, 2013 Share Posted June 7, 2013 مثآل ذا آلكود وش يسوي ؟ !يعطي آللآعبين 100 ويقتل آلتآيمر ؟ ! local = getElementsByType("player") for _,s in ipairs ( ) do Timer = setTimer( function() setPlayerMoney(s,100) end,3000,0) end if isTimer(Timer) then Timer = nil end setPlayerMoney لو كان فلوس اللاعب 1000 راح يصيرون 100 givePlayerMoney لو كان فلوس اللاعب 1000 راح يصيرون 1100 local = getElementsByType("player") for _,s in ipairs ( ) do Timer = setTimer( function() givePlayerMoney ( s, 100 ) end,3000,0) end if isTimer(Timer) then Timer = nil end كذا ~ Link to comment
S4MuEL Posted June 7, 2013 Author Share Posted June 7, 2013 > < يَ رجآل مآ تهمني آلفلوس آلأن , مآني مركز عليهآ , لكن لآههنت , مركز ع nil Link to comment
3NAD Posted June 7, 2013 Share Posted June 7, 2013 مثآل ذا آلكود وش يسوي ؟ !يعطي آللآعبين 100 ويقتل آلتآيمر ؟ ! local = getElementsByType("player") for _,s in ipairs ( ) do Timer = setTimer( function() setPlayerMoney(s,100) end,3000,0) end if isTimer(Timer) then Timer = nil end في nil إستخدامك لـ Timer = nil Timer يعني كأنكـ تلغي تعريف الـ بحيث لو سويت شرط بيكون هالشكل if ( not Timer ) then ---- end Link to comment
AhmeD~9MoD Posted June 7, 2013 Share Posted June 7, 2013 > <يَ رجآل مآ تهمني آلفلوس آلأن , مآني مركز عليهآ , لكن لآههنت , مركز ع nil مجرد توضيح .. Link to comment
S4MuEL Posted June 7, 2013 Author Share Posted June 7, 2013 من بعد آذنكم , ممكن مثآل ثآني ؟ ! Link to comment
3NAD Posted June 7, 2013 Share Posted June 7, 2013 if MTA then -- MTA تحقيق وجود تعريف outputChatBox ( "true" ) else outputChatBox ( "false" ) end لأنه غير معرف اصلاً false رآح يقلك --------------- MTA = "www.MTA.com" if MTA then -- إذا تحقق outputChatBox ( "true" ) -- بيطرح هذا نتيجة للتحقق else -- لم يتحقق outputChatBox ( "false" ) -- يطرح هذا لعدم التحقق end -- انهاء االشرط MTA لأنه وجد قيمة لـ كلمة true رآح يقلك 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