The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
GamerCards Block in Profile Sidebar and Postbit Details »» | |||||||||||||||||||||||||||||||||||||||||
GamerCards Block in Profile Sidebar and Postbit
Developer Last Online: Jun 2017
This hack is for vBulletin v4.x.x so it's NOT working with vB3.x.
----------- vB3.8.x compatible version: https://vborg.vbsupport.ru/showthread.php?t=250964 ----------- Info: This hack will add a new block in your user profile sidebar which contains user GamerCards and GamerIDs. Also GamerCards show up on the postbit too. (pop-up pages) Features: -Global enable/disable system. -Ability to change the block location in profile sidebar. -Can choose to show only GamerIDs and not GamerCards. -Ability to disable certain platform(s). -Can show GamerCards with relevant icons in the postbit. -This mod currently support the following platforms:
1) Navigate to AdminCP -> Plugins & Products -> Manage Products -> [Add/Import Product] -> Import XML product. 2) Upload the "gamericons" folder to your forum_dir/images/misc folder.* 3) Upload the "gamercard.php" to your forum's root folder. 4) You should create a "Single-Line Text Box" User Profile Field for each platform (if you don't have). (Help!) 5) Enter the field ID of each platform in vB Options -> "GamerCards Block Options" settings. * If you have a custom style, you have to copy the gamericons folder in the misc folder of each style! Upgrade: 1) Navigate to AdminCP -> Plugins & Products -> Manage Products -> [Add/Import Product] -> Import XML product. When you want to import the XML, set Allow Overwrite to 'Yes'. 2) Upload the "gamericons" folder to your forum_dir/images/misc folder. 3) Upload the "gamercard.php" to your forum's root folder. Notes: 1) For showing the PSN GamerCard, users must do the following: US: Login to us.playstation.com -> My Profile -> Portable ID -> Generate Portable ID. EU: Login to eu.playstation.com -> My Account -> My Portable ID -> Generate Portable ID. 2) For showing the Steam GamerCard, users must do the following: Login to steamcommunity.com -> Edit my Profile -> Copy the text from the "Custom URL" box into the Steam ID field. * Steam GamerCard is not official and generates from steamcard.com and steamprofile.com. Note: Steam postbit pop-up page now support real Steam ID which is: STEAM_X:X:XXXXX. 3) XFIRE mini profile & EU PSN images will be resized with mouse hover. 4) You can use these optional Regular Expressions (regex) for the fields:
v1.0 - Initial version (3rd January 2010) v1.1 - Added feature: new sidebar on right location (4th January 2010) v2.0 - GamerCards added to the postbit too! (6th January 2010) v2.5 - Better pop-ups with more options, added EU psn version, minor fix (7th January 2010) v2.6 - Added WOL display, fixed the EU PSN compatibility with right sidebar, minor bugs fixed (13th January 2010) v2.6.1 - W3C Validation fixed, better code (14th January 2010) v2.6.2 - Syntax error fixed (only gamercard.php changed) (18th January 2010) v2.6.3 - Now compatible with vB4.0.4 (23rd June 2010) v3.0 - Added Raptr.com support, Steam pop-up page updated, some codes changed (22nd September 2010) v3.0.1 - xbox.com links updated (31st October 2010) v3.0.2 - Steam pop-up links fixed (5th January 2011) v3.1 - Added user psn portable id selection menu, CSS data moved in to the <head>, Steam pop-up links fixed (15th May 2011) v3.1.1 - Xbox.com links were fixed, bug fixes (20th December 2012) Q: Why there are two versions for download? A: 'bc-gamercards-vb4-v3.0.2.zip' works only on vB4.0.7 and lower! (I do not support these vB versions anymore). 'bc-gamercards-vb4.1-v3.1.zip' works on vB4.1.x. NOTE: If you want to upgrade to v3.1 you MUST uninstall your current product first and then install it again because of new added DB codes. Please Mark As Installed if you use this modification. By the way this is my first hack, so I hope you like it.Download Now
Screenshots
Show Your Support
|
3 благодарности(ей) от: | ||
Anbieter, CoZmicShReddeR, HittingSmoke |
Comments |
#252
|
|||
|
|||
Great mod and I love the way it looks in the member profile screen.
One wish item from me. Currently, you have a single on/off option to turn off the gamer cards from being shown or not. Would it be terribly hard to have a toggle option for each one? On my board, some people have a PSN id listed but didn't do the portable gamer card thing. Therefore, they see a blank image in their profile. I want the XBox gamer card, etc to show. So, what I had to do was modify the code to comment out the PSN portable gamer card section so it doesn't load at all. |
#253
|
|||
|
|||
Microsoft seem to have been bastards and switched up all the URL's to Add Friends etc to JavaScript.b As a result, this "http://live.xbox.com/en-US/profile/FriendsMgmt.aspx?gt=blueice26&act=Add" has become buried in here somewhere:
Code:
<script type="text/javascript" language="javascript"> //<![CDATA[ function FriendCenterObject() { var fcAction = function(actionUrl, gamerTag, responseHandler) { responseHandler = responseHandler || function(response) { if (response.status != 0) { DisplayMessageDialog('Error', response.view, 'Close', null, MessageLevelType.Error); } else { DisplayMessageDialog('Message', response.view, 'Close', FriendCenter.RefreshContentAction); } } $.post(actionUrl, { 'gamerTag': gamerTag }, responseHandler); }; this.AcceptFriendRequest = function(gamerTag) { fcAction('/en-GB/FriendCenter/AcceptFriendRequest', gamerTag); return false; }; this.DeclineFriendRequest = function(gamerTag) { DisplayConfirmationDialog( 'Decline Friend Request', 'Are you sure you want to decline the friend request?', 'Yes', 'No', function() { fcAction('/en-GB/FriendCenter/DeclineFriendRequest', gamerTag); }, null, '', MessageLevelType.Warning); return false; }; this.CancelFriendRequest = function(gamerTag) { DisplayConfirmationDialog( 'Cancel Pending Request', 'Are you sure you want to cancel your pending friend request?', 'Yes', 'No', function() { fcAction('/en-GB/FriendCenter/CancelFriendRequest', gamerTag); }, null, '', MessageLevelType.Warning); return false; }; this.AddFriend = function(gamerTag) { gamerTag = $.trim(gamerTag); // trim leading and trailing whitespaces if (gamerTag != "") { fcAction('/en-GB/FriendCenter/SendFriendRequest', gamerTag); } return false; }; this.RemoveFriend = function(gamerTag) { DisplayConfirmationDialog( 'Remove', 'Are you sure you want to remove this player from your friends list?', 'Yes', 'No', function() { fcAction('/en-GB/FriendCenter/RemoveFriend', gamerTag); }, null, '', MessageLevelType.Warning); return false; }; this.BlockFriend = function(gamerTag) { DisplayConfirmationDialog( 'Block User', 'Are you sure you want to block this player from all further communications?', 'Yes', 'No', function() { fcAction('/en-GB/FriendCenter/BlockFriend', gamerTag); }, null, '', MessageLevelType.Warning); return false; }; this.RefreshContentAction = function(){}; }; var FriendCenter = new FriendCenterObject(); //]]></script> |
#254
|
|||
|
|||
Quote:
|
#255
|
|||
|
|||
Great mod! I have one little issue with it though. On my forums, I have users from both the US and EU PSN. I have a user profile field where they can choose their region, but I've been struggling to tie the option into your mod, as the global option results in either US or EU users to have broken popups. Can you recommend a solution?
|
#256
|
|||
|
|||
Wird nicht Angezeigt was mache ich falsch ?
|
#257
|
||||
|
||||
I have vb4.08. Gamercards no longer show up on the right sidebar of Profile. I switched it back over to the left.
|
#258
|
||||
|
||||
Sorry but I don't have active license right now to check v4.0.8.
|
#259
|
|||
|
|||
Well i have tried and tried but I cant get this to work lol - i know im being thick but i can't figure it out for steam...
I set my steam id to 5 which is the custom field (id) i created and saved the mod settings. I then goto edit my profile and find the relevant field. Now, what exactly goes in that field (an actual working string to enter would be good so I can see if the forum is showing it correctly before I try adding mine) |
#260
|
||||
|
||||
Anyone else having problems with 4.1.0 PL 2?
|
#261
|
||||
|
||||
yeah I think I fixed mine I see steamprofile isn't working correctly I just edited mine seems to be fine...
I went to edit style manager, edit templete, Postbit Template, postbit_gamercards_steam just replace with this code should work but back up original code if it doesn't work... Code:
<div class="block"> <div class="blockhead"> <span class="blockhead_info"><a class="textcontrol" href="javascript://" onclick="self.close()">{vb:rawphrase close_this_window}</a></span> <h2><img src="{vb:stylevar imgdir_misc}/gamericons/steam.png" width="16" height="16" alt="" /> {vb:rawphrase bc_gamercards_postbit_steamid}: <a href="http://steamcommunity.com/id/{vb:raw userinfo.steamid}" target="_blank">{vb:raw userinfo.steamid}</a></h2> </div> <div class="blockbody"> <div class="blockrow"> <div class="blockrow" align="center"><a href="http://steamcommunity.com/id/{vb:raw userinfo.steamid}" target="_blank"><img src="http://badges.steamprofile.com/profile/steam/{vb:raw userinfo.steamid}.png" alt="" border="0" /></a></div> <div class="blockrow" style="border-bottom:1px solid #c9c9c9; margin-bottom:5px; width:480px;"></div> <!-- <div class="blockrow"><a href="steam://friends/add/{vb:raw userinfo.steamid}" target="_blank">{vb:rawphrase bc_gamercards_add_x_friend, {vb:raw userinfo.steamid}}</a></div> --> <div class="blockrow"><a href="http://steamcommunity.com/id/{vb:raw userinfo.steamid}/friends" target="_blank">{vb:rawphrase bc_gamercards_x_friends_list, {vb:raw userinfo.steamid}}</a></div> <div class="blockrow"><a href="http://steamcommunity.com/id/{vb:raw userinfo.steamid}/games" target="_blank">{vb:rawphrase bc_gamercards_x_games_list, {vb:raw userinfo.steamid}}</a></div> <div class="blockrow">{vb:rawphrase bc_gamercards_x_status, {vb:raw userinfo.steamid}}<br /><img src="http://badges.steamprofile.com/profile/extended/steam/{vb:raw userinfo.steamid}.png" alt="" border="0" /></div> </div> </div> <div class="blockfoot"></div> </div> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|