Jump to content

Search Provider Support


MaydaX

Recommended Posts

Search provider support has been added to our website for searching the MBI and MSI.

 

Goto www.pbbans.com and follow the images below:

 

 

For IE7:

add_iesearchbar.png

 

 

For Firefox:

add_firefoxsearchbar.png

 

 

Thanks to AmCorp.it for making a version for PBBans.

Link to comment
Share on other sites

I was just wondering if code could be made to add a block to a website. Like the Check GUID or Server Block here-> http://www.pbbans.com/

 

 

<form method="post" action="http://www.pbbans.com/mbi.php">
<b>Check GUID at PBBans</b>
<br />
<input name="guid" type="text" maxlength="32" onFocus="if (this.value.substring(0,5)=='Enter') { this.value=''; }" value="Enter GUID" class="formitem">
<br />
<input type="hidden" name="action" value="12">
<b><span class="text-green-11">(8 or 32 characters)</span></b>
<br /><br />
<input type="submit" value="Check GUID" class="formitem">
</form>

Link to comment
Share on other sites

Thank you, Thank you. Very nice tools for those trying to run a league. But admins for a league always thirst for more. It is not easy trying to keep a clean league, with ZERO tolerance.

 

It seems Anti-cheat admins use the MPI for than anything else. I think I still have 2 wishes left, oh magic ones. Any way to add to google or web site? But yet keep privacy issues on the up side.

 

http://www.pbbans.com/mpi/index.php

Edited by EvilJohn
Link to comment
Share on other sites

MPI is restricted for SGA only, I believe.

 

 

Yes, but the code for the guid check on a web site takes me to my PBbans account. With my SGA permission level. When it shows the results of guid check.

Link to comment
Share on other sites

<form method="post" action="http://www.pbbans.com/mbi.php">
  <b>Check GUID at PBBans</b>
  <br />
  <input name="guid" type="text" maxlength="32" onFocus="if (this.value.substring(0,5)=='Enter') { this.value=''; }" value="Enter GUID" class="formitem">
  <br />
  <input type="hidden" name="action" value="12">
  <b><span class="text-green-11">(8 or 32 characters)</span></b>
  <br /><br />
  <input type="submit" value="Check GUID" class="formitem">
 </form>

 

This one?

 

Oke, I've had some time and I made this one:

http://www.wolfensteinitalia.com/pbbans.html

Check it out ;)

Below you can find the source that you can freely use:

 

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>PBBans</title>
<script language="JavaScript">
pic1= new Image(16,16); 
pic1.src="http://img174.imageshack.us/img174/7062/ajaxloadertq0.gif"; 
</script>
<script language="javascript">
var showing = false;

function loadingGUID() {
 var viols = document.getElementById("loading");
 if (viols.style.display == "none") {
viols.style.display = "block";
 } else 
 {
viols.style.display = "none";
 }  
}
</script>
<script language="javascript">
var showing = false;

function loadingSRV() {
 var viols = document.getElementById("loading2");
 if (viols.style.display == "none") {
viols.style.display = "block";
 } else 
 {
viols.style.display = "none";
 }  
}
</script>
<style type="text/css">
body{
font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font to use */
margin:0px;

}

.dhtmlgoodies_question{	/* Styling question */
/* Start layout CSS */
color:#FFF;
font-size:0.9em;
background-color:#317082;
width:430px;
margin-bottom:2px;
margin-top:2px;
padding-left:2px;
background-image:url('images/bg_answer.gif');
background-repeat:no-repeat;
background-position:top right;	
height:20px;

/* End layout CSS */

overflow:hidden;
cursor:pointer;
}
.dhtmlgoodies_answer{	/* Parent box of slide down content */
/* Start layout CSS */
border:1px solid #317082;
background-color:#E2EBED;
width:400px;

/* End layout CSS */

visibility:hidden;
height:0px;
overflow:hidden;
position:relative;

}
.dhtmlgoodies_answer_content{	/* Content that is slided down */
padding:1px;
font-size:0.9em;	
position:relative;
}
</style>
<script type="text/javascript">
var dhtmlgoodies_slideSpeed = 10;	// Higher value = faster
var dhtmlgoodies_timer = 10;	// Lower value = faster

var objectIdToSlideDown = false;
var dhtmlgoodies_activeId = false;
var dhtmlgoodies_slideInProgress = false;
function showHideContent(e,inputId)
{
if(dhtmlgoodies_slideInProgress)return;
dhtmlgoodies_slideInProgress = true;
if(!inputId)inputId = this.id;
inputId = inputId + '';
var numericId = inputId.replace(/[^0-9]/g,'');
var answerDiv = document.getElementById('dhtmlgoodies_a' + numericId);

objectIdToSlideDown = false;

if(!answerDiv.style.display || answerDiv.style.display=='none'){		
	if(dhtmlgoodies_activeId &&  dhtmlgoodies_activeId!=numericId){			
		objectIdToSlideDown = numericId;
		slideContent(dhtmlgoodies_activeId,(dhtmlgoodies_slideSpeed*-1));
	}else{

		answerDiv.style.display='block';
		answerDiv.style.visibility = 'visible';

		slideContent(numericId,dhtmlgoodies_slideSpeed);
	}
}else{
	slideContent(numericId,(dhtmlgoodies_slideSpeed*-1));
	dhtmlgoodies_activeId = false;
}	
}

function slideContent(inputId,direction)
{

var obj =document.getElementById('dhtmlgoodies_a' + inputId);
var contentObj = document.getElementById('dhtmlgoodies_ac' + inputId);
height = obj.clientHeight;
if(height==0)height = obj.offsetHeight;
height = height + direction;
rerunFunction = true;
if(height>contentObj.offsetHeight){
	height = contentObj.offsetHeight;
	rerunFunction = false;
}
if(height<=1){
	height = 1;
	rerunFunction = false;
}

obj.style.height = height + 'px';
var topPos = height - contentObj.offsetHeight;
if(topPos>0)topPos=0;
contentObj.style.top = topPos + 'px';
if(rerunFunction){
	setTimeout('slideContent(' + inputId + ',' + direction + ')',dhtmlgoodies_timer);
}else{
	if(height<=1){
		obj.style.display='none'; 
		if(objectIdToSlideDown && objectIdToSlideDown!=inputId){
			document.getElementById('dhtmlgoodies_a' + objectIdToSlideDown).style.display='block';
			document.getElementById('dhtmlgoodies_a' + objectIdToSlideDown).style.visibility='visible';
			slideContent(objectIdToSlideDown,dhtmlgoodies_slideSpeed);				
		}else{
			dhtmlgoodies_slideInProgress = false;
		}
	}else{
		dhtmlgoodies_activeId = inputId;
		dhtmlgoodies_slideInProgress = false;
	}
}
}



function initShowHideDivs()
{
var divs = document.getElementsByTagName('DIV');
var divCounter = 1;
for(var no=0;no<divs.length;no++){
	if(divs[no].className=='dhtmlgoodies_question'){
		divs[no].onclick = showHideContent;
		divs[no].id = 'dhtmlgoodies_q'+divCounter;
		var answer = divs[no].nextSibling;
		while(answer && answer.tagName!='DIV'){
			answer = answer.nextSibling;
		}
		answer.id = 'dhtmlgoodies_a'+divCounter;	
		contentDiv = answer.getElementsByTagName('DIV')[0];
		contentDiv.style.top = 0 - contentDiv.offsetHeight + 'px'; 	
		contentDiv.className='dhtmlgoodies_answer_content';
		contentDiv.id = 'dhtmlgoodies_ac' + divCounter;
		answer.style.display='none';
		answer.style.height='1px';
		divCounter++;
	}		
}	
}
window.onload = initShowHideDivs;
</script>
</head>

<body>
<div class="dhtmlgoodies_question" style="width: 401px; height: 19px">PBBans.com <b>Guid</b> Check</div>
<div class="dhtmlgoodies_answer" style="width: 400px; height: 139px">
<div><form method="post" action="http://www.pbbans.com/mbi.php">
<p align="center">
<b>Check GUID at PBBans</b>
<br />
<input name="guid" type="text" maxlength="32" onFocus="if (this.value.substring(0,5)=='Enter') { this.value=''; }" value="Enter GUID" class="formitem" />
<br />
<input type="hidden" name="action" value="12" />
<b><span class="text-green-11">(8 or 32 characters)</span></b>
<br /><br /></p><center><div id="loading" style="display:none;"><img src="http://img174.imageshack.us/img174/7062/ajaxloadertq0.gif" /></div>
<input type="submit" value="Check GUID" onclick="loadingGUID();" class="formitem" /></center><p></p>
</form></div>
</div>
<div class="dhtmlgoodies_question" style="width: 401px; height: 18px">PBBans.com <b>Server Streaming</b> Check</div>
<div class="dhtmlgoodies_answer">
<div>		<form name="searchserver" method="post" action="http://www.pbbans.com/msi.php">
	<p align="center"><b>Check Server Streaming at  PBBans<br />
	</b>
	<input name="searchdata" type="text" size="18" maxlength="21" onFocus="if (this.value.substring(0,6)=='Server') { this.value='' }" value="Server IP:Port" class="formitem" /><br />
	<input type="hidden" name="action" value="1" />
	<b><span class="text-green-11">(Ex 69.168.58.45:17567)</span></b><br />
<br /></p><center><div id="loading2" style="display:none;"><img src="http://img174.imageshack.us/img174/7062/ajaxloadertq0.gif" /></div>
<input type="submit" value="Check SERVER" onclick="loadingSRV();" class="formitem" /></center><p></p></form></div></div>
<div class="dhtmlgoodies_question" style="width: 401px; height: 17px">
Informations</div>
<div class="dhtmlgoodies_answer">
<div>
	Visit <a href="http://www.PBBans.com">www.PBBans.com</a> and join the 
	ultimate community against cheaters!<p>-
	<a href="http://www.pbbans.com/">Homepage</a><br />
	- <a href="http://www.pbbans.com/information.php">Informations Center</a><br />
	- <a href="http://www.pbbans.com/forums/">Forums</a></p></div>
</div>
</body>

</html>

 

Edited by AmCorp.it
Link to comment
Share on other sites

Very nice indeed. Going to use it. We are about to upgrade our forum boards, homepage, and CMS. Vb, Vb CMS have and are releasing new versions. So one of my admins will have to change the color codes. But thank you so much for sharing that. Its perfect, plus good advertising for PBbans.

 

 

 

 

 

 

 

Edit:Typo

Edited by EvilJohn
Link to comment
Share on other sites

Very nice indeed. Going to use it. We are about to upgrade our forum boards, homepage, and CMS. Vb, Vb CMS have and are releasing new versions. So one of my admins will have to change the color codes. But thank you so much for sharing that. Its perfect, plus good adversing for PBbans.

:lol:

I hope it's fine for PBBans staff.

Link to comment
Share on other sites

  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.