Szerző Téma: Ped Clicked  (Megtekintve 3496 alkalommal)

Ped Clicked
« Dátum: 2014. április 18. - 23:54:23 »
0 Show voters
Próbálkoztam egy olyan Ped készítésén amire ha jobb klikkel rákattintok akkor elõjön egy kis ablak, de nem igazán akar ez összejönni:/
Itt a Kód:
(Kliens oldali)
 
myPed = createPed(0, 1969.7, -1458, 13.3)
function onPedClick(button, state, absX, absY, wx, wy, wz, element, clickedelement)
    if button == \"right\" and state == \"down\" and clickedelement then
        local x, y, z = getElementPosition(localPlayer)
        if (element == myPed) then
            if getDistanceBetweenPoints3D(x, y, z, wx, wy, wz)<=3 then
                guiSetVisible(myGUIWindow, true)
           end
        end
    end
end
outputChatBox(\"Siker\")
addEventHandler(\"onClientClick\", root, onPedClick)

 
A válaszokat elõre is köszönöm

Nem elérhető Enigma

  • 391
    • Profil megtekintése
Ped Clicked
« Válasz #1 Dátum: 2014. április 20. - 04:49:04 »
0 Show voters

myPed = createPed(0, 1969.7, -1458, 13.3)
function onPedClick(button, state, absX, absY, wx, wy, wz, element, clickedelement)
    if button == \"right\" and state == \"down\" and clickedelement then
        local x, y, z = getElementPosition(localPlayer)
        if (clickedelement == myPed) then
            if getDistanceBetweenPoints3D(x, y, z, wx, wy, wz)<=3 then
                guiSetVisible(myGUIWindow, true)
                outputChatBox(\"Siker\")
           end
        end
    end
end
addEventHandler(\"onClientClick\", root, onPedClick)

Nem elérhető Light557

  • 836
  • _@_/
    • Profil megtekintése
Ped Clicked
« Válasz #2 Dátum: 2014. április 20. - 10:28:40 »
0 Show voters

myPed = createPed(0, 1969.7, -1458, 13.3)
function onPedClick(button, state, absX, absY, wx, wy, wz, clickedelement)
    if button == \"right\" and state == \"down\" and clickedelement then
        local x, y, z = getElementPosition(localPlayer)
        if (clickedelement == myPed) then
            if getDistanceBetweenPoints3D(x, y, z, wx, wy, wz)<=3 then
                guiSetVisible(myGUIWindow, true)
                outputChatBox(\"Siker\")
           end
        end
    end
end
addEventHandler(\"onClientClick\", root, onPedClick)

Ped Clicked
« Válasz #3 Dátum: 2014. április 23. - 20:22:43 »
0 Show voters
Még mindig nem jó :/

Nem elérhető Enigma

  • 391
    • Profil megtekintése
Ped Clicked
« Válasz #4 Dátum: 2014. április 24. - 04:40:36 »
0 Show voters
Kliens oldalba, nem szerveroldalba.

Ped Clicked
« Válasz #5 Dátum: 2014. április 24. - 21:59:21 »
0 Show voters
Kliens oldalba írtam de nemjo mert resource elinditasakor rögtön hozzá be a guiablakot és nem kattintasra beraktam setvisible t úgy inditaskor ugye nem hozzá be gui ablakot de ha rakattolok pedre akkorse hozzá be

Nem elérhető Live

  • 507
    • Profil megtekintése
Ped Clicked
« Válasz #6 Dátum: 2014. április 26. - 23:42:56 »
0 Show voters

myPed = createPed(0, 1969.7, -1458, 13.3)
function onPedClick(button, state, absX, absY, wx, wy, wz, clickedelement)
    if button == \"right\" and state == \"down\" and clickedelement then
        local x, y, z = getElementPosition(localPlayer)
        if (clickedelement == myPed) then
            if getDistanceBetweenPoints3D(x, y, z, wx, wy, wz)<=3 then
                guiSetVisible(myGUIWindow, true)
                outputChatBox(\"Siker\")
           end
        end
    end
end
addEventHandler(\"onClientClick\", root, onPedClick)
function pedClickShow()
    guiSetVisible(myGUIWindow, false)
end
addEventHandler(\"onClientResourceStart\", getResourceRootElement(getThisResource()), pedClickShow)

Ped Clicked
« Válasz #7 Dátum: 2014. április 27. - 15:23:39 »
0 Show voters
Köszönöm mûködik! ZÁROM

Ped Clicked
« Válasz #8 Dátum: 2014. április 18. - 23:54:23 »
0 Show voters
Próbálkoztam egy olyan Ped készítésén amire ha jobb klikkel rákattintok akkor elõjön egy kis ablak, de nem igazán akar ez összejönni:/
Itt a Kód:
(Kliens oldali)
 
myPed = createPed(0, 1969.7, -1458, 13.3)
function onPedClick(button, state, absX, absY, wx, wy, wz, element, clickedelement)
    if button == \"right\" and state == \"down\" and clickedelement then
        local x, y, z = getElementPosition(localPlayer)
        if (element == myPed) then
            if getDistanceBetweenPoints3D(x, y, z, wx, wy, wz)<=3 then
                guiSetVisible(myGUIWindow, true)
           end
        end
    end
end
outputChatBox(\"Siker\")
addEventHandler(\"onClientClick\", root, onPedClick)

 
A válaszokat elõre is köszönöm

Nem elérhető Enigma

  • 391
    • Profil megtekintése
Ped Clicked
« Válasz #9 Dátum: 2014. április 20. - 04:49:04 »
0 Show voters

myPed = createPed(0, 1969.7, -1458, 13.3)
function onPedClick(button, state, absX, absY, wx, wy, wz, element, clickedelement)
    if button == \"right\" and state == \"down\" and clickedelement then
        local x, y, z = getElementPosition(localPlayer)
        if (clickedelement == myPed) then
            if getDistanceBetweenPoints3D(x, y, z, wx, wy, wz)<=3 then
                guiSetVisible(myGUIWindow, true)
                outputChatBox(\"Siker\")
           end
        end
    end
end
addEventHandler(\"onClientClick\", root, onPedClick)

Nem elérhető Light557

  • 836
  • _@_/
    • Profil megtekintése
Ped Clicked
« Válasz #10 Dátum: 2014. április 20. - 10:28:40 »
0 Show voters

myPed = createPed(0, 1969.7, -1458, 13.3)
function onPedClick(button, state, absX, absY, wx, wy, wz, clickedelement)
    if button == \"right\" and state == \"down\" and clickedelement then
        local x, y, z = getElementPosition(localPlayer)
        if (clickedelement == myPed) then
            if getDistanceBetweenPoints3D(x, y, z, wx, wy, wz)<=3 then
                guiSetVisible(myGUIWindow, true)
                outputChatBox(\"Siker\")
           end
        end
    end
end
addEventHandler(\"onClientClick\", root, onPedClick)

Ped Clicked
« Válasz #11 Dátum: 2014. április 23. - 20:22:43 »
0 Show voters
Még mindig nem jó :/

Nem elérhető Enigma

  • 391
    • Profil megtekintése
Ped Clicked
« Válasz #12 Dátum: 2014. április 24. - 04:40:36 »
0 Show voters
Kliens oldalba, nem szerveroldalba.

Ped Clicked
« Válasz #13 Dátum: 2014. április 24. - 21:59:21 »
0 Show voters
Kliens oldalba írtam de nemjo mert resource elinditasakor rögtön hozzá be a guiablakot és nem kattintasra beraktam setvisible t úgy inditaskor ugye nem hozzá be gui ablakot de ha rakattolok pedre akkorse hozzá be

Nem elérhető Live

  • 507
    • Profil megtekintése
Ped Clicked
« Válasz #14 Dátum: 2014. április 26. - 23:42:56 »
0 Show voters

myPed = createPed(0, 1969.7, -1458, 13.3)
function onPedClick(button, state, absX, absY, wx, wy, wz, clickedelement)
    if button == \"right\" and state == \"down\" and clickedelement then
        local x, y, z = getElementPosition(localPlayer)
        if (clickedelement == myPed) then
            if getDistanceBetweenPoints3D(x, y, z, wx, wy, wz)<=3 then
                guiSetVisible(myGUIWindow, true)
                outputChatBox(\"Siker\")
           end
        end
    end
end
addEventHandler(\"onClientClick\", root, onPedClick)
function pedClickShow()
    guiSetVisible(myGUIWindow, false)
end
addEventHandler(\"onClientResourceStart\", getResourceRootElement(getThisResource()), pedClickShow)

 

SimplePortal 2.3.7 © 2008-2024, SimplePortal