Jump to content

طلب كود !


Recommended Posts

Posted

السلام عليكم ورحمة الله وبركاته

شباب أبي كود اذا مات البيد أحدد له وقت ويرجع مره ثانيه

وشكرا

ufPZ1.png
OlCN1.png
Posted

onPedWasted استخدم الايفينت

setTimer وضع موقت

createPed ped لأنشاء

╔═╦╦╦╗╔╦═╦═╦═╦═╦╦╦╦╦╦╦═╦╦╦╦╗

║║║║║╠╝║║╚╣║║║║║║║║║║║║║║║║║

║║║║║╚╦╦═╦╦╦╦╣║║║║║║║║║║║║║║

║║║║╠═╣╠╝╔══╝║║║║║╟╢║║║║║╟╢║

╚╩══╩══╩═╩═══╩╩══╩╩═╩╩╩═╩╩═╝

«سبحانك اللهم وبحمدك أشهد أن لا إله إلا أنت أستغفرك وأتوب إليك»

M7mdAl7arthy : لتواصل سكايب

Posted

╔═╦╦╦╗╔╦═╦═╦═╦═╦╦╦╦╦╦╦═╦╦╦╦╗

║║║║║╠╝║║╚╣║║║║║║║║║║║║║║║║║

║║║║║╚╦╦═╦╦╦╦╣║║║║║║║║║║║║║║

║║║║╠═╣╠╝╔══╝║║║║║╟╢║║║║║╟╢║

╚╩══╩══╩═╩═══╩╩══╩╩═╩╩╩═╩╩═╝

«سبحانك اللهم وبحمدك أشهد أن لا إله إلا أنت أستغفرك وأتوب إليك»

M7mdAl7arthy : لتواصل سكايب

Posted

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 
) 

Retired.

Posted
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 ثواني يرجع

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

ufPZ1.png
OlCN1.png
Posted
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 

ahmadsig1.png

Nobody is perfect , I'm nobody.

22771qw7.jpg

Skype : ahmad.nasser37

Posted

جرب ذا

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 

Retired.

Posted
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) 

CiTLh.png
Posted
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 

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

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

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

ufPZ1.png
OlCN1.png
Posted
جرب ذا
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 

طيب جربت ذا

Retired.

Posted
جرب ذا
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 

طيب جربت ذا

أي شغال

شكرا يا رهيب

ufPZ1.png
OlCN1.png
Posted
جرب ذا
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 

طيب جربت ذا

أي شغال

شكرا يا رهيب

العفووو

Retired.

Posted
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) 

شكرا أيضا يا تابل

شغال

ufPZ1.png
OlCN1.png

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