I didn't really managed to make it properly, but my hack made this add-ons work for vBulletin 4.1.5 Patch Level 1
in product-imsteamv4.0.2.xml
remove or put in comment (<!-- -->) the code below
Code:
<plugin active="1" executionorder="5">
<title>add online bit</title>
<hookname>online_query</hookname>
<phpcode><![CDATA[$hook_query_fields .= ", user.steam";]]></phpcode>
</plugin>
and if you want to display the steam icon in the online.php
you need to change this
Code:
$globaltemplates = array(
'forumdisplay_sortarrow',
'im_aim',
'im_icq',
'im_msn',
'im_yahoo',
'im_skype',
'WHOSONLINE',
'whosonlinebit'
);
by
Code:
$globaltemplates = array(
'forumdisplay_sortarrow',
'im_aim',
'im_icq',
'im_msn',
'im_yahoo',
'im_skype',
'im_steam',
'WHOSONLINE',
'whosonlinebit'
);
and at line 263 you need to change the sql query
Code:
SELECT user.username, session.useragent, session.location, session.lastactivity,
user.userid, user.options,
session.host, session.badlocation, session.incalendar, session.inthread,
user.aim, user.icq, user.msn, user.yahoo, user.skype,
by
Code:
SELECT user.username, session.useragent, session.location, session.lastactivity,
user.userid, user.options,
session.host, session.badlocation, session.incalendar, session.inthread,
user.aim, user.icq, user.msn, user.yahoo, user.skype, user.steam,
This is just a hack until maybe to author find a solution to the problem