[REQ] PSN ID in profile and postbit

Webdude

New Member
I am looking for the PSN ID in profile and postbit hack found on vbulletin please. Here is the link to it:

Code:
http://www.vbulletin.org/forum/showthread.php?t=186770

Thanks.
 
Installation

Will take less then 5 minutes.
Download the zip file and follow the instructions in there.

Instructions

Upload the PSN image icon to forum directory > images > misc.

Go onto admincp > Styles and Templates > Search in Templates

Then type modifyprofile into the search box and click search titles only. Then click find.

Once there do control + f to bring up the find box, and type the bellow in the box.


Code:
<td>$vbphrase[skype_name]<br />
<img src="$stylevar[imgdir_misc]/im_skype.gif" alt="" />
<input type="text" class="bginput" name="skype" value="$bbuserinfo[skype]" size="25" maxlength="32" dir="ltr" /></td>
<td>&nbsp;</td>

Once youve found this highlight this section and replace it with the following code.

Code:
<td>$vbphrase[skype_name]<br />
<img src="$stylevar[imgdir_misc]/im_skype.gif" alt="" />
<input type="text" class="bginput" name="skype" value="$bbuserinfo[skype]" size="25" maxlength="32" dir="ltr" /></td>
					
<td>PlayStation Network ID<br />
<img src="$stylevar[imgdir_misc]/im_psn.gif" alt="" />
<input type="text" class="bginput" name="psn" value="$bbuserinfo[psn]" size="25" maxlength="30" dir="ltr" /></td>
</tr>

Then go back to the Search in Templates (Go onto admincp > Styles and Templates > Search in Templates) and type in postbit or postbit_legacy (postbit is horrizontal leagacy is verticle).

Find this code

Code:
$post[skypeicon]

and add after

Code:
$post[psnicon]

Then go back to the Search in Templates (Go onto admincp > Styles and Templates > Search in Templates) and type in memberinfo.

Find this code

Code:
<td>$userinfo[yahooicon]</td>
<td><a href="#" dir="ltr" onClick="imwindow('yahoo', '$userinfo[userid]', 400, 200); return false;">$userinfo[yahoo]</a></td>

and add after

Code:
<td>$userinfo[psnicon]</td>
 <td><a href="#" onclick="openWindow('http://pid.us.playstation.com/user/$userinfo[psn].jpg', 260, 180); return false;">$userinfo[psn]</a></td>
 
Ok, ive done that and its working but when people go to view others profiles who have input their PSN, they now see them totally messed up, there is bits of the forum on it and it looks like a car crash.

Any ideas why?

See screenshot.
 
Back
Top