Code: Select all
<Zone name="slasher">
<AutoReloadExtensions>true</AutoReloadExtensions>
<Extensions>
<extension name="slasher" className="slasher.as" type="script" />
</Extensions>
<Rooms>
<Room name="lobby" isPrivate="false" isTemp="false" autoJoin="true">
<Extensions>
<extension name="slasherGame" className="slasherGame.as" type="script" />
</Extensions>
</Room>
</Rooms>
<DatabaseManager active="true">
<Driver>com.mysql.jdbc.Driver</Driver>
<ConnectionString>jdbc:mysql://localhost:3306/slasher</ConnectionString>
<UserName>root</UserName>
<Password></Password>
<TestSQL><![CDATA[SELECT id FROM game LIMIT 1]]></TestSQL>
<MaxActive>10</MaxActive>
<MaxIdle>10</MaxIdle>
<OnExhaustedPool>grow</OnExhaustedPool>
<BlockTime>5000</BlockTime>
</DatabaseManager>
</Zone>If I reload it from the admin console it works, but it doesn't so automatically like the zone-level one does.
Is there a fix for this?