nxFairlywell Posted May 11, 2019 Share Posted May 11, 2019 (edited) 10 minutes ago, JustP said: قصدي لو مثلا شخص كتب نقطة تجيه نقطة لكن لما يخرج تنحفظ النقطة هذي له يعني لو وصل 99 نقطة وخرج وكتب نقطة يوصلون 100 ونفس الشيء بعد مايترستر السيرفر او يترستر المود إذا تبغى النقطة تنحفظ على السيريال , يعني على كل حسابات اللاعب serverPoints = { } addEventHandler( "onPlayerChat" , root , function( msg ) if( msg == "نقطه" or msg == "نقطة" ) then local serial=getPlayerSerial(source); if( not serverPoints[ serial ] ) then serverPoints[ serial ] = 0 end serverPoints[ serial ] = serverPoints[ serial ] + 1 end end ) أما إذا كنت تبغى تحفظ النقاط على حساب اللاعب serverPoints={}; addEventHandler( "onPlayerChat" , root , function( msg ) if( msg == "نقطه" or msg == "نقطة" ) then if account and not ( isGuestAccount(account) ) then serverPoints[ getAccountName(account) ] = serverPoints[ getAccountName(account) ] or 0 + 1; else outputChatBox("You must have an account",source,255,255,255); end end end ) Edited May 11, 2019 by NX_CI Link to comment
Abdul KariM Posted May 11, 2019 Share Posted May 11, 2019 سويها بالاكونت داتا على طول بدون تيبلات وتعقيد 1 Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now