Jump to content

يضغط زر ولمن يموت يروح لمكان محدد


Recommended Posts

ماحس اني فاهمك وضح

انت الحين ضغطت زر

وبعدين الوضيفه تسير

بعد ماتموت يوديك مكان محدد

مثل الأنتقال ^ محدد

تلقائي بعد ماتموت

بس لازم تكون ضاغط الزر ^_^ ..

Link to comment
ماحس اني فاهمك وضح

انت الحين ضغطت زر

وبعدين الوضيفه تسير

بعد ماتموت يوديك مكان محدد

مثل الأنتقال ^ محدد

تلقائي بعد ماتموت

بس لازم تكون ضاغط الزر ^_^ ..

spawnPlayer 

Link to comment

؟bindKey قصدك زر

مثال

bindKey("F4", "down", 
function() 
    addEventHandler("onClientPlayerWasted", localPlayer, onWaste) 
end) 
  
function onWaste() 
    setElementPosition(localPlayer, x, y, z) 
    removeEventHandler("onClientPlayerWasted", localPlayer, onWaste) 
end 

مثال آخر

bindKey("F4", "down", 
function() 
    waste = true 
end) 
  
function onWaste() 
    if waste then 
        setElementPosition(localPlayer, x, y, z) 
        waste = false 
    end 
end 
addEventHandler("onClientPlayerWasted", localPlayer, onWaste) 

و ممكن تسويه بطرق آخرى بعد

Link to comment
؟bindKey قصدك زر

مثال

bindKey("F4", "down", 
function() 
    addEventHandler("onClientPlayerWasted", localPlayer, onWaste) 
end) 
  
function onWaste() 
    setElementPosition(localPlayer, x, y, z) 
    removeEventHandler("onClientPlayerWasted", localPlayer, onWaste) 
end 

مثال آخر

bindKey("F4", "down", 
function() 
    waste = true 
end) 
  
function onWaste() 
    if waste then 
        setElementPosition(localPlayer, x, y, z) 
        waste = false 
    end 
end 
addEventHandler("onClientPlayerWasted", localPlayer, onWaste) 

و ممكن تسويه بطرق آخرى بعد

انا قصدي زر في لوحه يعني

إذا ضغطته بعد ماتموت تروح مكان

Link to comment
onClientGUIClick و حط مكانه الحدث bindKey بسيطه بس غير الـ

كذا ؟

addEventHandler("onClientGUIClick",root, 
function() 
if source == Roll~1 then 
    waste = true 
end) 
  
function onWaste() 
    if waste then 
        setElementPosition(localPlayer, x, y, z) 
        waste = false 
    end 
end 
addEventHandler("onClientPlayerWasted", localPlayer, onWaste) 

Link to comment
onClientGUIClick و حط مكانه الحدث bindKey بسيطه بس غير الـ

كذا ؟

addEventHandler("onClientGUIClick",root, 
function() 
if source == Roll~1 then 
    waste = true 
end) 
  
function onWaste() 
    if waste then 
        setElementPosition(localPlayer, x, y, z) 
        waste = false 
    end 
end 
addEventHandler("onClientPlayerWasted", localPlayer, onWaste) 

Roll~1 ? ورني وينة ومايصلح ~ ذذ

Link to comment
onClientGUIClick و حط مكانه الحدث bindKey بسيطه بس غير الـ

كذا ؟

addEventHandler("onClientGUIClick",root, 
function() 
if source == Roll~1 then 
    waste = true 
end) 
  
function onWaste() 
    if waste then 
        setElementPosition(localPlayer, x, y, z) 
        waste = false 
    end 
end 
addEventHandler("onClientPlayerWasted", localPlayer, onWaste) 

Roll~1 ? ورني وينة ومايصلح ~ ذذ

هذا مثال يعني لو الزر

Roll~1

بس مزبوط كذا ؟

Link to comment
end بس ناقص

كذا ؟

addEventHandler("onClientGUIClick",root, 
function() 
if source == Roll~1 then 
    waste = true 
end) 
  
function onWaste() 
    if waste then 
        setElementPosition(localPlayer, x, y, z) 
        waste = false 
    end 
  end 
end 
addEventHandler("onClientPlayerWasted", localPlayer, onWaste) 

Link to comment
addEventHandler("onClientGUIClick",root, 
function() 
if source == Roll~1 then 
    waste = true 
      end 
end) 
  
function onWaste() 
    if waste then 
        setElementPosition(localPlayer, x, y, z) 
        waste = false 
  end 
end 
addEventHandler("onClientPlayerWasted", localPlayer, onWaste) 

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