Jump to content

Zezicla

Members
  • Posts

    121
  • Joined

  • Last visited

Everything posted by Zezicla

  1. Zezicla

    Help rsslib.php

    show me te fix i got the same problem
  2. http://hercules.ws/board/blog/1/entry-73-memory-slasher-is-in-town/ edit : this too ? https://github.com/HerculesWS/Hercules/commit/6f264513874c80b912f47dbad1ec0347c67534e7
  3. how you made it css anyway ?
  4. y i would make this option for any no need bullets/shurikans/arros/cannon balls etc etc
  5. so i whant a 2-2 bg and a 3th job bg same script diffrent classes
  6. its about langtype i thik its needs to be set on non kro or sakray i dont remmeber ><
  7. same script 1 for 2-2 and 1 for 3th jobs ??
  8. Zezicla

    POM & GOM

    if some1 can fix this there is a free version of GOM and POM out
  9. let the friends list be account based and all chars have 40 spots for 40 accounts and so account is used and not char ?? 40 can be more ofc
  10. Zezicla

    POM & GOM

    player and guild of month help me fix this this is guild <?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; ?> <?php else: ?> <li> <img class="gom" src="<?php echo $this->themePath('img/empty.bmp') ?>"/> </li> <li id="lbl" ><b>Guild: </b> rAthena</li> <li id="lbl" ><b>GM: </b> John Gerome Baldonado</li> <?php endif; ?> </ul> this is player <?php if (!defined('FLUX_ROOT')) exit; $query = "SELECT `char`.name as char_name, guild.name as guild_name FROM {$session->loginAthenaGroup->loginDatabase}.`char` "; $query .= "LEFT JOIN {$session->loginAthenaGroup->loginDatabase}.guild "; $query .= "ON {$session->loginAthenaGroup->loginDatabase}.`char`.char_id = {$session->loginAthenaGroup->loginDatabase}.guild.char_id "; $query .= "WHERE {$session->loginAthenaGroup->loginDatabase}.`char`.char_id = ? "; $sth = $session->loginAthenaGroup->connection->getStatement($query); $sth->execute(array($gtheme_config['char_id'])); $gtheme_pom = $sth->fetchAll(); //see gtheme/config.php ?> <ul id="pgom"> <?php if($gtheme_pom): ?> <li> <img class="pom" src="<?php echo $this->themePath('img/'.$gtheme_config['pom_image']) ?>"/> </li> <?php foreach($gtheme_pom as $row): ?> <li id="lbl" ><b>Name: </b> <?php echo ($row->char_name)? $row->char_name:'???' ?> </li> <li id="lbl" ><b>Guild: </b> <?php echo ($row->guild_name)? $row->guild_name:'???' ?></li> <?php endforeach; ?> <?php else: ?> <li> <img src="<?php echo $this->themePath('img/pom.gif') ?>"/> </li> <li id="lbl" ><b>Name: </b> John Gerome Baldonado </li> <li id="lbl" ><b>Guild: </b> rAthena</li> <?php endif; ?> </ul> how to let this work instead of just the preassingd and the news page i cant install cms as we got alrdy how to fix the next newspage?? <?php if (!defined('FLUX_ROOT')) exit; $title = Flux::message('NewsPage'); $news = Flux::config('FluxTables.NewsTable'); if(!$news){ echo '<p class="red">WARNING: FluxCMS is not Installed! Please download it in rathena.org</p>'; }else{ $sql = "SELECT * FROM {$server->loginDatabase}.$news ORDER BY id DESC"; $sth = $server->connection->getStatement($sql); $sth->execute(); $news = $sth->fetchAll(); } ?> <table cellpadding="20" cellspacing="10"> <?php if($news): ?> <?php foreach($news as $nrow):?> <tr> <td class="title"> <b> <a href="<?php echo $this->url('news','view') ?>"> <?php echo $nrow->title?> </a> </b><br/> <span class="author">Posted by: <strong><?php echo $nrow->author ?></strong></span> </td> <td class="date"><?php echo date('d-m-Y',strtotime($nrow->created))?></td> </tr> <?php endforeach; ?> <?php else: ?> <p>No News has been added.</p> <?php endif; ?> </table>
  11. themon could you mby post your whole packet.db ? + changing into db ver 46 and the packet db let 2014-02-05bRagexe.exe work ? thats wow
  12. i asked if we still had 3th job base and trans but we have
  13. i have alot old files witch have base and trans 3th job guess i alrdy found out we DO
  14. nice i got the new rev take care on the n1 job how about fix the iussue i have with _re db's ? plz
  15. thnx but nothing there some1 knows how to change the item_db/item_db2 mob_db/mob_db2 into item_db_re/item_db2_re etc ? i temporly fixed this by renaming the _re to example item_db db's + import them but i need flux to go read the _re other then this
  16. i use _re sql files and server how to get this at fluxcp ?
×
×
  • Create New...