كذا
addEvent("giveDailySalary", true)
addEventHandler("giveDailySalary", root,
function( )
if isTimer( dTime ) then
outputChatBox( "#ff0000 Please Try Again After 24 Hours", source, 0, 0, 0, true )
return end
outputChatBox( "#00ffff Salary Was Successfully Taken ✔", source, 0, 0, 0, true )
givePlayerMoney( source, 9000 )
local dSTime = setTimer( function() end, 86400000, 1 )
local DetailsT = getTimerDetails( dSTime )
local dTime = DetailsT
local dSTime = setTimer( function() end, 86400000, 1 )
local DetailsT = getTimerDetails( dSTime )
local dTime = DetailsT
local pSerial = getPlayerSerial( source )
local check = executeSQLQuery ( 'SELECT * FROM WaitDay WHERE pSerial=?', pSerial )
if ( #check > 0 ) then return end
executeSQLQuery( "INSERT INTO WaitDay ( dTime, pSerial ) VALUES( ? , ? )", dTime, pSerial )
end
)