Did this for my site, which is SMF, but shouldn't be a problem, just changing the URL, as you have provided. Thoyugh this will only work with your MyBB member IDs are integrated with the Ajax Chat Member IDs
+ '<li><a href="javascript:ajaxChat.insertMessageWrapper(\'/describe '
Add BEFORE
+ '<li><a target="_blank" href="http://scribblehub.com/member.php?action=profile&uid=' + userID + '">' + this.lang['userMenuProfileView'] + '</a></li>'
userMenuProfileView: 'View User Profile',
Thank you so much for you reply. I have done as you asked, but unfortunately, when I attempt to click on a users name in the chatroom, I get the following error.
getUserNodeStringItems: function(encodedUserName, userID, isInline) { var menu; if(encodedUserName !== this.encodedUserName) { menu = '<li><a href="javascript:ajaxChat.insertMessageWrapper(\'/msg ' + encodedUserName + ' \');">' + this.lang['userMenuSendPrivateMessage'] + '</a></li>' + '<li><a target="_blank" href="http://scribblehub.com/member.php?action=profile&uid=' + userID + '">' + this.lang['userMenuProfileView'] + '</a></li>' + '<li><a href="javascript:ajaxChat.insertMessageWrapper(\'/describe ' + encodedUserName + ' \');">' + this.lang['userMenuDescribe'] + '</a></li>' + '<li><a href="javascript:ajaxChat.sendMessageWrapper(\'/query ' + encodedUserName + '\');">' + this.lang['userMenuOpenPrivateChannel'] + '</a></li>' + '<li><a href="javascript:ajaxChat.sendMessageWrapper(\'/query\');">' + this.lang['userMenuClosePrivateChannel'] + '</a></li>' + '<li><a href="javascript:ajaxChat.sendMessageWrapper(\'/ignore ' + encodedUserName + '\');">' + this.lang['userMenuIgnore'] + '</a></li>';
To this:
getUserNodeStringItems: function(encodedUserName, userID, isInline) { var menu; if(encodedUserName !== this.encodedUserName) { menu = '<li><a href="javascript:ajaxChat.insertMessageWrapper(\'/msg ' + encodedUserName + ' \');">' + this.lang['userMenuSendPrivateMessage'] + '</a></li>' + '<li><a target="_blank" href="http://scribblehub.com/member.php?action=profile&uid=' + userID + '">View Profile</a></li>' + '<li><a href="javascript:ajaxChat.insertMessageWrapper(\'/describe ' + encodedUserName + ' \');">' + this.lang['userMenuDescribe'] + '</a></li>' + '<li><a href="javascript:ajaxChat.sendMessageWrapper(\'/query ' + encodedUserName + '\');">' + this.lang['userMenuOpenPrivateChannel'] + '</a></li>' + '<li><a href="javascript:ajaxChat.sendMessageWrapper(\'/query\');">' + this.lang['userMenuClosePrivateChannel'] + '</a></li>' + '<li><a href="javascript:ajaxChat.sendMessageWrapper(\'/ignore ' + encodedUserName + '\');">' + this.lang['userMenuIgnore'] + '</a></li>';
Don't worry about the Eng file, you don't need it for this.
^ yeah, I considered hardcoding the language text, but perhaps he had members that use a different language, though he would have to modify all lang files lol.
Did you remove whatever changes you made to your language file? The earlier suggested changes were not needed unless you plan on using more than one language for your chat.