3ssol Posted May 19, 2013 Share Posted May 19, 2013 السلام عليكم شباب انا شفت سيرفر اجنبي اذا طلقت علي واحد بل مسدس ديقل يتجمد الاعب لـ مده معينه وينفك كيف؟ او وش استخدم ؟ Link to comment
S4MuEL Posted May 19, 2013 Share Posted May 19, 2013 setTimer setElementFrozen == true or false Deagle = source 24 Link to comment
AhmeD~9MoD Posted May 19, 2013 Share Posted May 19, 2013 (edited) setTimer setElementFrozen 'onClientPlayerWeaponFire' طبعاً إذا تبي تخلي اللاعب يتجمد تخليه كذا setElementFrozen(source , true) فك التجميد : setElementFrozen(source , false) freezeStatus: A boolean denoting whether we want to freeze (true) or unfreeze (false) it. Edited May 19, 2013 by Guest Link to comment
MSHOOSH Posted May 19, 2013 Share Posted May 19, 2013 setTimer setElementFrozen == true or false Deagle = source 24 + "onClientPlayerDamage" Link to comment
AhmeD~9MoD Posted May 19, 2013 Share Posted May 19, 2013 setTimer setElementFrozen == true or false Deagle = source 24 + "onClientPlayerDamage" هو ماحدد , اطلاق النار بحيث إصابة اللاعب , او فقط اطلاق النار Link to comment
AboShanab Posted May 19, 2013 Share Posted May 19, 2013 Client Side ! function AboShanab ( attacker, weapon, bodypart ) if ( weapon == 31 ) and ( attacker == localPlayer ) then setElementFrozen(localPlayer , true) setTimer( function() setElementFrozen(localPlayer , false) end,5000,1) end end addEventHandler ( "onClientPlayerDamage", getLocalPlayer(), AboShanab ) لم يتم التجربةة !! Link to comment
AhmeD~9MoD Posted May 19, 2013 Share Posted May 19, 2013 شوف المثال الأول يفيدك https://wiki.multitheftauto.com/wiki/On ... WeaponFire المثال الاول إذا طلقت بسلاح وأصبت لاعب ينبهك , Link to comment
AhmeD~9MoD Posted May 19, 2013 Share Posted May 19, 2013 ي عسسول انت تبي لما اللاعب يطلق رصاص او لما يصيب لاعب ... ؟ Link to comment
K1NG Posted May 19, 2013 Share Posted May 19, 2013 Client Side ! function AboShanab ( attacker, weapon, bodypart ) if ( weapon == 31 ) and ( attacker == localPlayer ) then setElementFrozen(localPlayer , true) setTimer( function() setElementFrozen(localPlayer , false) end,5000,1) end end addEventHandler ( "onClientPlayerDamage", getLocalPlayer(), AboShanab ) لم يتم التجربةة !! أول شي يَ حلو أيدي الديقل مهو 31 ؟ ثاني شي إفرض أن اللاعب هو إلي ضرر نفسه مثلاً من خلال قنبلة أو شي ؟ يصير كذا -_-" .. -- Client Side # addEventHandler ( "onClientPlayerDamage", localPlayer, function ( attacker, weapon ) if ( attacker ) and ( attacker ~= source ) and ( attacker == localPlayer ) and ( weapon == 24 ) then setElementFrozen ( source, true ) setTimer ( setElementFrozen, 5000, 1, source, false ) end end ) Link to comment
3ssol Posted May 19, 2013 Author Share Posted May 19, 2013 ابي لما انا اطلق علي الاعب يتجمد الاعب وينفك بعد 9 ثواني Link to comment
AhmeD~9MoD Posted May 19, 2013 Share Posted May 19, 2013 function onClientPlayerWeaponFireFunc(weapon, ammo, ammoInClip, hitX, hitY, hitZ, hitElement ) if weapon == 24 and getElementType(hitElement)=="player" then setElementFrozen(localPlayer , true) setTimer( function() setElementFrozen(localPlayer , false) end,5000,1) end end addEventHandler ( "onClientPlayerWeaponFire", getLocalPlayer(), onClientPlayerWeaponFireFunc ) مو متأكد انه صح , بس جرب Link to comment
K1NG Posted May 19, 2013 Share Posted May 19, 2013 (edited) كينق ماضبط أنا ما جربته .. بس المفروض يشتغل ؟ + لو تبيه بعد 9 ثواني بدل سطر 6 بذا السطر setTimer ( setElementFrozen, 9000, 1, source, false ) Edit: function onClientPlayerWeaponFireFunc(weapon, ammo, ammoInClip, hitX, hitY, hitZ, hitElement ) if weapon == 24 and getElementType(hitElement)=="player" then setElementFrozen(localPlayer , true) setTimer( function() setElementFrozen(localPlayer , false) end,5000,1) end end addEventHandler ( "onClientPlayerWeaponFire", getLocalPlayer(), onClientPlayerWeaponFireFunc ) مو متأكد انه صح , بس جرب يَ حلو أنت كذا تجمد نفسكـ لما تطلق على أحد بالديقل .. ما تجمد إلي طلقت عليه .. Edited May 19, 2013 by Guest Link to comment
3ssol Posted May 19, 2013 Author Share Posted May 19, 2013 function onClientPlayerWeaponFireFunc(weapon, ammo, ammoInClip, hitX, hitY, hitZ, hitElement ) if weapon == 24 and getElementType(hitElement)=="player" then setElementFrozen(localPlayer , true) setTimer( function() setElementFrozen(localPlayer , false) end,5000,1) end end addEventHandler ( "onClientPlayerWeaponFire", getLocalPlayer(), onClientPlayerWeaponFireFunc ) مو متأكد انه صح , بس جرب ضبط بس بدال مايسوي فريز لـ الاعبين يسويلي انا فريز >< Link to comment
AhmeD~9MoD Posted May 19, 2013 Share Posted May 19, 2013 كينق ماضبط أنا ما جربته .. بس المفروض يشتغل ؟ + لو تبيه بعد 9 ثواني بدل سطر 6 بذا السطر setTimer ( setElementFrozen, 9000, 1, source, false ) Edit: function onClientPlayerWeaponFireFunc(weapon, ammo, ammoInClip, hitX, hitY, hitZ, hitElement ) if weapon == 24 and getElementType(hitElement)=="player" then setElementFrozen(localPlayer , true) setTimer( function() setElementFrozen(localPlayer , false) end,5000,1) end end addEventHandler ( "onClientPlayerWeaponFire", getLocalPlayer(), onClientPlayerWeaponFireFunc ) مو متأكد انه صح , بس جرب يَ حلو أنت كذا تجمد نفسكـ لما تطلق على أحد بالديقل .. ما تجمد إلي طلقت عليه .. أهأ , ! افكره يقول يبي يجمد الي يطلق Link to comment
AboShanab Posted May 19, 2013 Share Posted May 19, 2013 mtasa://77.30.242.143:22003 خش سيرفري خلنا نجرب !! Link to comment
K1NG Posted May 19, 2013 Share Posted May 19, 2013 function onClientPlayerWeaponFireFunc(weapon, ammo, ammoInClip, hitX, hitY, hitZ, hitElement ) if weapon == 24 and getElementType(hitElement)=="player" then setElementFrozen(localPlayer , true) setTimer( function() setElementFrozen(localPlayer , false) end,5000,1) end end addEventHandler ( "onClientPlayerWeaponFire", getLocalPlayer(), onClientPlayerWeaponFireFunc ) مو متأكد انه صح , بس جرب ضبط بس بدال مايسوي فريز لـ الاعبين يسويلي انا فريز >< جرب كودي إلي فوق .. 100% لازم يضبط :\ + تأكد أنه لاعب ثاني طلق عليكـ .. يعني مهو تجيب قنبلة وترميها جنبكـ ذذ يعني جيب خويكـ خله يطلق عليكـ بسلاح ديقل .. وأكيد رح ينعمل له فريز وينفكـ بعد 9 ثواني . Link to comment
3ssol Posted May 19, 2013 Author Share Posted May 19, 2013 هه كينق ي بعدي انت فهمتني غلط انا ابي اذا انا طلقت علي لاعب الاعب الي طلقت عليه يتجمد مو اذا طقو علي يتججمدون Link to comment
AhmeD~9MoD Posted May 19, 2013 Share Posted May 19, 2013 function onClientPlayerWeaponFireFunc(weapon, ammo, ammoInClip, hitX, hitY, hitZ, hitElement ) if weapon == 24 and getElementType(hitElement)=="player" then setElementFrozen(hitElement , true) setTimer( function() setElementFrozen(hitElement , false) end,5000,1) end end addEventHandler ( "onClientPlayerWeaponFire", getLocalPlayer(), onClientPlayerWeaponFireFunc ) جرب Link to comment
AboShanab Posted May 19, 2013 Share Posted May 19, 2013 Client Side ! addEventHandler ( "onClientPlayerDamage", localPlayer, function ( attacker, weapon ) if ( attacker ) and ( attacker ~= localPlayer ) and ( attacker == source ) and ( weapon == 24 ) then setElementFrozen ( source, true ) setTimer ( setElementFrozen, 9000, 1, source, false ) end end ) لم يتم التججربة !! Link to comment
AhmeD~9MoD Posted May 19, 2013 Share Posted May 19, 2013 Client Side ! addEventHandler ( "onClientPlayerDamage", localPlayer, function ( attacker, weapon ) if ( attacker ) and ( attacker ~= localPlayer ) and ( attacker == source ) and ( weapon == 24 ) then setElementFrozen ( source, true ) setTimer ( setElementFrozen, 9000, 1, source, false ) end end ) لم يتم التججربة !! هذا كود كينق ولا يبين لي ؟ Link to comment
AhmeD~9MoD Posted May 19, 2013 Share Posted May 19, 2013 ي عسسول جرب كودي الي فوق , احتمال كبير يضبط معك ,! Link to comment
AhmeD~9MoD Posted May 19, 2013 Share Posted May 19, 2013 ولا واحد ضبط كودي أيش يطلع لك .. ؟ function onClientPlayerWeaponFireFunc(weapon, ammo, ammoInClip, hitX, hitY, hitZ, hitElement ) if weapon == 24 and getElementType(hitElement)=="player" then setElementFrozen(hitElement , true) setTimer( function() setElementFrozen(hitElement , false) end,5000,1) end end addEventHandler ( "onClientPlayerWeaponFire", getLocalPlayer(), onClientPlayerWeaponFireFunc ) انته جرب ويا واحد ثاني , مو تجرب مع نفسك خش سيرفر خويك وجرب معاه او سيرفرك إذا عندكك 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