Search the Community
Showing results for tags 'نايترو'.
-
السلام عليكم شباب اليوم عندي استفسار ابي لما اللاعب ياخذ نايترو مره يخلص من الي اجيبها من الادت ماب قصدي اللي تجي بمابات الريس والكلام ذا ابيه لما ياخذها النايترو يجي مره وحده ويخلص ابي اضيف الامر على الكود ذا لوو تسمحو توضحو اكون شاكر واسف على الازعاج -------------------------------- -- by: x#Diego -------------------------------- local x, y = guiGetScreenSize() addEventHandler("onClientVehicleEnter", root, function() addEventHandler("onClientRender", root, nitro) end ) function nitro() playerV = getPedOccupiedVehicle(localPlayer) playerN = getVehicleNitroLevel(playerV) if getVehicleUpgradeOnSlot(playerV,8) then dxDrawRectangle(x/500, y/1.1, x/200, y/-1.5*playerN, tocolor(62,157,225,255)) else end end addEventHandler("onClientVehicleExit", root, function() removeEventHandler("onClientRender", root, nitro) end ) -----------------------------------Funciones utiles :'v--------------------------------------------- function dxDrawEmptyRec(startX, startY, endX, endY, color, width, postGUI) dxDrawLine ( startX, startY, startX+endX, startY, color, width, postGUI ) dxDrawLine ( startX, startY, startX, startY+endY, color, width, postGUI ) dxDrawLine ( startX, startY+endY, startX+endX, startY+endY, color, width, postGUI ) dxDrawLine ( startX+endX, startY, startX+endX, startY+endY, color, width, postGUI ) end ----------------------------------------------------------------------------------------------------