Jump to content

Zezicla

Members
  • Posts

    121
  • Joined

  • Last visited

Posts posted by Zezicla

  1. or bether said how to make this into a drop down menu with choices ? just make it a drop down + 1 option beneath + example how to make the second would be fine

    <li><a href="<?php echo $this->url('main'); ?>"><img src="<?php echo $this->themePath('img/home.png'); ?>" /></a></li>
    
  2. how to let gm also be shown in the ranking and other stuff in fluxcp ?


    found this out i guess gotte test it out yet in application.php

     

    find

     

    'RankingHideGroupLevel'        => AccountLevel::LOWGM,        //
        'InfoHideZenyGroupLevel'    => AccountLevel::LOWGM,  

    change to this

    'RankingHideGroupLevel'        => AccountLevel::NORMAL,        //
        'InfoHideZenyGroupLevel'    => AccountLevel::NORMAL,  

  3.         <div id="wrapper">
                <div id="main">
                    <div class="spacer"></div>
                    <div id="menu">
                        <ul>
                            <li><a href="<?php echo $this->url('main'); ?>"><img src="<?php echo $this->themePath('img/home.png'); ?>" /></a></li>
                            <li><a href="<?php echo $this->url('main','info'); ?>"><img src="<?php echo $this->themePath('img/info.png'); ?>" /></a></li>
                            <li><a href="<?php echo $this->url('main','downloads'); ?>"><img src="<?php echo $this->themePath('img/downloads.png'); ?>" /></a></li>
                            <li><a href="http://test/forum" target="_blank"><img src="<?php echo $this->themePath('img/forums.png'); ?>" /></a></li>
                            <li><a href="<?php echo $this->url('donate'); ?>"><img src="<?php echo $this->themePath('img/donate.png'); ?>" /></a></li>
                            <li><a href="<?php echo $this->url('account'); ?>"><img src="<?php echo $this->themePath('img/account.png'); ?>" /></a></li>
                            <li class="clear"></li>
                        </ul>
                    </div>
    

    i whanne add all links flux cp has need this as drop down with 1 example or more the rest i can figure out myself i guess

     

    any possibily to make it animated ? or just show down same buttons but diffrent links and text in it ?

    some like this need to be added in it

    <li><a href="<?php echo $this->url('vote'); ?>"><img src="<?php echo $this->themePath('img/v4p.png'); ?>" onmouseover='this.src="<?php echo $this->themePath('img/v4p_hover.png'); ?>"' onmouseout='this.src="<?php echo $this->themePath('img/v4p.png'); ?>"' /></a></li>
    

    but it neeed ot be drop down :D

    thnx thx thnnxxx

  4. i think the error is in this lines

     

        <li id="lbl" ><b>Guild: </b> <?php echo ($row->name)?$row->name:'???' ?></li>
        <li id="lbl" ><b>GM: </b> <?php echo ($row->master)? $row->master:'???' ?></li>

     

    but ive some1 who knows this shit can look at it :D

  5. i got this somewhere i cant seem to get this working

    <?php
     if (!defined('FLUX_ROOT')) exit;
     
    
     $query  =  "SELECT name, master FROM {$session->loginAthenaGroup->loginDatabase}.guild WHERE guild_id = ? ";
     $sth = $session->loginAthenaGroup->connection->getStatement($query);
     $sth->execute(array($gtheme_config['guild_id']));
     $gtheme_gom = $sth->fetchAll();
     
    ?>
    
    <ul id="pgom">
    	<?php if($gtheme_gom): ?>
    	<?php foreach($gtheme_gom as $row): ?>
    	<li>
    		<img class="gom" src="<?php echo $this->emblem($row->guild_id) ?>" />
    	</li>
    	<li id="lbl" ><b>Guild: </b> <?php echo ($row->name)?$row->name:'???' ?></li>
    	<li id="lbl" ><b>GM: </b> <?php echo ($row->master)? $row->master:'???' ?></li>
    	<?php endforeach; ?>
    
  6. mby you mean this

     

    pron_mall,91,66,5    script    Bulletin Quest    837,{

     

    change the x and y and direction 91,66,5  

     

    and the name

    Bulletin Quest2    837,{ 

     

    pron_mall,92,66,5    script    Bulletin Quest  2   837,{

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.