• 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 [TFS 1.0] Duplicate move event found: 0

eduardojuniosm

Full Stack Web Developer
Joined
Dec 16, 2013
Messages
99
Reaction score
35
Location
Brazil
This is my movements.xml:
Code:
[...]
<!-- Custom's -->
   <!-- Other's -->
   <movevent event="StepIn" actionid="50001-50075" script="mensagens.lua"/>
   <movevent event="StepIn" actionid="16001;16003;16005;16007;16009;16011" script="inqstorage.lua"/>
   <movevent event="StepIn" actionid="16002;16004;16006;16008;16010;16012" script="inqteleport.lua"/>
   <movevent event="StepIn" actionid="17001-17075" script="teleportarea.lua"/>
   <movevent event="StepIn" actionid="18000" script="teleportback.lua"/>
   <movevent event="StepIn" actionid="18001;18003;18005;18007;18009;18011;18013;18015" script="tilestorage.lua"/>
   <movevent event="StepIn" actionid="18002;18004;18006;18008;18010;18012;18014;18016" script="teleport.lua"/>
   
   <!-- Arena -->
   <movevent event="StepIn" actionid="42360;42370;42380" script="arenagoblet.lua"/>
   <movevent event="StepOut" actionid="42360;42370;42380" script="arenagoblet.lua"/>
   <movevent event="StepIn" fromaid="42300" toaid="42309" script="arenaroom.lua"/>
   <movevent event="StepIn" actionid="42310" script="didarenalevel.lua"/>
   <movevent event="StepIn" fromaid="42321" toaid="42330" script="leavearena.lua"/>
   
   <!-- Zao -->
   <movevent event="StepIn" actionid="62325" script="stair.lua"/>
   
   <!-- Creating movements -->
   <movevent event="AddItem" tileitem="1" itemid="6356;6358;6360;6362" script="dough.lua"/>
   <movevent event="AddItem" tileitem="1" itemid="6278;6279" script="cake.lua"/>
   
   <!-- Events -->
   <movevent event="AddItem" tileitem="0" itemid="2109" script="football.lua"/>
</movements>
[...]
And that is what TFS returns:
Code:
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
[Warning - MoveEvents::addEvent] Duplicate move event found: 0
 
Registering movements with hyphens/semicolons does not work.

Examples:

Change
Code:
<movevent event="StepIn" actionid="17001-17075" script="teleportarea.lua"/>
to
Code:
<movevent event="StepIn" fromaid="17001" toaid="17075" script="teleportarea.lua"/>

___________________________________________________________

Change
Code:
<movevent event="StepIn" actionid="16001;16003;16005;16007;16009;16011" script="inqstorage.lua"/>
to
Code:
<movevent event="StepIn" actionid="16001" script="inqstorage.lua"/>
<movevent event="StepIn" actionid="16003" script="inqstorage.lua"/>
<movevent event="StepIn" actionid="16005" script="inqstorage.lua"/>
<movevent event="StepIn" actionid="16007" script="inqstorage.lua"/>
<movevent event="StepIn" actionid="16009" script="inqstorage.lua"/>
<movevent event="StepIn" actionid="16011" script="inqstorage.lua"/>
 
Back
Top