The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
|||
|
|||
![]()
You'd have to write a custom query for the database to pull all usernames and the fields and display them on the page. It's definitely NOT a template only hack. It wouldn't be that difficult to do.
You'd need a php page with the query, something like: Code:
$RPG = $DB_site->query("SELECT username, fieldX FROM users, usertextfield ORDER BY username DESC"); Code:
while($row=mysql_fetch_object($RPG)) { $who = $row->username; $rpgname = $row->fieldX; eval('$rpgbit .= "' . fetch_template('RPG_listbit') . '";'); } eval('print_output("' . fetch_template('RPGLIST') . '");'); I don't use table prefixes so the query above doesn't show that, if you have a large number of users you may also need a pagination code in there in order to not display all users on a single page. This is all off the top of my head, untested and without any warranty. This is only to give you an idea of what would be involved. |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|