Jump to content

طلب كود !


Recommended Posts

x,y,z غير الـ

الى الاحداثيات حقت الباد و جرب ذا

local x,y,z = 0,0,0 
thePed = createPed(0,x,y,z) 
  
addEventHandler("onPedWasted",root, 
    function () 
        destroyElement(thePed) 
        thePed = createPed(0,x,y,z) 
    end 
) 

شكرا طلال الكود شغال بس أذا أبي اركب عليه تايمر

يعني أخليه اذا مات بعد 10 ثواني يرجع

كيف أو على شنو أركبه

Link to comment
x,y,z غير الـ

الى الاحداثيات حقت الباد و جرب ذا

local x,y,z = 0,0,0 
thePed = createPed(0,x,y,z) 
  
addEventHandler("onPedWasted",root, 
    function () 
        destroyElement(thePed) 
        thePed = createPed(0,x,y,z) 
    end 
) 

شكرا طلال الكود شغال بس أذا أبي اركب عليه تايمر

يعني أخليه اذا مات بعد 10 ثواني يرجع

كيف أو على شنو أركبه

setTimer 
spawnPlayer 

Link to comment
local x, y, z = 0, 0, 0 
thePed = createPed(0, x, y, z) 
  
addEventHandler("onPedWasted", root, 
function () 
    if source == thePed then 
        setTimer(function(source)  
            destroyElement(source) 
            thePed = createPed(0, x, y, z) 
        end, 10000, 1, source) 
    end 
end) 

Link to comment
x,y,z غير الـ

الى الاحداثيات حقت الباد و جرب ذا

local x,y,z = 0,0,0 
thePed = createPed(0,x,y,z) 
  
addEventHandler("onPedWasted",root, 
    function () 
        destroyElement(thePed) 
        thePed = createPed(0,x,y,z) 
    end 
) 

شكرا طلال الكود شغال بس أذا أبي اركب عليه تايمر

يعني أخليه اذا مات بعد 10 ثواني يرجع

كيف أو على شنو أركبه

setTimer 
spawnPlayer 

أحمد شكلك ماتعرف السالفه

أنا أتكلم عن بيد مو لاعب

و أنا أبي أركب التايمر مع كود طلال

Link to comment
جرب ذا
local x,y,z = 0,0,0 
thePed = createPed(0,x,y,z) 
  
addEventHandler("onPedWasted",root, 
    function () 
        setTimer(spawn,1000,1) 
    end 
) 
  
function spawn() 
    destroyElement(thePed) 
    thePed = createPed(0,x,y,z) 
end 

طيب جربت ذا

أي شغال

شكرا يا رهيب

Link to comment
local x, y, z = 0, 0, 0 
thePed = createPed(0, x, y, z) 
  
addEventHandler("onPedWasted", root, 
function () 
    if source == thePed then 
        setTimer(function(source)  
            destroyElement(source) 
            thePed = createPed(0, x, y, z) 
        end, 10000, 1, source) 
    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...