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

Fixed autoinstaller for OTLAL

zakius

Enter the Ninja!
Joined
Apr 30, 2009
Messages
2,635
Reaction score
65
Location
with Taiga
Original autoinstaller puts tag <actions> in each type of xml file.
I made one that makes it correct(only when installing creaturescripts serv crashes because of reload creatureevents bug)
To fix installer just change
Lua:
 if ae then
              file = [[<?xml version="1.0"?>
<actions>
]]..instal_f['tag']..'\n'..ae
to
Lua:
 if ae then
              file = [[<?xml version="1.0"?>
			  <]]..instal_f['module']..[[>
				]]..instal_f['tag']..'\n'..ae
in your index.lua(part of OTLAL, original credits to creators, more info on http://otland.net/f163/otal-open-tibia-advanced-lib-v-1-2-a-56771/)
 
Back
Top