Jump to content

simplynice

Members
  • Posts

    128
  • Joined

  • Last visited

Everything posted by simplynice

  1. i think not only flux will have problem but even other cp's that still depend on the level column will this be handle? i'd like to update im afraid flux won't support this.
  2. So i have this global_reg_val: PVPTotal so everytime someone killed someone it adds : PVPTotal = 1 + 1 etc.. Now how can i query this in sql as top 5 highest? I can't make it work though: How to get the name of the account_id //set @nb, query_sql("select account_id,name,str,value from `global_reg_value` WHERE str = 'PVPTotal' ORDER BY str DESC LIMIT 5", @name$, @value,@str ,@account_id); //mes "Hall Of Fame: TOP5"; //mes "1.("+@value[0]+")"; // Will return a person with the biggest fame value. //mes "2.("+@value[1]+")"; //mes "3.("+@value[2]+")"; //mes "4.("+@value[3]+")"; //mes "5.("+@value[4]+")"; //close;
  3. Thanks for the quick response.
  4. Are we required to patch all of this diff? http://sourceforge.net/apps/trac/rathena/changeset/15565/
  5. Top priority in User interface: User friendly website.
  6. You are running rathena with root privileges, it is not necessary. Is this harmful? unsafe? can you tell me what or how to fix this?
  7. Is the Miruku site down? http://miruku.rathena.org/
  8. I'd like to move this php code into the header under the main folder of flux: <h2><?php echo htmlspecialchars(Flux::message('ServerStatusHeading')) ?></h2> <p><?php echo htmlspecialchars(Flux::message('ServerStatusInfo')) ?></p> <?php foreach ($serverStatus as $privServerName => $gameServers): ?> <h3>Server Status for <?php echo htmlspecialchars($privServerName) ?></h3> <table id="server_status"> <tr> <td class="status"><?php echo htmlspecialchars(Flux::message('ServerStatusServerLabel')) ?></td> <td class="status"><?php echo htmlspecialchars(Flux::message('ServerStatusLoginLabel')) ?></td> <td class="status"><?php echo htmlspecialchars(Flux::message('ServerStatusCharLabel')) ?></td> <td class="status"><?php echo htmlspecialchars(Flux::message('ServerStatusMapLabel')) ?></td> <td class="status"><?php echo htmlspecialchars(Flux::message('ServerStatusOnlineLabel')) ?></td> </tr> <?php foreach ($gameServers as $serverName => $gameServer): ?> <tr> <th class="server"><?php echo htmlspecialchars($serverName) ?></th> <td class="status"><?php echo $this->serverUpDown($gameServer['loginServerUp']) ?></td> <td class="status"><?php echo $this->serverUpDown($gameServer['charServerUp']) ?></td> <td class="status"><?php echo $this->serverUpDown($gameServer['mapServerUp']) ?></td> <td class="status"><?php echo $gameServer['playersOnline'] ?></td> </tr> <?php endforeach ?> </table> <?php endforeach ?> Yes i already added it to header.php under the main folder. I can see the server status only if i click the server status at the sidebar menu. I'd like to show it as a default header in each page. Thanks!
  9. As i have seen this post: http://rathena.org/board/tracker/issue-5259-3rd-class-skills/ i was wondering if anyone can give me any ETA of this release? thanks and sorry to bother you.
  10. I see, i think it will overwrite everything. Thanks for the reply Gepard.
  11. This is just a simple question: Im using Tortoise SVN to get al the files here: https://rathena.svn.sourceforge.net/svnroot/rathena/ if i'll update using Tortoise SVN does this means all of my custom src mod will be removed also? Sorry to bother you but I always use Pre compiled server that's the reason why. LOL
  12. Hey sir calciumkid, can you upload or make a grf of your data folder? i can't seem to repack it using grf factory and grf builder. this is my 15th try.
  13. i'd say you should run a query in your SQL something like SELECT from * tbl_storage,tbl_inventory where cards has slot [2]. Not literally as that but i don't want to get into deep coding though it's not that deep.
  14. @hatake It's like a microsoft word. You type, save, edit and delete. I don't know if it's supports HTML,CSS if it is then good.
  15. Wrong. None of you got my idea. Seeing a bunch of names below is not so necessary and i'm not complaining about it it's just that it has nothing to do with the community and the default should be collapsed names.
  16. simplynice

    Php Math

    Used the SQL query sum.
×
×
  • Create New...