• 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!

Solved Conflict 2 Events in my server, help.

TibiaGameHost

Hello!
Joined
Feb 25, 2009
Messages
255
Reaction score
0
Location
Canadá
I have a problem in 2 events on my server, Among them are zombie event and team battle.

When the zombie event start a, giving this conflict with the TEAM BATTLE, example: start time of the zombie, and 2 minutes later a message appears that the team battle was not started because they had no players.

This having any conflict, the zombie starts, team battle and says that can not start because players do not have Oo

already checked all the storages are all different.

sorry fot put "LINUX" , is a LUA topic xD
 
Look for functions in the 2 mods with the same name, and change this name in one of the mods.
Be sure if you change the name of the funtion, you also change it on the places where it's being used.
 
XML:
function startEvent()
This function is in both scripts, change the name of this function in 1 of the scripts, also on the places where this function is being used.
 
No, just change the name of this function in one of the scripts, for example: startingEvent instead of startEvent.
They conflict because the function has the same name, so the script is looking for this function, and finds the other function from the other script because it has the same name.
 
Back
Top