Jump to content

طلب كود


Recommended Posts

https://wiki.multitheftauto.com/wiki/DxDrawLine3D

وياليت اذا سويته تطرحه

الكود طارحه تابل في موضوع

اول شي

bool dxDrawLine3D ( float startX, float startY, float startZ, float endX, float endY, float endZ, int color[, int width, bool postGUI ] ) 

انا وين الاقي بداية الليزر و نهايته

ثاني شي اذا تابل قد نزله في موضوع ياليت تعطيني الرابط

او

تابل ينزله هنا

Link to comment

انا شفت ان العقرب سوى شوب و تابل سوى شوب و حسن سوى شوب

و كثير سووا شوبات

الحين كلكم ما شفتوا موضوعي

تكفون الكود مو بس لي انا الكل يبي يعرف

اذا نزلتوه سويتوا خير فينا كلنا

الكود مهم تكفون

Link to comment
https://wiki.multitheftauto.com/wiki/DxDrawLine3D

وياليت اذا سويته تطرحه

الكود طارحه تابل في موضوع

اول شي

bool dxDrawLine3D ( float startX, float startY, float startZ, float endX, float endY, float endZ, int color[, int width, bool postGUI ] ) 

انا وين الاقي بداية الليزر و نهايته

ثاني شي اذا تابل قد نزله في موضوع ياليت تعطيني الرابط

او

تابل ينزله هنا

بداية الليزر

https://wiki.multitheftauto.com/wiki/GetPedTargetStart

(نهاية الليزر (يعتمد على مدى تصويب السلاح

https://wiki.multitheftauto.com/wiki/GetPedTargetEnd

(نهاية الليزر (يعطي أحداثيات الجسم الي أمامك الي يكون أقرب من مدى تصويب السلاح

https://wiki.multitheftauto.com/wiki/GetPedTargetCollision

Link to comment

حط ملفات السكربت هذا في الشوب

https://community.multitheftauto.com/ind ... ls&id=3746

وانت عليك انك تحط بكود الزر الي يشتري ليزر

الكود هذا

  
SetLaserEnabled(source, true) 
SetLaserColor(source,255,0,0,255) 
  

والوقت الي ينتهي اليزر فيه

  
  
setTimer(function(source) 
SetLaserEnabled(source, false) 
,end,120000,1) 
  
  

Link to comment
https://wiki.multitheftauto.com/wiki/DxDrawLine3D

وياليت اذا سويته تطرحه

الكود طارحه تابل في موضوع

اول شي

bool dxDrawLine3D ( float startX, float startY, float startZ, float endX, float endY, float endZ, int color[, int width, bool postGUI ] ) 

انا وين الاقي بداية الليزر و نهايته

ثاني شي اذا تابل قد نزله في موضوع ياليت تعطيني الرابط

او

تابل ينزله هنا

بداية الليزر

https://wiki.multitheftauto.com/wiki/GetPedTargetStart

(نهاية الليزر (يعتمد على مدى تصويب السلاح

https://wiki.multitheftauto.com/wiki/GetPedTargetEnd

(نهاية الليزر (يعطي أحداثيات الجسم الي أمامك الي يكون أقرب من مدى تصويب السلاح

https://wiki.multitheftauto.com/wiki/GetPedTargetCollision

مشكور افدتني بس احس ان شغلتك طويله شوي

بجرب كلام

حط ملفات السكربت هذا في الشوب

https://community.multitheftauto.com/ind ... ls&id=3746

وانت عليك انك تحط بكود الزر الي يشتري ليزر

الكود هذا

  
SetLaserEnabled(source, true) 
SetLaserColor(source,255,0,0,255) 
  

والوقت الي ينتهي اليزر فيه

  
  
setTimer(function(source) 
SetLaserEnabled(source, false) 
,end,120000,1) 
  
  

بجرب و اشوف

Link to comment
حط ملفات السكربت هذا في الشوب

https://community.multitheftauto.com/ind ... ls&id=3746

وانت عليك انك تحط بكود الزر الي يشتري ليزر

الكود هذا

  
SetLaserEnabled(source, true) 
SetLaserColor(source,255,0,0,255) 
  

والوقت الي ينتهي اليزر فيه

  
  
setTimer(function(source) 
SetLaserEnabled(source, false) 
,end,120000,1) 
  
  

انت متاكد احط كل الملفات لاني بدون ما اشتري لقيته موجود

ياليت تقول وش احط و وش ما احطه

Link to comment

شوفوا انا حطيت كل الملفات في السكربت اذا شغلته يطلع للكل ليزر

ذي صلحتها

طيب

انا اشتريت ليزر طلع لي ليزر

لكن انا مخليه في نص ثانية يروح

بس ما راح

الكود

addCommandHandler("Laser", 
    function (source) 
        local m1 = getPlayerMoney(source) 
        if ( m1 >= 3000 ) then 
            takePlayerMoney(source,3000) 
            outputChatBox(" You Got Laser",source,0,255,0) 
            SetLaserEnabled(source,true) 
            SetLaserColor(source,0,150,255,255) 
            setTimer(SetLaserEnabled,30000,1,source,false) 
        else 
            outputChatBox("* You Don't Have Enough Money",source,255,0,0) 
        end 
    end 
) 

الحل يا جماعة

:(

انا عارف انكم نايمين خلاص بكرة شوفوا الحل

Link to comment
شوفوا انا حطيت كل الملفات في السكربت اذا شغلته يطلع للكل ليزر

ابحث عن

addEventHandler("onClientResourceStart", getRootElement(), function(res) 
    if res == getThisResource() then 
        outputChatBox("Laser marker by [MM]EVIS loaded", 50,255,0) 
        SetLaserEnabled(localPlayer, true) 
        SetLaserColor(localPlayer, oldcolors.r,oldcolors.g,oldcolors.b,oldcolors.a) 
         
        if colorPickerInitialized == 0 then -- attempt to init colorpicker stuff 
            initColorPicker()            
        end 
         
    elseif res == getResourceFromName("colorpicker") then 
        if colorPickerInitialized == 0 then -- attempt to init colorpicker stuff 
            initColorPicker() 
        end 
    end 
end ) 

غيرها ل

addEventHandler("onClientResourceStart", getRootElement(), function(res) 
    if res == getThisResource() then 
        outputChatBox("Laser marker by [MM]EVIS loaded", 50,255,0) 
        SetLaserEnabled(localPlayer, false) 
        SetLaserColor(localPlayer, oldcolors.r,oldcolors.g,oldcolors.b,oldcolors.a) 
         
        if colorPickerInitialized == 0 then -- attempt to init colorpicker stuff 
            initColorPicker()            
        end 
         
    elseif res == getResourceFromName("colorpicker") then 
        if colorPickerInitialized == 0 then -- attempt to init colorpicker stuff 
            initColorPicker() 
        end 
    end 
end ) 

Link to comment

انا اشتريت ليزر طلع لي ليزر

لكن انا مخليه في نص ثانية يروح

بس ما راح

الكود

addCommandHandler("Laser", 
    function (source) 
        local m1 = getPlayerMoney(source) 
        if ( m1 >= 3000 ) then 
            takePlayerMoney(source,3000) 
            outputChatBox(" You Got Laser",source,0,255,0) 
            SetLaserEnabled(source,true) 
            SetLaserColor(source,0,150,255,255) 
            setTimer(SetLaserEnabled,30000,1,source,false) 
        else 
            outputChatBox("* You Don't Have Enough Money",source,255,0,0) 
        end 
    end 
) 

الحل يا جماعة

انا عارف انكم نايمين خلاص بكرة شوفوا الحل

جرب الكود هذا وعطني خبر

addCommandHandler("Laser", 
    function (source) 
        local m1 = getPlayerMoney(source) 
        if ( m1 >= 3000 ) then 
            takePlayerMoney(source,3000) 
            outputChatBox(" You Got Laser",source,0,255,0) 
            SetLaserEnabled(source,true) 
            SetLaserColor(source,0,150,255,255) 
            setTimer(function() 
    setElementData(source, "laser.on", false) 
    setElementData(source, "laser.aim", false) 
end,10000,1) 
        else 
            outputChatBox("* You Don't Have Enough Money",source,255,0,0) 
        end 
    end 
) 

Link to comment

انا اشتريت ليزر طلع لي ليزر

لكن انا مخليه في نص ثانية يروح

بس ما راح

الكود

addCommandHandler("Laser", 
    function (source) 
        local m1 = getPlayerMoney(source) 
        if ( m1 >= 3000 ) then 
            takePlayerMoney(source,3000) 
            outputChatBox(" You Got Laser",source,0,255,0) 
            SetLaserEnabled(source,true) 
            SetLaserColor(source,0,150,255,255) 
            setTimer(SetLaserEnabled,30000,1,source,false) 
        else 
            outputChatBox("* You Don't Have Enough Money",source,255,0,0) 
        end 
    end 
) 

الحل يا جماعة

انا عارف انكم نايمين خلاص بكرة شوفوا الحل

جرب الكود هذا وعطني خبر

addCommandHandler("Laser", 
    function (source) 
        local m1 = getPlayerMoney(source) 
        if ( m1 >= 3000 ) then 
            takePlayerMoney(source,3000) 
            outputChatBox(" You Got Laser",source,0,255,0) 
            SetLaserEnabled(source,true) 
            SetLaserColor(source,0,150,255,255) 
            setTimer(function() 
    setElementData(source, "laser.on", false) 
    setElementData(source, "laser.aim", false) 
end,10000,1) 
        else 
            outputChatBox("* You Don't Have Enough Money",source,255,0,0) 
        end 
    end 
) 

شوف انا بجربه و اذا اشتغل

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

و مشكور ما تقصر

Link to comment

انا اشتريت ليزر طلع لي ليزر

لكن انا مخليه في نص ثانية يروح

بس ما راح

الكود

addCommandHandler("Laser", 
    function (source) 
        local m1 = getPlayerMoney(source) 
        if ( m1 >= 3000 ) then 
            takePlayerMoney(source,3000) 
            outputChatBox(" You Got Laser",source,0,255,0) 
            SetLaserEnabled(source,true) 
            SetLaserColor(source,0,150,255,255) 
            setTimer(SetLaserEnabled,30000,1,source,false) 
        else 
            outputChatBox("* You Don't Have Enough Money",source,255,0,0) 
        end 
    end 
) 

الحل يا جماعة

انا عارف انكم نايمين خلاص بكرة شوفوا الحل

جرب الكود هذا وعطني خبر

addCommandHandler("Laser", 
    function (source) 
        local m1 = getPlayerMoney(source) 
        if ( m1 >= 3000 ) then 
            takePlayerMoney(source,3000) 
            outputChatBox(" You Got Laser",source,0,255,0) 
            SetLaserEnabled(source,true) 
            SetLaserColor(source,0,150,255,255) 
            setTimer(function() 
    setElementData(source, "laser.on", false) 
    setElementData(source, "laser.aim", false) 
end,10000,1) 
        else 
            outputChatBox("* You Don't Have Enough Money",source,255,0,0) 
        end 
    end 
) 

اشتغل اشكرك

الكود ذا مرة مختصر شكرا على كل شي

شكرا حسن شكرا تابل

مبروك للكل هذا هو كود الليزر

:)

Link to comment

انا اشتريت ليزر طلع لي ليزر

لكن انا مخليه في نص ثانية يروح

بس ما راح

الكود

addCommandHandler("Laser", 
    function (source) 
        local m1 = getPlayerMoney(source) 
        if ( m1 >= 3000 ) then 
            takePlayerMoney(source,3000) 
            outputChatBox(" You Got Laser",source,0,255,0) 
            SetLaserEnabled(source,true) 
            SetLaserColor(source,0,150,255,255) 
            setTimer(SetLaserEnabled,30000,1,source,false) 
        else 
            outputChatBox("* You Don't Have Enough Money",source,255,0,0) 
        end 
    end 
) 

الحل يا جماعة

انا عارف انكم نايمين خلاص بكرة شوفوا الحل

جرب الكود هذا وعطني خبر

addCommandHandler("Laser", 
    function (source) 
        local m1 = getPlayerMoney(source) 
        if ( m1 >= 3000 ) then 
            takePlayerMoney(source,3000) 
            outputChatBox(" You Got Laser",source,0,255,0) 
            SetLaserEnabled(source,true) 
            SetLaserColor(source,0,150,255,255) 
            setTimer(function() 
    setElementData(source, "laser.on", false) 
    setElementData(source, "laser.aim", false) 
end,10000,1) 
        else 
            outputChatBox("* You Don't Have Enough Money",source,255,0,0) 
        end 
    end 
) 

اشتغل اشكرك

الكود ذا مرة مختصر شكرا على كل شي

شكرا حسن شكرا تابل

مبروك للكل هذا هو كود الليزر

:)

على الرحب والسعه

واذا عندك اي طلب ثاني مايردك غير الكيبورد

حط موضوعك وباذن لله اساعدك

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...