N3xT Posted May 4, 2015 Share Posted May 4, 2015 السسلام عليكم , أبي كود اللي هو يخلي الصورة تتحرك , تدور دورت عن الكود ف الويكي م حصلته وأبي كود ثاني اللي هو يحذف صور dx مثلا لا خلصت من التسجيل يحذف الصورهه حاولت عن طريق removeEventHandler م ظبط معي وشكرأً لكم Link to comment
mouamle Posted May 4, 2015 Share Posted May 4, 2015 لما تسوي صورة شوف الأرقمنتات في ارقمنت rotation: the rotation, in degrees for the image. تكدر تسوي مثلا local rotation = 0 dxDrawImage(260, 92, 811, 536, ":guieditor/images/dot_white.png", rotation, 0, 0, tocolor(255, 255, 255, 255), false) اذا تريد تخلي الصورة تدور أتوقع تكدر تسوي هيج شي for i = 0,360 do rotation = rotation + 1 end Link to comment
Ac[T]ioN Posted May 5, 2015 Share Posted May 5, 2015 يخلي الصورة تلف dxDrawImage ( x/2-sizeX/2, y/2+50, sizeX, sizeY, 'img.png',var) وإستخدم removeEventHandler للإنهاء مثال function main() showChat(false) start = getTickCount() addEventHandler("onClientRender",getRootElement(),intro) setTimer ( function() removeEventHandler("onClientRender",getRootElement(),intro) triggerEvent("onFinishIntro",getRootElement()) end, 7000, 1 ) end addEventHandler("onClientResourceStart",getResourceRootElement(getThisResource()),main) المثال جايبه لك من مود عندي Link to comment
N3xT Posted May 5, 2015 Author Share Posted May 5, 2015 addEventHandler("onClientRender",getRootElement(),intro) function intro () dxDrawImage (658/2-658/2, 520/2+520, 65, 54, '2.png',var) end جربت كذا م ظبط function hideLoginWindow() showCursor(false) showChat(true) stopSound( sound ) removeEventHandler("onClientRender",getRootElement(),intro) end addEvent("hideLoginWindow", true) addEventHandler("hideLoginWindow", getRootElement(), hideLoginWindow) وجربت ذا م ظبط Link to comment
Simple. Posted May 5, 2015 Share Posted May 5, 2015 addEventHandler("onClientRender",getRootElement(),intro) function intro () dxDrawImage (658/2-658/2, 520/2+520, 65, 54, '2.png',var) end جربت كذا م ظبط function hideLoginWindow() showCursor(false) showChat(true) stopSound( sound ) removeEventHandler("onClientRender",getRootElement(),intro) end addEvent("hideLoginWindow", true) addEventHandler("hideLoginWindow", getRootElement(), hideLoginWindow) وجربت ذا م ظبط ورنآ آلتريقر Link to comment
N3xT Posted May 5, 2015 Author Share Posted May 5, 2015 addEventHandler("onClientRender",getRootElement(),intro) function intro () dxDrawImage (658/2-658/2, 520/2+520, 65, 54, '2.png',var) end جربت كذا م ظبط function hideLoginWindow() showCursor(false) showChat(true) stopSound( sound ) removeEventHandler("onClientRender",getRootElement(),intro) end addEvent("hideLoginWindow", true) addEventHandler("hideLoginWindow", getRootElement(), hideLoginWindow) وجربت ذا م ظبط ورنآ آلتريقر triggerClientEvent(source,"hideLoginWindow",getRootElement()) Link to comment
ALw7sH Posted May 5, 2015 Share Posted May 5, 2015 مايحتاج تسوي تريقر روت دام انت بتخفي الصوره للاعب واحد فقط triggerClientEvent(source,"hideLoginWindow",source) وعشان تتأكد انه التريقر يوصل ضيف ذا السطر بأستقبال التريقر وشوف يطلع شي بالديبق او لا outputDebugString("hideLoginWindow Has been triggered") Link to comment
</Mr.Tn6eL> Posted May 5, 2015 Share Posted May 5, 2015 لما تسوي صورة شوف الأرقمنتات في ارقمنت rotation: the rotation, in degrees for the image. تكدر تسوي مثلا local rotation = 0 dxDrawImage(260, 92, 811, 536, ":guieditor/images/dot_white.png", rotation, 0, 0, tocolor(255, 255, 255, 255), false) اذا تريد تخلي الصورة تدور أتوقع تكدر تسوي هيج شي for i = 0,360 do rotation = rotation + 1 end for i = 0,360 do rotation = rotation + 1 end كذا بتكرر العملية rotation = rotation + 1 يعني راح تشوفها ماتتحرك افضل شي تستعملها بدون لوب Link to comment
yazan Posted May 5, 2015 Share Posted May 5, 2015 function rr ( ) local seconds = getTickCount() / 6000 local angle = math.sin(seconds) * 360 dxDrawImage ( 589, 338, 121, 90, '1.png', angle, 0, 0) end function ty ( ) addEventHandler("onClientRender", getRootElement(), rr) end addEventHandler("onClientResourceStart",resourceRoot, ty) Link to comment
N3xT Posted May 6, 2015 Author Share Posted May 6, 2015 مشكورين الوحش + يزن , بس عندي مشكلة وهي أنه الصورة اللي أبيها تلف م تطلع ف اللوحة , م تبان فيها , واذا خلصت مثلا واختفت اللوحة تبان الصورة وش الحل : ) Link to comment
TAPL Posted May 7, 2015 Share Posted May 7, 2015 جرب dxDrawImage ( 589, 338, 121, 90, '1.png', angle, 0, 0, tocolor(255,255,255,255), true) Link to comment
N3xT Posted May 9, 2015 Author Share Posted May 9, 2015 جرب dxDrawImage ( 589, 338, 121, 90, '1.png', angle, 0, 0, tocolor(255,255,255,255), 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