Jump to content

حل


Recommended Posts

سلام عليكم 

الحين مود الساعات الداتا حقه

  setElementData( 
                v, 
                "Time", 
                tostring( hour )..':'..tostring( min )..':'..tostring( sec ) 

)

ابي اتحقق ان ساعات اللاعب اكتر من 150 ساعة او اكثر

لاكن مو عارف اسويها

Link to comment
Just now, KemoEgypt said:

سلام عليكم 

الحين مود الساعات الداتا حقه

  setElementData( 
                v, 
                "Time", 
                tostring( hour )..':'..tostring( min )..':'..tostring( sec ) 

)

ابي اتحقق ان ساعات اللاعب اكتر من 150 ساعة او اكثر

لاكن مو عارف اسويها

getPlayerTime تقدر تستخدم يوزفل فنكشن حق نصور 

getElementData أو عن طريق

Link to comment
2 hours ago, KemoEgypt said:

@Master_MTA ابي الكود كل لما احد يكمل 24 ساعه بالتدريج

يعطيه فلوس

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

حاول و نساعدك... 

setTimer
getElementData
split
givePlayerMoney

 

Edited by #x1AhMeD,-09
Link to comment
4 minutes ago, KemoEgypt said:

انا كل ذا سهل بالنسبه لي,

بس فيه شيء مو سهل

اني اتحقق من الداتا

التحقق من الداتا بيصير كيف كل 24 ساعه ؟

مو 24 ساعه وفوق.

يبوي على ذي 

setTimer 

 

Link to comment
getPlayerTime = function ( player )
	local time = getElementData ( player, "Time" ) or "0:0:0"
	if time then
		return tonumber ( split ( time, ":" ) [1] ), tonumber ( split ( time, ":" ) [2] ), tonumber ( split ( time, ":" ) [3] )
	end
end

setTimer ( function ( )
	local data = getPlayerTime ( source )
	if data then
		givePlayerMoney ( source, 500 )
	end
end, 24*60, 0 )

ما ظبت اخوي

 

Link to comment
On ٤‏/٢‏/٢٠١٨ at 14:39, KemoEgypt said:

getPlayerTime = function ( player )
	local time = getElementData ( player, "Time" ) or "0:0:0"
	if time then
		return tonumber ( split ( time, ":" ) [1] ), tonumber ( split ( time, ":" ) [2] ), tonumber ( split ( time, ":" ) [3] )
	end
end

setTimer ( function ( )
	local data = getPlayerTime ( source )
	if data then
		givePlayerMoney ( source, 500 )
	end
end, 24*60, 0 )

ما ظبت اخوي

 

-- جرب دا ^^ --



function getPlayerTime ( Player )

local TimeData = getElementData(Player,'PlayTime') or '0:0';

if ( TimeData ) then
return tonumber(split(TimeData,':')[1]) , tonumber(split(TimeData,':')[2]);
end

end


setTimer ( function ( )
local data = getPlayerTime ( source )
if data then
givePlayerMoney ( source, 500 )
end
end, 86400000, 0)

Edited by MrKAREEM
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...