Hesham_Alking Posted October 6, 2013 Share Posted October 6, 2013 السلام عليكم اخواني انا حملت مود Shader_nitro وركبت المود بس مش عارف وش اكتب بالسيرفر عشان اغير لون النيترو هذا كود المود ض1 --------------------------------------------------------------------------------- -- -- Nitro shader -- -- --------------------------------------------------------------------------------- addEventHandler("onClientResourceStart",resourceRoot, function() nitroShader = dxCreateShader("nitro.fx") end) -- This function will set the new color of the nitro function updateNitroColor(r,g,b) if nitroShader then if r and g and b then engineApplyShaderToWorldTexture (nitroShader,"smoke") dxSetShaderValue (nitroShader, "gNitroColor", r/255, g/255, b/255 ) end end end -- This function will reset the nitro back to the original function resetNitroColor() if nitroShader then engineRemoveShaderFromWorldTexture(nitroShader,"smoke") end end -- Example command use addCommandHandler("nitro", function(command,r,g,b) if r and g and b then local r,g,b = tonumber(r),tonumber(g),tonumber(b) if r <= 255 and g <= 255 and b <= 255 then updateNitroColor(r,g,b) outputChatBox("Nitro color updated!",255,255,255,true) else outputChatBox("Colors must be between 0 and 255",255,255,255,true) end else resetNitroColor() outputChatBox("Nitro color reset to original!",255,255,255,true) end end) Link to comment
Hesham_Alking Posted October 6, 2013 Author Share Posted October 6, 2013 Command : nitro اخوي هذه الكلمة وظيفتها ترجع للنتيرو الاصلي ض1 Link to comment
فاّرس Posted October 6, 2013 Share Posted October 6, 2013 القسم خطأ اكيد بيرجع للون الاصلي , ليه؟ function(command,r,g,b) r,g,b هذي تكتبها عشان تلون النيترو طيب في الكود شرط اذا ما كتبت الالوان يرجع للاصلي, if r and g and b then طبعا هو اول شيء قفل الشرط الاول if r <= 255 and g <= 255 and b <= 255 then updateNitroColor(r,g,b) outputChatBox("Nitro color updated!",255,255,255,true) else outputChatBox("Colors must be between 0 and 255",255,255,255,true) end بعدين سوى عكس الشرط الاول الي هو يتحقق انك كتبت الالوان في اف8 ولا لا, else resetNitroColor() outputChatBox("Nitro color reset to original!",255,255,255,true) وبكذا لو ما كتبت الالوان يرجع للأصلي ذذ ^ هذا شرح لو تبي تستفيد لا اكثر , كيفيه استخدام الكود, مثآل nitro 255 0 255 تقدر تغير الارقام حسب اللون الي تبي ذذ Link to comment
S4MuEL Posted October 7, 2013 Share Posted October 7, 2013 جيت آعدل آلرد حقي وآكتب لك آلأر بي جي ورديت آنت وفصل آللآب , Link to comment
Hesham_Alking Posted October 7, 2013 Author Share Posted October 7, 2013 مشكور اخي بس عندي استفسار الحين كيف اعرف ارقام الالوان ؟ الحين انا ما اعرف الا الاحمر والاخضر والازرق 255 0 0 < الاحمر الاخضر < 0 255 0 0 0 255 < الازرق Link to comment
فاّرس Posted October 7, 2013 Share Posted October 7, 2013 مشكور اخي بس عندي استفسار الحين كيف اعرف ارقام الالوان ؟ الحين انا ما اعرف الا الاحمر والاخضر والازرق 255 0 0 < الاحمر الاخضر < 0 255 0 0 0 255 < الازرق RGB Colors 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