![]() |
![]() |
![]() |
||||
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() ![]() |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
![]() |
#1 |
Haters & Trolls SUCK!
Industry Role:
Join Date: Dec 2002
Location: Los Angeles, CA
Posts: 9,275
|
Banner Script for vBulletin :::
I'm looking for a rotating banner script for vBulletin.
Any suggestions? |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#2 |
I make pixels work
Industry Role:
Join Date: Jun 2005
Location: I live here...
Posts: 24,386
|
yea, php...
is it a simple rotator, or do you need stats n such?
__________________
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#3 |
Haters & Trolls SUCK!
Industry Role:
Join Date: Dec 2002
Location: Los Angeles, CA
Posts: 9,275
|
Don't need stats. Just need it to rotate the banners and when someone clicks on a banner, they're taken to that site. Can you email me the info? Contact is in my sig.
Thanks Deej!!! |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#4 | |
I make pixels work
Industry Role:
Join Date: Jun 2005
Location: I live here...
Posts: 24,386
|
Quote:
its rather easy to implement.
__________________
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#6 |
I make pixels work
Industry Role:
Join Date: Jun 2005
Location: I live here...
Posts: 24,386
|
right, if you want to rotate on numerous pages then add the text file so its easily changeable across the sites...
__________________
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#7 |
Confirmed User
Industry Role:
Join Date: May 2009
Location: Onboard an airplane around the globe
Posts: 3,733
|
^^ What they have already mentioned is absolutely easiest.
If you need stats and stuff, and will edit often, do look into Smart Spots, from Smart-scripts.com (smart thumbs and smart tube and so on). Easy to add and remove and allows for easy handling accross multiple domains and stuff. But that might be a bit more than you're asking for. But for $50, for an easy, out of the box ready solution, I think it's very fair.
__________________
---------------------------------------------------------------------------------- The truth is not affected by the beliefs, or doubts, of the majority. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#8 |
So Fucking Banned
Industry Role:
Join Date: Nov 2005
Location: Excercist image strickly for Halloween :=)
Posts: 633
|
Extremely simple :
Code:
<script type="text/javascript"> <!-- Begin rnd.today=new Date(); rnd.seed=rnd.today.getTime(); function rnd() { rnd.seed = (rnd.seed*9301+49297) % 233280; return rnd.seed/(233280.0); }; function rand(number) { var result = Math.ceil(rnd()*number); if (!result)result++; return result }; var ad_cnt1 = 2; var ad1 = rand(ad_cnt1); var link1; var adBanner1; var width1 var height1 if (ad1==1) { link1="URL HERE"; adBanner1="Banner image here"; width1="500"; height1="149"; alt1="Alt info here"; } if (ad1==2) { link2="URL HERE"; adBanner1="Banner image here"; width1="500"; height1="149"; alt1="Alt info here"; } document.write('<center><a href="' + link1 + '" target="_blank">'); document.write('<img src="' + adBanner1 + '" width=' + width1 + ' height=' + height1 + ' border=0 alt="' + alt1 + '"></a>'); document.write('</center>'); // End --> </SCRIPT> Simply rewrite the (ad1==1) to (ad1==2) / (ad1==3) and change the 'var ad_cnt1 = 2; ' to however many banners you decide to rotate. Styles and Templets Styles Manager Common Templates / Header Sincerely Deidre |
![]() |
![]() ![]() ![]() ![]() ![]() |