Jump to content
  • 0

online counter on homepage


Breaker

Question


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   0
  • Joined:  05/27/12
  • Last Seen:  

hi i was just wondering how to include the current online counter on the top of the header (like the most of the sites have now) im pretty new to all this stuff and dont know that much if its somehow teachable i would be very thankful of your replies

thanks in advance

Breaker

Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  185
  • Reputation:   26
  • Joined:  12/07/11
  • Last Seen:  

all you need is just a simple query.

make a file, name it count_player.php

<?php

$host  = 'localhost';
$username  = 'username';    // Your Mysql Username
$password  = 'password';    // Your Mysql Password
$db    = 'ragnarok'; // Database name


$link = mysql_connect($host, $username, $password) or die(mysql_error());
@mysql_select_db($db,$link);

$query = 'SELECT COUNT(char_id) AS players_online FROM `char` WHERE online > 0';
$result = mysql_query($query,$link);

mysql_close($link);

$arr = mysql_fetch_array($result);
$players_online = $arr['players_online'];

?>
<p><?php echo $players_online; ?></p>

on your header just put this line of code

<?php include('count_player.php'); ?>

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   0
  • Joined:  05/27/12
  • Last Seen:  

thank you that works totally fine! super fast reply here!

another question is (goes in the same direction) how can i filter out different playernames lets say make a pvp ladder and display the first 3 names and their guild emblems? or the same for woe castles, display which guilds holds the current woe castle and such!

thanks in advance

BREAKER

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  707
  • Reputation:   168
  • Joined:  01/26/12
  • Last Seen:  

Hi Breaker,

You need to have a custom in-game script which uses a custom SQL table to keep track of the kills. I know there's probably a way with the @ variable, but I'm not sure about the specifics.

But yeah, you need to have a custom PVP Script to keep counts of kills and then update the custom table with the kills. Then you will have to just create a MySQL Query for your PHP script to grab the first 3 after you place them in order by kills.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  79
  • Topics Per Day:  0.02
  • Content Count:  480
  • Reputation:   67
  • Joined:  08/28/12
  • Last Seen:  

Hey there,

I have a question.

Know everyone how can I include the online counter with "Afk / Vending" Status?

Example: 25 player are online and 6 of them has a shop opened. (@autotrade)

Like: User Online: 25 (6)

It would be very nice, if someone help me.

Thanks in advanced.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  410
  • Reputation:   29
  • Joined:  04/04/12
  • Last Seen:  

I have a question about this myself.

If you include your mysql info in the page, won't players be able to view the source of count_player.php and see it?

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10017
  • Reputation:   2369
  • Joined:  10/28/11
  • Last Seen:  

I have a question about this myself.

If you include your mysql info in the page, won't players be able to view the source of count_player.php and see it?

the content you write inside the Module Folder are invisible to other users....even when they try to view the source of HTML page / php page generated...the SQL Query / data will be hidden ... depend on how your HTML / Php show the data in your Theme folder.

the content is parsed from PHP from module folder into HTML in theme folder...

Link to comment
Share on other sites

×
×
  • Create New...