Jump to content

حمل اوبجكت


emad10

Recommended Posts

  • Replies 52
  • Created
  • Last Reply

Top Posters In This Topic

ما صار

انا ابغيه ان اذا

كتب

obj

مرة يصير عنده الي ويتحرك معاه

واذا كتبها مرة ثانية يحطها على الارض ما تختفي

واذا حطاها تختفي عقب مدة من الوقت

اسف لكثرة طلباتي

Link to comment

اذا تبي اي المنت باللعبة بعد مدة يختفي استخدم هالكود

setTimer(destroyElement,3000,1,element) 

الحين عندك كلمة

element

ذي تحط بها الشي الي تبي تخفيه بعد مدة من الوقت

شايف الرقم الي بعد كلمة

destroyElement

هذا معناه 3 ثواني

تذكر ان ال

1000 = ثانية

واذا تشوف رقم 1

هذي المرات

يعني كم مرة راح يشتغل التايمر

مرة , مرتين , 3

اذا 0 , يعني كل مررة

بس انصحك لا تستخدم هالكود مع ال

gui-elements

النوافذ , الازرار , الخ ..

Link to comment
بس تصير على الارض نفس الشي

ماتتحرك مع اللاعب

واذا تقدر امبيها بعد مده تختفي

tete

ممكن تصحح كود مجنون فيك

ان اذا كتب الكلمة يمشي معاه واذا كتبها مرة ثانية يتركه على الارض؟

Link to comment

جرب

obj=createObject(971,0,0,0,0,0,0) 
  
function attaching(asource) 
    attachElements(obj,asource) 
    removeCommandHandler("obj",attaching) 
    addCommandHandler("obj",deattaching) 
end 
addCommandHandler("obj",attaching) 
  
function deattaching(dsource) 
    if(getElementAttachedTo(obj)==dsource)then 
        detachElements(obj,dsource) 
        if(isTimer(timer)) then killTimer(timer) end 
        timer=setTimer( 
            function() 
                if(getElementAttachedTo(obj)==dsource)then 
                    killTimer(timer) 
                    return nil 
                end 
                destroyElement(obj) 
            end,10000,1 
        ) 
    end 
    removeCommandHandler("obj",deattaching) 
    addCommandHandler("obj",attaching) 
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...