Jump to content

AYUDA CON ESTE SCRIPT QUE FALLA


Recommended Posts

Posted

MARCA EN DESBUGSCRIPT: line2 bad argment @ 'setTime' excepted number at argument 1, got nil

function syncRealTime(h, m) 
    setTime(h, m) 
    setMinuteDuration(60000) 
end 
addEvent("doSyncRealTime", true) 
addEventHandler("doSyncRealTime", getRootElement(), syncRealTime) 
addCommandHandler("hora",syncRealTime) 
  
function resourceStart() 
    local players = getElementsByType("player") 
    for i,player in ipairs(players) do 
        syncRealTime(player) 
    end 
end 
addEventHandler("onResourceStart", getResourceRootElement(getThisResource()), resourceStart) 
  
function playerJoin() 
    syncRealTime(source) 
end 
  
setTimer ( syncRealTime, 10000, 0 ) 
  
addEventHandler("onPlayerJoin", getRootElement(), playerJoin) 

Posted

syncRealTime requires 2 arguments h & m (hours & minutes) and the 2 times you use it only one is passed and it is player.

"If debugging is the process of removing software bugs, then programming must be the process of putting them in."

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