• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Where can i change the boss timer in canary?

Which boss? Is it a boss spawning from the map? Or is it spawned via a script?
Do you mean the spawn time, or how long the player has to kill it?

When you create a support thread like this, please provide more information
 
Which boss? Is it a boss spawning from the map? Or is it spawned via a script?
Do you mean the spawn time, or how long the player has to kill it?

When you create a support thread like this, please provide more information
my bad, and yes, how long the player has to kill it, for example " urmalulu its default time is 20, but i been looking around the scrip to find where can i lower the time and make it like every 5 hours
 
Don´t know canary much but I found this in config.lua.dist

Lua:
bossDefaultTimeToFightAgain = 20 * 60 * 60 -- 20 hours

Just change it to

Code:
bossDefaultTimeToFightAgain = 5 * 60 * 60 -- 5 hours

I think that should work but I am not sure
 
Don´t know canary much but I found this in config.lua.dist

Lua:
bossDefaultTimeToFightAgain = 20 * 60 * 60 -- 20 hours

Just change it to

Code:
bossDefaultTimeToFightAgain = 5 * 60 * 60 -- 5 hours

I think that should work but I am not sure
and the bosslever.lua script is here, that reads that config line is here:
 
Don´t know canary much but I found this in config.lua.dist

Lua:
bossDefaultTimeToFightAgain = 20 * 60 * 60 -- 20 hours

Just change it to

Code:
bossDefaultTimeToFightAgain = 5 * 60 * 60 -- 5 hours

I think that should work but I am not sure
Then this should be the play I think. U can test it if you change the 20 to 1 for 1 hour if it works you knoq
 
Back
Top