Jump to content

! وش الخطا بالكود|thx To Mr.Pres[T]ege


Recommended Posts

ي طويل العمر كل اللي سويتة سويت اختيار للزر مثلا انا مسوية الـ بحر

local ClickedSea = false

صح ؟

هو يوم يسوي التايمر يخلية ترو لاني سويتة

ClickedSea = not ClickedSea

و يوم يسوي الغاء للتايمر يحولة false

نفسة لاني سويت

ClickedSea = not ClickedSea

و الباقي نفسة : )

Link to comment
  • Replies 60
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

local flash = false 
local sky = false 
local water = false 
  
addEventHandler ( "onClientGUIClick", root, 
    function ( ) 
        if source == GUIEditor_Button[2] then   
            if not sky then 
                theTimer = setTimer( function() 
                    setSkyGradient( math.random(255),math.random(255), math.random(255), math.random(255),math.random(255),math.random(255) ) 
                end, 350, 0 ) 
                sky = not sky 
            else 
                if isTimer ( theTimer ) then 
                    killTimer ( theTimer ) 
                    sky = not sky 
                end 
            end 
        elseif source == GUIEditor_Button[1] then 
            if not water then 
                theT = setTimer ( function() 
                    setWaterColor ( math.random(255),math.random(255), math.random(255) ) 
                end, 350, 0 ) 
                water = not water 
            else 
                if isTimer ( theT ) then 
                    killTimer ( theT ) end 
                    water = not water 
                end 
            end 
        elseif source == GUIEditor_Button[3] then 
            if not flash then 
                uVehicle = getPedOccupiedVehicle( localPlayer ) 
                if uVehicle then 
                    theC = setTimer(function() 
                        local r, g, b = math.random( 255 ), math.random( 255 ), math.random( 255 ) 
                        setVehicleColor( uVehicle, r, g, b ) 
                    end, 350,0) 
                    flash = not flash 
            else 
                if isTimer ( theC ) then 
                    killTimer ( theC ) 
                    flash = not flash 
                end 
            end   
        end 
    end  
)  

+ نظم أكوادك شوي ذذ

كودك ما ضبط لكن كود برسستيج ضبط

Link to comment
ي طويل العمر كل اللي سويتة سويت اختيار للزر مثلا انا مسوية الـ بحر

local ClickedSea = false

صح ؟

هو يوم يسوي التايمر يخلية ترو لاني سويتة

ClickedSea = not ClickedSea

و يوم يسوي الغاء للتايمر يحولة false

نفسة لاني سويت

ClickedSea = not ClickedSea

و الباقي نفسة : )

اها توني افهم ذذ

خلاص تم الافادة يعطيك العافية :)

Link to comment
لم يتم التجربة

  
local ClickedSky = false 
local ClickedSea = false 
local ClickedVehicle = false 
addEventHandler("onClientGUIClick", root, 
    function () 
        if source == GUIEditor_Button[2] then  
            if not ClickedSky then 
        theTimer = setTimer(function() 
       setSkyGradient(math.random(255),math.random(255), math.random(255), math.random(255),math.random(255),math.random(255)) 
end, 350,0) 
        ClickedSky = not ClickedSky  
    else 
        if ( isTimer ( theTimer ) ) then  
                killTimer ( theTimer )   
                theTimer = nil  
                ClickedSky = not ClickedSky 
            end 
        end 
    elseif ( source ==  GUIEditor_Button[1] ) then 
        if not ClickedSea then 
    theT = setTimer(function() 
            setWaterColor(math.random(255),math.random(255), math.random(255)) 
end, 350,0) 
        ClickedSea = not ClickedSea 
    else 
        if ( isTimer ( theT ) ) then  
         killTimer ( theT )  
        theT = nil  
                ClickedSea = not ClickedSea 
            end 
        end 
    elseif ( source == GUIEditor_Button[3] ) then 
            if not ClickedVehicle then 
             uVehicle = getPedOccupiedVehicle( localPlayer ) 
            if not uVehicle then return end 
            theC = setTimer(function() 
                local r, g, b = math.random( 255 ), math.random( 255 ), math.random( 255 ) 
                setVehicleColor( uVehicle, r, g, b ) 
            end, 350,0) 
            ClickedVehicle = not ClickedVehicle 
        else 
        if ( isTimer ( theC ) ) then  
         killTimer ( theC )  
        theC = nil  
                ClickedVehicle = not ClickedVehicle 
            end 
        end 
    end 
end 
) 

ما يحتاح تسوي nil

لانك انت اصلا ملغي التآيمر,

وجوده مثل عدمه,,

Link to comment
لم يتم التجربة

  
local ClickedSky = false 
local ClickedSea = false 
local ClickedVehicle = false 
addEventHandler("onClientGUIClick", root, 
    function () 
        if source == GUIEditor_Button[2] then  
            if not ClickedSky then 
        theTimer = setTimer(function() 
       setSkyGradient(math.random(255),math.random(255), math.random(255), math.random(255),math.random(255),math.random(255)) 
end, 350,0) 
        ClickedSky = not ClickedSky  
    else 
        if ( isTimer ( theTimer ) ) then  
                killTimer ( theTimer )   
                theTimer = nil  
                ClickedSky = not ClickedSky 
            end 
        end 
    elseif ( source ==  GUIEditor_Button[1] ) then 
        if not ClickedSea then 
    theT = setTimer(function() 
            setWaterColor(math.random(255),math.random(255), math.random(255)) 
end, 350,0) 
        ClickedSea = not ClickedSea 
    else 
        if ( isTimer ( theT ) ) then  
         killTimer ( theT )  
        theT = nil  
                ClickedSea = not ClickedSea 
            end 
        end 
    elseif ( source == GUIEditor_Button[3] ) then 
            if not ClickedVehicle then 
             uVehicle = getPedOccupiedVehicle( localPlayer ) 
            if not uVehicle then return end 
            theC = setTimer(function() 
                local r, g, b = math.random( 255 ), math.random( 255 ), math.random( 255 ) 
                setVehicleColor( uVehicle, r, g, b ) 
            end, 350,0) 
            ClickedVehicle = not ClickedVehicle 
        else 
        if ( isTimer ( theC ) ) then  
         killTimer ( theC )  
        theC = nil  
                ClickedVehicle = not ClickedVehicle 
            end 
        end 
    end 
end 
) 

ما يحتاح تسوي nil

لانك انت اصلا ملغي التآيمر,

وجوده مثل عدمه,,

الافضل تنفية نهائيا / =

Link to comment
لم يتم التجربة

  
local ClickedSky = false 
local ClickedSea = false 
local ClickedVehicle = false 
addEventHandler("onClientGUIClick", root, 
    function () 
        if source == GUIEditor_Button[2] then  
            if not ClickedSky then 
        theTimer = setTimer(function() 
       setSkyGradient(math.random(255),math.random(255), math.random(255), math.random(255),math.random(255),math.random(255)) 
end, 350,0) 
        ClickedSky = not ClickedSky  
    else 
        if ( isTimer ( theTimer ) ) then  
                killTimer ( theTimer )   
                theTimer = nil  
                ClickedSky = not ClickedSky 
            end 
        end 
    elseif ( source ==  GUIEditor_Button[1] ) then 
        if not ClickedSea then 
    theT = setTimer(function() 
            setWaterColor(math.random(255),math.random(255), math.random(255)) 
end, 350,0) 
        ClickedSea = not ClickedSea 
    else 
        if ( isTimer ( theT ) ) then  
         killTimer ( theT )  
        theT = nil  
                ClickedSea = not ClickedSea 
            end 
        end 
    elseif ( source == GUIEditor_Button[3] ) then 
            if not ClickedVehicle then 
             uVehicle = getPedOccupiedVehicle( localPlayer ) 
            if not uVehicle then return end 
            theC = setTimer(function() 
                local r, g, b = math.random( 255 ), math.random( 255 ), math.random( 255 ) 
                setVehicleColor( uVehicle, r, g, b ) 
            end, 350,0) 
            ClickedVehicle = not ClickedVehicle 
        else 
        if ( isTimer ( theC ) ) then  
         killTimer ( theC )  
        theC = nil  
                ClickedVehicle = not ClickedVehicle 
            end 
        end 
    end 
end 
) 

ما يحتاح تسوي nil

لانك انت اصلا ملغي التآيمر,

وجوده مثل عدمه,,

الافضل تنفية نهائيا / =

بما انك مسوي كيل للتآيمر, راح ينهيه نهائيآ ,

فـ مآ اشوف لها داعي (=

Link to comment
ي عزيزي كل وآحد ولة طريقتة بالبرمجة وطرق التحقق وبالنسبة لي آحب آنفية آكثر عندكـ مشكلة وفرهآ لكـ ~

كنت عآرف بيجي ردك كذآ,

لكن بس حبيت اقولك,

حصل خير :D

Link to comment
ي عزيزي كل وآحد ولة طريقتة بالبرمجة وطرق التحقق وبالنسبة لي آحب آنفية آكثر عندكـ مشكلة وفرهآ لكـ ~

كنت عآرف بيجي ردك كذآ,

لكن بس حبيت اقولك,

حصل خير :D

على قولتكـ مآرآح تفرق بس التأكيد افضل ~ وش فية ردي مزعلكـ فـ شيء ؟ :) انا بس قلت لك كلن و لة طريقتة بالبرمجة .

Link to comment
ي عزيزي كل وآحد ولة طريقتة بالبرمجة وطرق التحقق وبالنسبة لي آحب آنفية آكثر عندكـ مشكلة وفرهآ لكـ ~

كنت عآرف بيجي ردك كذآ,

لكن بس حبيت اقولك,

حصل خير :D

على قولتكـ مآرآح تفرق بس التأكيد افضل ~ وش فية ردي مزعلكـ فـ شيء ؟ :) انا بس قلت لك كلن و لة طريقتة بالبرمجة .

مم صرآحه استفدت من كودكك احسه يفك ازمات :lol:

وآسف اذا زعلتك بشيء ,,

Link to comment

مم صرآحه استفدت من كودكك احسه يفك ازمات :lol:

وآسف اذا زعلتك بشيء ,,

لا عادي حنآ للنقآش هنآ مآقلت شيء ذذ بس قلت تأكيد ~

من االفن الي فيني , حاولت اسوي,

local Car = false 
addEventHandler("onClientGUIClick",root, 
function() 
if (source == Button ) then 
if not Car then 
      local x, y, z = getElementPosition ( localPlayer ) 
     vehicle = createVehicle ( 432, x +1, y, z  ) 
Car = not Car 
else 
destroyElement(vehicle) 
Car = not Car 
             end 
      end 
end)     

بس ما ضبط ,,

Link to comment

local Car = false 
addEventHandler("onClientGUIClick",Button, 
    function( ) 
        if not Car then 
        local x, y, z = getElementPosition ( localPlayer ) 
            vehicle = createVehicle ( 432, x +1, y, z  ) 
                Car = not Car 
    else 
        if isElement(vehicle) then 
        destroyElement(vehicle) 
                vehicle = nil 
            Car = not Car 
             end 
      end 
end,false 
) 

مثل ماقلت لك انصحك تكثر التحققات

Link to comment
local Car = false 
addEventHandler("onClientGUIClick",Button, 
    function( ) 
        if not Car then 
        local x, y, z = getElementPosition ( localPlayer ) 
            vehicle = createVehicle ( 432, x +1, y, z  ) 
                Car = not Car 
    else 
        if isElement(vehicle) then 
        destroyElement(vehicle) 
                vehicle = nil 
            Car = not Car 
             end 
      end 
end,false 
) 

مثل ماقلت لك انصحك تكثر التحققات

عقدني يقولي سطر 6 باد ارقومنت 5

Link to comment
امممم لاني جربتة وشغال / = ؟ تأكد انسخة ثانية وبدلة يمكن مآنسختة زين ذذ

WARNING: CARS\client.lua:9:Bad agument 2 'createVehicle' [Expected number at argument 5, got none] 

اوهـ صحيح معكـ حق انا بالقيم اللي بالروم معي تطلع لـ بعض النآس معي تدري وش السبب ؟ بق من اللعبه الام تي اي ولا هو مافية ارقمنت خامس لآزم تغير نسختكـ عموما جرب هالنسخة من فريق ام تي اي طلبتها عطونآ ذي :

the latest nightly

Link to comment
addCommandHandler("xd", 
  function () 
 local  x1,y1,z1, = getWaterColor () 
  
 setClipboard(" "..x1..","..y1..","..z1.." ") 
  
end 
) 

كذا صح ؟

+

مدري وش كنت اسوي بدونكك

Edited by Guest
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...