Jump to content

بخصوص مود النيترو هذا


Recommended Posts

السلام عليكم اخواني انا حملت مود

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

  • القسم خطأ
  • اكيد بيرجع للون الاصلي , ليه؟

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...