Jump to content

مساعدة في كود بسيط


Recommended Posts

مساعدة بسيطة علي كود 
اريد ان تظهر العلامات في الخريطة تدريجيا وليس جميعها في وقت واحد
وعندما المس اي ماركر يقوم بحذف الماركر والعلامة ونقلنلي لماركر والعلامة التي تليها
حتي انتهي من جميع الماركرات التي بالجدول 
اتمني منكم مساعدتي رجائا انا في مرحة التعلم
رجائا اي تعديل يرجا ان تعدلة علي الكود الاساسي

 

 

 

 

 

GUIEditor = {
    button = {},
    window = {},
    memo = {}
}

local targetMar = {
    {1345.76172, 343.09811, 19},
    {205.60931, -174.15186, 1},
    {2264.45654, 63.23068, 25},
    {696.72180, -442.32590, 15},
    {-85.84571, -1189.86865, 0.5}
}

local mar = {}
local bli = {}

function newTar()
    --setElementModel(localPlayer,22)
    setElementData(localPlayer,"pizzaDone",0)
    for i,v in pairs ( targetMar ) do
        mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
        bli[i] = createBlip(v[1],v[2],v[3],0)
        setElementData(mar[i],"pizzaMar",true)
    end
    addEventHandler("onClientMarkerHit",root,onTarHit)
    outputChatBox("Go to the signs on the map to deliver the smuggled goods when you finish 5 counting areas and get the required amount",255,0,0)
end

function finishJob()
    removeEventHandler("onClientMarkerHit",finMar,finishJob)
    destroyElement(finMar)
    destroyElement(blipfin)
    outputChatBox("Good Job ! Here's your money !",255,255,0)
    triggerServerEvent("onDone",resourceRoot)
    newTar()
end

function onTarHit()
    if getElementData(localPlayer,"pizzaOccupent") == true and getElementData(source,"pizzaMar") == true then
      local piz = getElementData(localPlayer,"pizzaDone")
        if not piz then piz = 0 end
        destroyElement(source)
        setElementData(localPlayer,"pizzaDone",piz+1)
        piz = piz+1
        outputChatBox(piz.."/5 completed !",0,255,0)
        if piz == 5 then
            removeEventHandler("onClientMarkerHit",root,onTarHit)
            for _,v in pairs ( bli ) do
                destroyElement(v)
            end
            outputChatBox("Come back now to receive your money",255,255,0)
            finMar = createMarker(-52.76169, -225.02179, 5.42969, "cylinder", 2, 255, 255, 0)
            blipfin = createBlip(-52.76169, -225.02179, 5.42969, 0)
            addEventHandler("onClientMarkerHit",finMar,finishJob)
        end
    end
end

function onClick()
    if source == GUIEditor.button[1] then
        --setElementModel(localPlayer,22)
        for i,v in pairs ( targetMar ) do
            mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
            bli[i] = createBlip(v[1],v[2],v[3],0)
            setElementData(mar[i],"pizzaMar",true)
        end
        addEventHandler("onClientMarkerHit",root,onTarHit)
        setElementData(localPlayer,"pizzaOccupent",true)
        outputChatBox("Go to the signs on the map to deliver the smuggled goods when you finish 5 counting areas and get the required amount",255,0,0)
        removeEventHandler("onClientGUIClick",root,onClick)
        destroyElement(GUIEditor.window[1])
        showCursor(false)
    elseif source == GUIEditor.button[2] then
        for _,v in pairs ( mar ) do
            destroyElement(v)
        end
        for _,v in pairs ( bli ) do
            destroyElement(v)
        end
        setElementData(localPlayer,"pizzaDone",0)
        --setElementModel(localPlayer,0)
        setElementData(localPlayer,"pizzaOccupent",false)
        outputChatBox("Good Baay!",0,255,0)
        removeEventHandler("onClientGUIClick",root,onClick)
        destroyElement(GUIEditor.window[1])
        showCursor(false)
    end
end

addEvent("onPizzaHit",true)
addEventHandler("onPizzaHit",root,
function ()
    GUIEditor.window[1] = guiCreateWindow(0.28, 0.30, 0.42, 0.40, "- Pizza Man -", true)
    guiWindowSetMovable(GUIEditor.window[1], false)
    guiWindowSetSizable(GUIEditor.window[1], false)
    GUIEditor.memo[1] = guiCreateMemo(0.09, 0.17, 0.48, 0.69, "\nIn this job you must successfully deliver smuggled weapons. Connect all weapons and promise to get your money back.", true, GUIEditor.window[1])
    GUIEditor.button[1] = guiCreateButton(0.63, 0.24, 0.32, 0.20, "Accept Job", true, GUIEditor.window[1])
    GUIEditor.button[2] = guiCreateButton(0.63, 0.54, 0.32, 0.20, "Decline / Remove From Job", true, GUIEditor.window[1])    
    showCursor(true)
    addEventHandler("onClientGUIClick",root,onClick)
end
)
Edited by Kas7
Link to comment
1 hour ago, Kas7 said:
  • local targetMar = {
  •     {1345.76172, 343.09811, 19},
  •     {205.60931, -174.15186, 1},
  •     {2264.45654, 63.23068, 25},
  •     {696.72180, -442.32590, 15},
  •     {-85.84571, -1189.86865, 0.5}
  • }
local targetMar = {
    {1345.76172, 343.09811, 19,0},--x,y,z,blip
    {205.60931, -174.15186, 1,0},--x,y,z,blip
    {2264.45654, 63.23068, 25,0},--x,y,z,blip
    {696.72180, -442.32590, 15,0},--x,y,z,blip
    {-85.84571, -1189.86865, 0.5,0}--x,y,z,blip
}

 

1 hour ago, Kas7 said:
  •  
  •         mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
  •         bli[i] = createBlip(v[1],v[2],v[3],0)
        mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
        bli[i] = createBlipAttachedTo(mar[i],v[4])
		setBlipVisibleDistance ( bli[i], 100 )-- distance from blip to show

 

1 hour ago, Kas7 said:
function onTarHit(h)
    if h==localPlayer and getElementData(localPlayer,"pizzaOccupent") == true and getElementData(source,"pizzaMar") == true then
      local piz = getElementData(localPlayer,"pizzaDone")
        if not piz then piz = 0 end
        destroyElement(source)
    	local blip = getAttachedElements ( source )[1]
        destroyElement(blip)
    	setElementData(localPlayer,"pizzaDone",piz+1)
        piz = piz+1
        outputChatBox(piz.."/5 completed !",0,255,0)
        if piz == 5 then
            removeEventHandler("onClientMarkerHit",resourceRoot,onTarHit)
            outputChatBox("Come back now to receive your money",255,255,0)
            finMar = createMarker(-52.76169, -225.02179, 5.42969, "cylinder", 2, 255, 255, 0)
            blipfin = createBlip(-52.76169, -225.02179, 5.42969, 0)
            addEventHandler("onClientMarkerHit",finMar,finishJob,false)
        end
    end
end

 

1 hour ago, Kas7 said:

    addEventHandler("onClientMarkerHit",resourceRoot,onTarHit)

 

Edited by Master_MTA
Link to comment
GUIEditor = {
    button = {},
    window = {},
    memo = {}
}

local targetMar = {
    {1345.76172, 343.09811, 19,0},--x,y,z,blip
    {205.60931, -174.15186, 1,0},--x,y,z,blip
    {2264.45654, 63.23068, 25,0},--x,y,z,blip
    {696.72180, -442.32590, 15,0},--x,y,z,blip
    {-85.84571, -1189.86865, 0.5,0}--x,y,z,blip
}

local mar = {}
local bli = {}

function newTar()
    --setElementModel(localPlayer,22)
    setElementData(localPlayer,"pizzaDone",0)
    for i,v in pairs ( targetMar ) do
        mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
        bli[i] = createBlipAttachedTo(mar[i],v[4])
        setBlipVisibleDistance ( bli[i], 100 )-- distance from blip to show
        setElementData(mar[i],"pizzaMar",true)
    end
    addEventHandler("onClientMarkerHit",root,onTarHit)
    outputChatBox("Go to the signs on the map to deliver the smuggled goods when you finish 5 counting areas and get the required amount",255,0,0)
end

function finishJob()
    removeEventHandler("onClientMarkerHit",finMar,finishJob)
    destroyElement(finMar)
    destroyElement(blipfin)
    outputChatBox("Good Job ! Here's your money !",255,255,0)
    triggerServerEvent("onDone",resourceRoot)
    newTar()
end

function onTarHit(h)
    if h==localPlayer and getElementData(localPlayer,"pizzaOccupent") == true and getElementData(source,"pizzaMar") == true then
      local piz = getElementData(localPlayer,"pizzaDone")
        if not piz then piz = 0 end
        destroyElement(source)
        local blip = getAttachedElements ( source )[1]
        destroyElement(blip)
        setElementData(localPlayer,"pizzaDone",piz+1)
        piz = piz+1
        outputChatBox(piz.."/5 completed !",0,255,0)
        if piz == 5 then
            removeEventHandler("onClientMarkerHit",resourceRoot,onTarHit)
            outputChatBox("Come back now to receive your money",255,255,0)
            finMar = createMarker(-52.76169, -225.02179, 5.42969, "cylinder", 2, 255, 255, 0)
            blipfin = createBlip(-52.76169, -225.02179, 5.42969, 0)
            addEventHandler("onClientMarkerHit",finMar,finishJob,false)
        end
    end
end
    addEventHandler("onClientMarkerHit",resourceRoot,onTarHit)

function onClick()
    if source == GUIEditor.button[1] then
        --setElementModel(localPlayer,22)
        for i,v in pairs ( targetMar ) do
            mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
            bli[i] = createBlip(v[1],v[2],v[3],0)
            setElementData(mar[i],"pizzaMar",true)
        end
        addEventHandler("onClientMarkerHit",root,onTarHit)
        setElementData(localPlayer,"pizzaOccupent",true)
        outputChatBox("Go to the signs on the map to deliver the smuggled goods when you finish 5 counting areas and get the required amount",255,0,0)
        removeEventHandler("onClientGUIClick",root,onClick)
        destroyElement(GUIEditor.window[1])
        showCursor(false)
    elseif source == GUIEditor.button[2] then
        for _,v in pairs ( mar ) do
            destroyElement(v)
        end
        for _,v in pairs ( bli ) do
            destroyElement(v)
        end
        setElementData(localPlayer,"pizzaDone",0)
        --setElementModel(localPlayer,0)
        setElementData(localPlayer,"pizzaOccupent",false)
        outputChatBox("Good Baay!",0,255,0)
        removeEventHandler("onClientGUIClick",root,onClick)
        destroyElement(GUIEditor.window[1])
        showCursor(false)
    end
end

addEvent("onPizzaHit",true)
addEventHandler("onPizzaHit",root,
function ()
    GUIEditor.window[1] = guiCreateWindow(0.28, 0.30, 0.42, 0.40, "- Pizza Man -", true)
    guiWindowSetMovable(GUIEditor.window[1], false)
    guiWindowSetSizable(GUIEditor.window[1], false)
    GUIEditor.memo[1] = guiCreateMemo(0.09, 0.17, 0.48, 0.69, "\nIn this job you must successfully deliver smuggled weapons. Connect all weapons and promise to get your money back.", true, GUIEditor.window[1])
    GUIEditor.button[1] = guiCreateButton(0.63, 0.24, 0.32, 0.20, "Accept Job", true, GUIEditor.window[1])
    GUIEditor.button[2] = guiCreateButton(0.63, 0.54, 0.32, 0.20, "Decline / Remove From Job", true, GUIEditor.window[1])    
    showCursor(true)
    addEventHandler("onClientGUIClick",root,onClick)
end
)

لم يتغر شئ وحدث هذا الخططاء 
spacer.png

Link to comment
GUIEditor = {
    button = {},
    window = {},
    memo = {}
}

local targetMar = {
    {1345.76172, 343.09811, 19,0},--x,y,z,blip
    {205.60931, -174.15186, 1,0},--x,y,z,blip
    {2264.45654, 63.23068, 25,0},--x,y,z,blip
    {696.72180, -442.32590, 15,0},--x,y,z,blip
    {-85.84571, -1189.86865, 0.5,0}--x,y,z,blip
}

local mar = {}
local bli = {}

function newTar()
    --setElementModel(localPlayer,22)
    setElementData(localPlayer,"pizzaDone",0)
    for i,v in pairs ( targetMar ) do
        mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
        bli[i] = createBlipAttachedTo(mar[i],v[4])
        setBlipVisibleDistance ( bli[i], 100 )-- distance from blip to show
        setElementData(mar[i],"pizzaMar",true)
    end
    addEventHandler("onClientMarkerHit",root,onTarHit)
    outputChatBox("Go to the signs on the map to deliver the smuggled goods when you finish 5 counting areas and get the required amount",255,0,0)
end

function finishJob()
    removeEventHandler("onClientMarkerHit",finMar,finishJob)
    destroyElement(finMar)
    destroyElement(blipfin)
    outputChatBox("Good Job ! Here's your money !",255,255,0)
    triggerServerEvent("onDone",resourceRoot)
    newTar()
end

function onTarHit(h)
    if h==localPlayer and getElementData(localPlayer,"pizzaOccupent") == true and getElementData(source,"pizzaMar") == true then
      local piz = getElementData(localPlayer,"pizzaDone")
        if not piz then piz = 0 end
        destroyElement(source)
        local blip = getAttachedElements ( source )[1]
        destroyElement(blip)
        setElementData(localPlayer,"pizzaDone",piz+1)
        piz = piz+1
        outputChatBox(piz.."/5 completed !",0,255,0)
        if piz == 5 then
            removeEventHandler("onClientMarkerHit",resourceRoot,onTarHit)
            outputChatBox("Come back now to receive your money",255,255,0)
            finMar = createMarker(-52.76169, -225.02179, 5.42969, "cylinder", 2, 255, 255, 0)
            blipfin = createBlip(-52.76169, -225.02179, 5.42969, 0)
            addEventHandler("onClientMarkerHit",finMar,finishJob,false)
        end
    end
end
    addEventHandler("onClientMarkerHit",root,onTarHit)

function onClick()
    if source == GUIEditor.button[1] then
        --setElementModel(localPlayer,22)
        for i,v in pairs ( targetMar ) do
            mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
            bli[i] = createBlip(v[1],v[2],v[3],0)
            setElementData(mar[i],"pizzaMar",true)
        end
        addEventHandler("onClientMarkerHit",root,onTarHit)
        setElementData(localPlayer,"pizzaOccupent",true)
        outputChatBox("Go to the signs on the map to deliver the smuggled goods when you finish 5 counting areas and get the required amount",255,0,0)
        removeEventHandler("onClientGUIClick",root,onClick)
        destroyElement(GUIEditor.window[1])
        showCursor(false)
    elseif source == GUIEditor.button[2] then
        for _,v in pairs ( mar ) do
            destroyElement(v)
        end
        for _,v in pairs ( bli ) do
            destroyElement(v)
        end
        setElementData(localPlayer,"pizzaDone",0)
        --setElementModel(localPlayer,0)
        setElementData(localPlayer,"pizzaOccupent",false)
        outputChatBox("Good Baay!",0,255,0)
        removeEventHandler("onClientGUIClick",root,onClick)
        destroyElement(GUIEditor.window[1])
        showCursor(false)
    end
end

addEvent("onPizzaHit",true)
addEventHandler("onPizzaHit",root,
function ()
    GUIEditor.window[1] = guiCreateWindow(0.28, 0.30, 0.42, 0.40, "- Pizza Man -", true)
    guiWindowSetMovable(GUIEditor.window[1], false)
    guiWindowSetSizable(GUIEditor.window[1], false)
    GUIEditor.memo[1] = guiCreateMemo(0.09, 0.17, 0.48, 0.69, "\nIn this job you must successfully deliver smuggled weapons. Connect all weapons and promise to get your money back.", true, GUIEditor.window[1])
    GUIEditor.button[1] = guiCreateButton(0.63, 0.24, 0.32, 0.20, "Accept Job", true, GUIEditor.window[1])
    GUIEditor.button[2] = guiCreateButton(0.63, 0.54, 0.32, 0.20, "Decline / Remove From Job", true, GUIEditor.window[1])    
    showCursor(true)
    addEventHandler("onClientGUIClick",root,onClick)
end
)

كدا؟

لو فية خطاء قولي في انهي سطر واي تصليحو

Edited by Kas7
Link to comment

GUIEditor = {
    button = {},
    window = {},
    memo = {}
}

local targetMar = {
    {1345.76172, 343.09811, 19,0},--x,y,z,blip
    {205.60931, -174.15186, 1,0},--x,y,z,blip
    {2264.45654, 63.23068, 25,0},--x,y,z,blip
    {696.72180, -442.32590, 15,0},--x,y,z,blip
    {-85.84571, -1189.86865, 0.5,0}--x,y,z,blip
}

local mar = {}
local bli = {}

function newTar()
	--setElementModel(localPlayer,22)
	setElementData(localPlayer,"pizzaDone",0)
	for i,v in pairs ( targetMar ) do
		mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
        bli[i] = createBlipAttachedTo(mar[i],v[4])
		setBlipVisibleDistance ( bli[i], 100 )-- distance from blip to show
		setElementData(mar[i],"pizzaMar",true)
	end
    addEventHandler("onClientMarkerHit",resourceRoot,onTarHit)
	outputChatBox("Go to the signs on the map to deliver the smuggled goods when you finish 5 counting areas and get the required amount",255,0,0)
end

function finishJob()
    removeEventHandler("onClientMarkerHit",finMar,finishJob)
    destroyElement(finMar)
	destroyElement(blipfin)
	outputChatBox("Good Job ! Here's your money !",255,255,0)
	triggerServerEvent("onDone",resourceRoot)
    newTar()
end

function onTarHit(h)
    if h==localPlayer and getElementData(localPlayer,"pizzaOccupent") == true and getElementData(source,"pizzaMar") == true then
      local piz = getElementData(localPlayer,"pizzaDone")
        if not piz then piz = 0 end
        destroyElement(source)
    	local blip = getAttachedElements ( source )[1]
        destroyElement(blip)
    	setElementData(localPlayer,"pizzaDone",piz+1)
        piz = piz+1
        outputChatBox(piz.."/5 completed !",0,255,0)
        if piz == 5 then
            removeEventHandler("onClientMarkerHit",resourceRoot,onTarHit)
            outputChatBox("Come back now to receive your money",255,255,0)
            finMar = createMarker(-52.76169, -225.02179, 5.42969, "cylinder", 2, 255, 255, 0)
            blipfin = createBlip(-52.76169, -225.02179, 5.42969, 0)
            addEventHandler("onClientMarkerHit",finMar,finishJob,false)
        end
    end
end

function onClick()
    if source == GUIEditor.button[1] then
	    --setElementModel(localPlayer,22)
		for i,v in pairs ( targetMar ) do
		mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
        bli[i] = createBlipAttachedTo(mar[i],v[4])
		setBlipVisibleDistance ( bli[i], 100 )-- distance from blip to show
			setElementData(mar[i],"pizzaMar",true)
		end
        addEventHandler("onClientMarkerHit",resourceRoot,onTarHit)
		setElementData(localPlayer,"pizzaOccupent",true)
		outputChatBox("Go to the signs on the map to deliver the smuggled goods when you finish 5 counting areas and get the required amount",255,0,0)
		removeEventHandler("onClientGUIClick",root,onClick)
		destroyElement(GUIEditor.window[1])
		showCursor(false)
	elseif source == GUIEditor.button[2] then
	    for _,v in pairs ( mar ) do
		    destroyElement(v)
		end
		for _,v in pairs ( bli ) do
		    destroyElement(v)
		end
	    setElementData(localPlayer,"pizzaDone",0)
	    --setElementModel(localPlayer,0)
		setElementData(localPlayer,"pizzaOccupent",false)
		outputChatBox("Good Baay!",0,255,0)
		removeEventHandler("onClientGUIClick",root,onClick)
		destroyElement(GUIEditor.window[1])
		showCursor(false)
	end
end

addEvent("onPizzaHit",true)
addEventHandler("onPizzaHit",root,
function ()
    GUIEditor.window[1] = guiCreateWindow(0.28, 0.30, 0.42, 0.40, "- Pizza Man -", true)
    guiWindowSetMovable(GUIEditor.window[1], false)
    guiWindowSetSizable(GUIEditor.window[1], false)
    GUIEditor.memo[1] = guiCreateMemo(0.09, 0.17, 0.48, 0.69, "\nIn this job you must successfully deliver smuggled weapons. Connect all weapons and promise to get your money back.", true, GUIEditor.window[1])
    GUIEditor.button[1] = guiCreateButton(0.63, 0.24, 0.32, 0.20, "Accept Job", true, GUIEditor.window[1])
    GUIEditor.button[2] = guiCreateButton(0.63, 0.54, 0.32, 0.20, "Decline / Remove From Job", true, GUIEditor.window[1])    
	showCursor(true)
	addEventHandler("onClientGUIClick",root,onClick)
end
)

كدا؟
في اي غلط؟

 

Edited by Kas7
Link to comment

GUIEditor = {
    button = {},
    window = {},
    memo = {}
}

local targetMar = {
    {1345.76172, 343.09811, 19,0},--x,y,z,blip
    {205.60931, -174.15186, 1,0},--x,y,z,blip
    {2264.45654, 63.23068, 25,0},--x,y,z,blip
    {696.72180, -442.32590, 15,0},--x,y,z,blip
    {-85.84571, -1189.86865, 0.5,0}--x,y,z,blip
}

local mar = {}
local bli = {}

function newTar()
    --setElementModel(localPlayer,22)
    setElementData(localPlayer,"pizzaDone",0)
    for i,v in pairs ( targetMar ) do
        mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
        bli[i] = createBlipAttachedTo(mar[i],v[4])
        setBlipVisibleDistance ( bli[i], 100 )-- distance from blip to show
        setElementData(mar[i],"pizzaMar",true)
    end
    addEventHandler("onClientMarkerHit",resourceRoot,onTarHit)
    outputChatBox("Go to the signs on the map to deliver the smuggled goods when you finish 5 counting areas and get the required amount",255,0,0)
end

function finishJob()
    removeEventHandler("onClientMarkerHit",finMar,finishJob)
    destroyElement(finMar)
    destroyElement(blipfin)
    outputChatBox("Good Job ! Here's your money !",255,255,0)
    triggerServerEvent("onDone",localPlayer)
    newTar()
end

function onTarHit(h)
    if h==localPlayer and getElementData(localPlayer,"pizzaOccupent") == true and getElementData(source,"pizzaMar") == true then
      local piz = getElementData(localPlayer,"pizzaDone")
        if not piz then piz = 0 end
        destroyElement(source)
        local blip = getAttachedElements ( source )[1]
        destroyElement(blip)
        setElementData(localPlayer,"pizzaDone",piz+1)
        piz = piz+1
        outputChatBox(piz.."/5 completed !",0,255,0)
        if piz == 5 then
            removeEventHandler("onClientMarkerHit",resourceRoot,onTarHit)
            outputChatBox("Come back now to receive your money",255,255,0)
            finMar = createMarker(-52.76169, -225.02179, 5.42969, "cylinder", 2, 255, 255, 0)
            blipfin = createBlip(-52.76169, -225.02179, 5.42969, 0)
            addEventHandler("onClientMarkerHit",finMar,finishJob,false)
        end
    end
end

function onClick()
    if source == GUIEditor.button[1] then
        --setElementModel(localPlayer,22)
        for i,v in pairs ( targetMar ) do
        mar[i] = createMarker(v[1],v[2],v[3],"cylinder",2,255,255,0)
        bli[i] = createBlipAttachedTo(mar[i],v[4])
        setBlipVisibleDistance ( bli[i], 100 )-- distance from blip to show
            setElementData(mar[i],"pizzaMar",true)
        end
        addEventHandler("onClientMarkerHit",resourceRoot,onTarHit)
        setElementData(localPlayer,"pizzaOccupent",true)
        outputChatBox("Go to the signs on the map to deliver the smuggled goods when you finish 5 counting areas and get the required amount",255,0,0)
        removeEventHandler("onClientGUIClick",root,onClick)
        destroyElement(GUIEditor.window[1])
        showCursor(false)
    elseif source == GUIEditor.button[2] then
        for _,v in pairs ( mar ) do
            destroyElement(v)
        end
        for _,v in pairs ( bli ) do
            destroyElement(v)
        end
        setElementData(localPlayer,"pizzaDone",0)
        --setElementModel(localPlayer,0)
        setElementData(localPlayer,"pizzaOccupent",false)
        outputChatBox("Good Baay!",0,255,0)
        removeEventHandler("onClientGUIClick",root,onClick)
        destroyElement(GUIEditor.window[1])
        showCursor(false)
    end
end

addEvent("onPizzaHit",true)
addEventHandler("onPizzaHit",root,
function ()
    GUIEditor.window[1] = guiCreateWindow(0.28, 0.30, 0.42, 0.40, "- Pizza Man -", true)
    guiWindowSetMovable(GUIEditor.window[1], false)
    guiWindowSetSizable(GUIEditor.window[1], false)
    GUIEditor.memo[1] = guiCreateMemo(0.09, 0.17, 0.48, 0.69, "\nIn this job you must successfully deliver smuggled weapons. Connect all weapons and promise to get your money back.", true, GUIEditor.window[1])
    GUIEditor.button[1] = guiCreateButton(0.63, 0.24, 0.32, 0.20, "Accept Job", true, GUIEditor.window[1])
    GUIEditor.button[2] = guiCreateButton(0.63, 0.54, 0.32, 0.20, "Decline / Remove From Job", true, GUIEditor.window[1])    
    showCursor(true)
    addEventHandler("onClientGUIClick",root,onClick)
end
)

كدا؟
لو اقدر اتواصل معاك عن طريق ديسكورد او فيسبوك بيكون افضل

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