Professional Posted January 13, 2015 Share Posted January 13, 2015 السلام عليكم ورحمه الله وبركاته اريد فنكشات اول ما لاعب يموت نفسه يطلع له صوت ويرى شخصيه التي قتلته اتمنى تعطوني الفنكشات بسرعه ما ابي لا مود ولا بطيخه Link to comment
Micro Posted January 13, 2015 Share Posted January 13, 2015 (edited) السلام عليكم ورحمه الله وبركاتهاريد فنكشات اول ما لاعب يموت نفسه يطلع له صوت ويرى شخصيه التي قتلته اتمنى تعطوني الفنكشات بسرعه ما ابي لا مود ولا بطيخه onPlayerWasted 1- نوع ايفينت getCamera() 2- قم بوضعها بمتغير setElementPosition 3- قم بتوجيه بوسيتشن للكاميرا attachElements 4- قم بربط الكاميرا مع لاعب playSound 5- قم بتشغيل الاغنية Edited January 13, 2015 by Guest Link to comment
#DRAGON!FIRE Posted January 13, 2015 Share Posted January 13, 2015 onPlayerWasted getCamera() setElementPosition attachElements playSound استخدام .. : Event : "onPlayerWasted" triggerClientEvent playSound setTimer setCameraTarget -- تستخدمها لوضع الكميرا ع اللاعب اللي قتله من ثم بعد فترهـ تشيلها وترجع الكميرا ع اللاعب نفسه Link to comment
Micro Posted January 13, 2015 Share Posted January 13, 2015 استخدام .. : Event : "onPlayerWasted" triggerClientEvent playSound setTimer setCameraTarget -- تستخدمها لوضع الكميرا ع اللاعب اللي قتله من ثم بعد فترهـ تشيلها وترجع الكميرا ع اللاعب نفسه بأمكانه كمان يستخدم attachElements بدل setCameraTarget Link to comment
Micro Posted January 13, 2015 Share Posted January 13, 2015 ليه يستخدمها ؟ .. عن طريق attachElements يقدر يلزق الكاميرة في لاعب او في اي اوبجكت يريده مثال cam = getCamera() setElementPosition( cam, 0,0,0 ) -- Clear camera target myVehicle = getPedOccupiedVehicle(localPlayer) attachElements( cam, myVehicle, 0,-4,2, -20,0,0 ) Link to comment
Micro Posted January 13, 2015 Share Posted January 13, 2015 ليه يستخدمها ؟ .. ض1 هسة جربنها function setCameraInPlayer (player) cam = getCamera() attachElements( cam, getLocalPlayer(), 0,-4,2, -20,0,0 ) end addCommandHandler("aa",setCameraInPlayer) بتقلب معك 2D ----------- لا تستخدمها .. Link to comment
EL-JoKeR Posted January 13, 2015 Share Posted January 13, 2015 ليه يستخدمها ؟ .. ض1 هسة جربنها function setCameraInPlayer (player) cam = getCamera() attachElements( cam, getLocalPlayer(), 0,-4,2, -20,0,0 ) end addCommandHandler("aa",setCameraInPlayer) بتقلب معك 2D ----------- لا تستخدمها .. ههههههههههههههههههههههههههههههه جربتها حسيت اني العب لعبة 2D Link to comment
justboy Posted January 13, 2015 Share Posted January 13, 2015 ههههههه ههههههه حلوة ذي Link to comment
' A F . Posted January 14, 2015 Share Posted January 14, 2015 جرب * Client : addEventHandler("onClientPlayerWasted",getRootElement(),function(killer) if ( killer ) and ( killer ~= source ) and ( killer == getLocalPlayer() ) then local x,y,z = getElementPosition(source) createExplosion(x,y,z,0,true,-1.0,false) end end) addEventHandler("onClientPlayerWasted",getLocalPlayer(),function() local sound = playSound("wasted.mp3") end) * Server : addEventHandler("onPlayerWasted",getRootElement(),function(ammo,killer,killerweapon,bodypart) if ( killer ) and ( killer ~= source) then setTimer(setCameraTarget,2000,1,source,killer) setTimer(setCameraTarget,9000,1,source,source) end end) Link to comment
Professional Posted January 14, 2015 Author Share Posted January 14, 2015 هريسه صح ؟ addEventHandler("onPlayerWasted",getRootElement(),PlayerKill) function PlayerKill ( killer, weapon, bodypart) local _, _, camrot = getElementRotation(getCamera()) local _, _, plaRot = getElementRotation(localPlayer) setElementPosition ( getLocalPlayer(), posX, posY, posZ ) attachElements(soundasd, localPlayer) local sound = playSound("wasted.mp3") end end شوفولي ذا حطيته على الفتكشات الثانيه addEventHandler("onPlayerWasted",getRootElement(),PlayerKill) function PlayerKill ( killer, weapon, bodypart) local sound = playSound("wasted.mp3") setTimer(setCameraTarget, 100, 1, source) end end Link to comment
' A F . Posted January 14, 2015 Share Posted January 14, 2015 جربت الكود الي عطيتك .. ؟ 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