how to delete dark mattery?

    This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

    • Russoll wrote:

      styles/templates/game/....tpl
      Thanks! I did it!

      How can I remove part of the "Officers" from techtree?

      I think you need to edit the file: page.techTree.default.tpl

      The file looks like this:



      Source Code

      1. {block name="title" prepend}{$LNG.lm_technology}{/block}
      2. {block name="content"}
      3. <table style="min-width:569px;width:569px;">
      4. {foreach $TechTreeList as $elementID => $requireList}
      5. {if !is_array($requireList)}
      6. <tr>
      7. <th colspan="2">{$LNG.tech.$requireList}</th>
      8. <th>{$LNG.tt_requirements}</th>
      9. </tr>
      10. {else}
      11. <tr>
      12. <td><a href="#" onclick="return Dialog.info({$elementID})"><img src="{$dpath}gebaeude/{$elementID}.{if $elementID >=600 && $elementID <= 699}jpg{else}gif{/if}" width="50" height="50"></a></td>
      13. <td><a href="#" onclick="return Dialog.info({$elementID})">{$LNG.tech.$elementID}</a></td>
      14. <td>
      15. {if $requireList}
      16. {foreach $requireList as $requireID => $NeedLevel}
      17. <a href="#" onclick="return Dialog.info({$elementID})"><span style="color:{if $NeedLevel.own < $NeedLevel.count}red{else}lime{/if};">{$LNG.tech.$requireID} ({$LNG.tt_lvl} {min($NeedLevel.count, $NeedLevel.own)}/{$NeedLevel.count})</span></a>{if !$NeedLevel@last}<br>{/if}
      18. {/foreach}
      19. {/if}
      20. </td>
      21. </tr>
      22. {/if}
      23. {/foreach}
      24. </table>
      25. {/block}
      Display All


      How to remove the function Officers?
    • I think it's this

      <td><a href="#" onclick="return Dialog.info({$elementID})"><img src="{$dpath}gebaeude/{$elementID}.{if $elementID >=600 && $elementID <= 699}jpg{else}gif{/if}" width="50" height="50"></a></td>
    • Russoll wrote:

      I think it's this

      <td><a href="#" onclick="return Dialog.info({$elementID})"><img src="{$dpath}gebaeude/{$elementID}.{if $elementID >=600 && $elementID <= 699}jpg{else}gif{/if}" width="50" height="50"></a></td>

      Unfortunately, when I change values

      <td> <a href="#" onclick="return Dialog.info({$elementID})"> <img src = "{$ dpath} gebaeude / {$ elementID}. {if $ elementID> = 616 && $ elementID <= 699} jpg {else} gif {/ if} "width =" 50 "height =" 50 "> </a> </ td>

      Only pictures, text texts disappear. Do you have another idea?