Jump to content

تمت الافادة مشكلة


Recommended Posts

السلام عليكم !!

ليه مااشتغل

function fox( ) 
        local money = getPlayerMoney(source) 
        if ( money > 1000000 ) then  
        outputChatBox( "thanks!!", source, 255, 255, 0 ) 
                        triggerClientEvent ( source, "dd" , source ) 
    else 
    outputChatBox( "sorry", source, 255, 255, 0 ) 
    end  
end 
setTimer ( fox, 3000, 0 ) 

صورة في الديبوق سطر 3

ddd.png

Edited by Guest
Link to comment
setTimer(  
function()  
    for index, value in ipairs( getElementsByType("player") ) do  
        if getPlayerMoney( value ) >= 1000000 ) then 
            outputChatBox( "thanks!!", value, 255, 255, 0 ); 
            triggerClientEvent ( value, "dd" , value ); 
        else 
            outputChatBox( "sorry", value, 255, 255, 0 ); 
        end 
    end 
end, 3000, 0 ); 
  

Link to comment

سويته

لاكن لما اسوي كيل تايمر ولما اجمع الفلوس المطلوبه مايسوي تحقق

اعتقد بتستخدم بعد مخرج الشات

 outputChatBox( "sorry", value, 255, 255, 0 )  

resetTimer(tim) 

tim = setTimer( 
function() 
    for index, value in ipairs( getElementsByType("player") ) do 
        if getPlayerMoney( value ) >= 1000000 ) then 
            outputChatBox( "thanks!!", value, 255, 255, 0 ); 
            triggerClientEvent ( value, "dd" , value ); 
            killTimer ( tim ) 
        else 
            outputChatBox( "sorry", value, 255, 255, 0 ); 
        end 
    end 
end, 3000, 0 ); 

يعني الكود بيصير كذا :mrgreen::mrgreen:

tim = setTimer( 
function() 
    for index, value in ipairs( getElementsByType("player") ) do 
        if getPlayerMoney( value ) >= 1000000 ) then 
            outputChatBox( "thanks!!", value, 255, 255, 0 ); 
            triggerClientEvent ( value, "dd" , value ); 
            killTimer ( tim ) 
        else 
            outputChatBox( "sorry", value, 255, 255, 0 ); 
resetTimer(tim) 
        end 
    end 
end, 3000, 0 ); 

أسف إذا جاوبت لنفسي

Link to comment

حاب أقلك متى تستخدم السورس عشان ماتطيح بالخطأ مرة ثانية

السورس خاص بالافنت

يعني بالعربي مصدر الحدث

مثلا الاعب داخل

من هو مصدر الحدث

المصدر هو الاعب اللي دخل

وكمان اذ ضغط زر

المصدر هو الزر اللي انضغط

ومثال اذا دخل الماركر

المصدر هو الماركر اللي دخله الالمنت

فكل افنت له سورس خاص فيه

وفيه حاجة بنبهك عليها

يمديك تعرف السورس

يعني

source = getRandomPlayer( ) 

كذا كأن سوينا متغير عادي

يعني السورس خاص بالحدث فقط

برب بنام :big11:

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