Jump to content

طلب تصحيح كود


Recommended Posts

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

كيفكم شباب ؟

أن شاء الله بخير

وكل عام وانتم بالف خير :mrgreen:

المهمم

..

معي كود اول ما يشتغل المود تجي صورة

بس المشكلة ما تروح بعد نصف ثانية

هذا الكود

function ed () 
setTimer ( function() 
guiSetVisible ( im,true) 
end, 500, 1 ) 
end 
addEventHandler ("onClientResourceStart",root,ed ) 

اتمنى تصححوه

وشكرا

Link to comment

وانت بخير

......

شلون تبيها تختفي وانت مخلي القيمة true :D

function ed () 
setTimer( function() 
guiSetVisible(im, false) 
end, 500, 1 ) 
end 
addEventHandler ("onClientResourceStart",root,ed ) 

Link to comment
function ed () 
setTimer ( function() 
guiSetVisible ( im,true) 
end, 500, 1 ) 
end 
addEventHandler ("onClientResourceStart",root,ed ) 

انت حآط بالحدث root

يعني آي سكربت ثاني تشغله الفنكشن هذآ يشتغل

  
addEventHandler ("onClientResourceStart",resourceRoot, 
function ed () 
setTimer ( function() 
guiSetVisible ( im,false) 
end, 500, 1 ) 
end 
) 

Link to comment
انت حآط بالحدث root

يعني آي سكربت ثاني تشغله الفنكشن هذآ يشتغل

  
addEventHandler ("onClientResourceStart",resourceRoot, 
function ed () 
setTimer ( function() 
guiSetVisible ( im,false) 
end, 500, 1 ) 
end 
) 

كيف حاط اسم للفنكشن داخل الايفنت ؟

الكود يصير كذا كـ اختصار

function ed (    ) 
setTimer ( function (    ) 
        guiSetVisible ( im, false ) 
    end, 500, 1 ) 
end 
addEventHandler ("onClientResourceStart", resourceRoot, ed ) 

Edited by Guest
Link to comment
انت حآط بالحدث root

يعني آي سكربت ثاني تشغله الفنكشن هذآ يشتغل

  
addEventHandler ("onClientResourceStart",resourceRoot, 
function ed () 
setTimer ( function() 
guiSetVisible ( im,false) 
end, 500, 1 ) 
end 
) 

كيف حاط اسم للفنكشن داخل الايفنت ؟

الكود يصير كذا كـ اختصار

function ed (    ) 
setTimer ( function (    ), guiSetVisible ( im, false ), end, 500, 1 ) 
addEventHandler ("onClientResourceStart", resourceRoot, ed ) 

وليه الفاصلات في سطر 2

وناقص ايند

المهم تفضل الكود بعد التعديل + مجرب

function ed (    ) 
  
setTimer ( function (    ) 
  
 guiSetVisible ( im, false )   
  
 end, 500, 1 ) 
  
end 
addEventHandler ("onClientResourceStart", resourceRoot, ed ) 

بالتوفيق

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