Search found 4 matches

by Turiel
Tue Aug 16, 2005 9:47 am
Forum: WarcraftRealms Developers
Topic: Anybody doing anything interesting?
Replies: 11
Views: 16377

Yeah, if their board username doesn't match their charname then nothing will show up. Also, the player has to be in a guild or else there won't be any data for him (since we get all our data from the guild CSV files available here).
by Turiel
Tue Aug 16, 2005 9:41 am
Forum: WarcraftRealms Developers
Topic: Anybody doing anything interesting?
Replies: 11
Views: 16377

function get_user_guildname($g_username) { if (!$g_username) return "Error #1"; $g_query = "select guildid from ss_players where CharName='$g_username'"; $g_result = mysql_query($g_query); if (mysql_num_rows($g_result) > 0) { $g_row = mysql_fetch_ro...
by Turiel
Mon Aug 15, 2005 9:30 am
Forum: WarcraftRealms Developers
Topic: Anybody doing anything interesting?
Replies: 11
Views: 16377

Well, something cool (imho :P) I've done is that on my PHPBB forums, I've crossreferenced the guild database to link player data with PHPBB user data. So on the left hand side, where PHPBB normally displays username, location,etc, I also display level class race and guild. So it looks kinda like the...
by Turiel
Sat Aug 13, 2005 1:39 pm
Forum: WarcraftRealms Developers
Topic: CSV File of All Guilds for a Realm
Replies: 3
Views: 16409

CSV File of All Guilds for a Realm

Hey, I was wondering if it would be possible to get a CSV export of a list of guilds for a particular realm? Something like GuildName,Faction,NumPlayers. I'm working on a realm community site and would like to have a list of all the guilds which I can show as a webpage. Actually, even just the top 5...