GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   hahahahahahahahahaha ---what's wrong w/my code? (https://gfy.com/showthread.php?t=185353)

uptheyingyang 10-12-2003 07:12 PM

hahahahahahahahahaha ---what's wrong w/my code?
 
hi-

i'm modifying a fairly common pic rotating script, trying to get it to fully randomize a list of 151 different "ads", but no such luck---of course i don't know hahahahahahahahahaha at all :(

it works, it just doesn't pull at random from the entire list.

here's what i've got in the beginning of part of the script, which i think is flawed:

var how_many_ads = 151;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (adhahahaha1) {
txt="xxxx xxxx xxxx xxxx xxxxx";
url="http://www.mydomain.com";
alt="click here for more";
banner="http://www.mydomain.com/banners/real_bulldyke_femme_sex001.jpg";
width="792";
height="520";
}
if (adhahahaha2) {

etc

etc


there are 151 different pix, when i set the "ad +=1;" it seems to pull at random from the beginning batch of pix, but not go completely through the list, if i set it to "ad +=30;" it pulls a different subset at random, "ad +=75;" will pull a different subset at random towards the end of the list.

i want the script to pull a random pic from the entire set of 151 with equal frequency.

what am i doing wrong?

thanks!

Penthouse_mike 10-12-2003 07:34 PM

You are using time in seconds, which can only be between 0-59.
You need a number to randomly fall between 1-151.

try

var randomnumber=Math.floor(Math.random()*151)

Spunky 10-12-2003 07:48 PM

Mine works well


var how_many_ads =(your number of ads);
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (adhahahaha1) {
txt="Your text";
url="http://www.whatever.com";
alt="Exclusive Vids And Pics Updated Weekly";
banner="http://www.whatever.gif";
width="468";
height="60";
}
if (adhahahaha2) {
txt="Blah Blah your text";
url="http://whatever.com";
alt="Naked Home Movies";
banner="http://www.whatever.gif";
width="468";
height="80";
}
and so on

uptheyingyang 10-12-2003 07:52 PM

you're a king Penthouse_mike, that did the trick!


thank you all!


All times are GMT -7. The time now is 03:28 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123