advertisment

CLOSED | Free Bingo Tournament 24/24 | No Luck Needed Bingo

Welcome to the NoLuckNeeded.com Contest Corner! We give away hundreds of dollars, euros, and pounds every month and all you have to do to participate is post a message in the contest threads below. Don't be shy, we're friendly! If you are not a member, join today for free.

CLOSED

TDTAT
Posts: 109276
Joined: Mar 11, 2006 7:06 pm
Posted: May 12, 2009 3:25 am
NLNLoni, smile
Mullac
Posts: 417
Joined: Apr 23, 2009 11:12 pm
Posted: May 12, 2009 8:32 am
NLNLoni:
I started out LOVING this game, but as the cards showed me, I do believe that the win/loss ratio is NOT random! I find it almost mathematically impossible that I would lose over 15 cards in a row! Not by holding out to get multiple lines, NO! Whomever designed this software, and whomever sets the "random meter" should take a good look at the way the player just can not win! I'm a real good sport, but when I've played a game as long as I did today, and saw the pattern, I don't see the point of continuing. I can only handle losing so many times in a row before it gets really fraking old! GRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR!!!!


there is no win/loss ratio it wasn't designed like that
it's about as random as you can get on a computer playing a flash game using the random function built into flash Math.random()

11 times in the code it picks the numbers randomly
5 for the player
5 for the computer
1 for the balls drawn

here is the code that makes it work , please let me know where it's not random


root.ball_numbers = new Array('1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24','25',
'26','27','28','29','30','31','32','33','34','35','36','37','38','39','40','41','42','43','44','45','46','47','48','49','50',
'51','52','53','54','55','56','57','58','59','60','61','62','63','64','65','66','67','68','69','70','71','72','73','74','75');

_root.card_numbersb = new Array('1','2','3','4','5','6','7','8','9','10','11','12','13','14','15');

_root.card_numbersi = new Array('16','17','18','19','20','21','22','23','24','25','26','27','28','29','30');

_root.card_numbersn = new Array('31','32','33','34','35','36','37','38','39','40','41','42','43','44','45');

_root.card_numbersg = new Array('46','47','48','49','50','51','52','53','54','55','56','57','58','59','60');

_root.card_numberso = new Array('61','62','63','64','65','66','67','68','69','70','71','72','73','74','75');


_root.pccard_numbersb = new Array('1','2','3','4','5','6','7','8','9','10','11','12','13','14','15');


_root.pccard_numbersi = new Array('16','17','18','19','20','21','22','23','24','25','26','27','28','29','30');


_root.pccard_numbersn = new Array('31','32','33','34','35','36','37','38','39','40','41','42','43','44','45');

_root.pccard_numbersg = new Array('46','47','48','49','50','51','52','53','54','55','56','57','58','59','60');

_root.pccard_numberso = new Array('61','62','63','64','65','66','67','68','69','70','71','72','73','74','75');


function pick_cardnumb() {
for (var i = 1; i<=5; i++) {
var card_numb = Math.floor(Math.random()*(_root.card_numbersb.length));
_root.card_mc.out.text= _root.card_numbersb;
//trace(_root.card_numbers);
_root.card_numbersb.splice(card_numb, 1);

}
}
function pick_cardnumi() {
for (var i = 6; i<=10; i++) {
var card_numi = Math.floor(Math.random()*(_root.card_numbersi.length));
_root.card_mc.out.text= _root.card_numbersi;
//trace(_root.card_numbers);
_root.card_numbersi.splice(card_numi, 1);

}
}
function pick_cardnumn() {
for (var i = 11; i<=15; i++) {
var card_numn = Math.floor(Math.random()*(_root.card_numbersn.length));
_root.card_mc.out.text= _root.card_numbersn;
//trace(_root.card_numbers);
_root.card_numbersn.splice(card_numn, 1);

}
}
function pick_cardnumg() {
for (var i = 16; i<=20; i++) {
var card_numg = Math.floor(Math.random()*(_root.card_numbersg.length));
_root.card_mc.out.text= _root.card_numbersg;
//trace(_root.card_numbers);
_root.card_numbersg.splice(card_numg, 1);

}
}
function pick_cardnumo() {
for (var i = 21; i<=25; i++) {
var card_numo = Math.floor(Math.random()*(_root.card_numberso.length));
_root.card_mc.out.text= _root.card_numberso;
//trace(_root.card_numbers);
_root.card_numberso.splice(card_numo, 1);

}
}
trace("card_numb"+card_numb);

//___________________________________________________
function pick_pccardnumb() {
for (var z = 1; z<=5; z++) {
var pccard_numb = Math.floor(Math.random()*(_root.pccard_numbersb.length));
_root.pccard_mc.out.text= _root.pccard_numbersb;
//trace(_root.pccard_numbers);
_root.pccard_numbersb.splice(pccard_numb, 1);
}
}

function pick_pccardnumi() {
for (var z = 6; z<=10; z++) {
var pccard_numi = Math.floor(Math.random()*(_root.pccard_numbersi.length));
_root.pccard_mc.out.text= _root.pccard_numbersi;
//trace(_root.pccard_numbers);
_root.pccard_numbersi.splice(pccard_numi, 1);
}
}

function pick_pccardnumn() {
for (var z = 11; z<=15; z++) {
var pccard_numn = Math.floor(Math.random()*(_root.pccard_numbersn.length));
_root.pccard_mc.out.text= _root.pccard_numbersn;
//trace(_root.pccard_numbers);
_root.pccard_numbersn.splice(pccard_numn, 1);
}
}


function pick_pccardnumg() {
for (var z = 16; z<=20; z++) {
var pccard_numg = Math.floor(Math.random()*(_root.pccard_numbersg.length));
_root.pccard_mc.out.text= _root.pccard_numbersg;
//trace(_root.pccard_numbers);
_root.pccard_numbersg.splice(pccard_numg, 1);
}
}
function pick_pccardnumo() {
for (var z = 21; z<=25; z++) {
var pccard_numo = Math.floor(Math.random()*(_root.pccard_numberso.length));
_root.pccard_mc.out.text= _root.pccard_numberso;
//trace(_root.pccard_numbers);
_root.pccard_numberso.splice(pccard_numo, 1);
}
}



//_____________________________________________________________


function pick_ballnum() {




ball_drop.start(0,1);
var ball_num = Math.floor(Math.random()*(_root.ball_numbers.length));
if(_root.ball_numbers!=undefined){
_root.ball_mc.out.text= _root.ball_numbers;

rightnumber = _root.ball_mc.out.text;
_root.gotright_array.push(rightnumber);
_root.display_mc=rightnumber;
_root.ball_numbers.splice(ball_num, 1);
}





for (var z = 1; z<=25; z++) {
if(
_root.ball_mc.out.text == _root.pccard_mc.out.text ){
_root.equal_num=1;
_root.pccard_mc.gotoAndPlay(2);
}
}



if you can let me know I will repair it
thanks
.

.
Mullac
Posts: 417
Joined: Apr 23, 2009 11:12 pm
Posted: May 12, 2009 8:42 am
TDTAT:
xxPATTYxx:
How do you increase your bet, I dont see anywhere to bet up?? Thanks smile
Only gives me the option of betting 1. Is that right? Same for everyone else?


I think $1 is the only option at this time.. maybe we can change that later smile


you can increase your bet in bingo?
I thought you bought cards at a set price ,sorry I'm not a bingo expert
it is possible to add this feature if you want ,let me know ,it would be set
to some sort of maximum I'm thinking , perhaps at the start screen and when the buy card pop up shows there could be bet + and bet - buttons added , let me know what you want the maximum bet to be
.

.
TDTAT
Posts: 109276
Joined: Mar 11, 2006 7:06 pm
Posted: May 12, 2009 11:38 am
Mullac, I thought they were one price only too... smileops: Maybe we could increase it to $5? I don't think it matters if everyone starts with the same
amount of cards.
oldtimer
Posts: 234
Joined: Jul 26, 2008 3:55 pm
Posted: May 12, 2009 12:17 pm
smile cant get anywhere lose every game to compurter cant get a decent score smile
TDTAT
Posts: 109276
Joined: Mar 11, 2006 7:06 pm
Posted: May 12, 2009 1:14 pm
Less than 8 hours left to play your 50 cards! smile

TDTAT:
Free Bingo Tournament | No Luck Needed Bingo | Win $35 FREE MONEY
Free Bingo tournament to win real cash- NO DOWNLOAD Required!

Bingo Tournaments are free for all members. If you are not a member, join for free today.
NoLuckNeeded.com does not send email spam or trade/share/sell email addresses.


NoLuckNeeded.com's FREE Bingo Tournaments
Welcome to the 1st No Luck Needed Bingo Tournament!
Entry is free but the cash prizes are real!

Tournoi de machines a sous gratuit


Click the link below to play- You have 50 bingo cards available
Tournament End time is May 12 2009 21:00:00 GMT.

http://www.noluckneeded.com/cm_bingo_tournament.php
Cash Prize- US Dollar: 1st place: $35 USD
Rules:

Each member starts with 500.00 Tournament Dollars and has 50 cards to play.
http://www.noluckneeded.com/cm_bingo_tournament.php

The member to earn the most tournament dollars by the
tournament end will win the corresponding prize amount.
Cash prizes are paid by netspend visa transfer or paypal.
Players from any country are welcome. Winners paid in USD.

Règles:
Paris (France)
membre de tournoi commence avec 500$ Tournament dollars.
Vous aurez aussi lors de tournois de la fente commence.
Play à partir de ce lien:
http://www.noluckneeded.com/cm_bingo_tournament.php
TDTAT
Posts: 109276
Joined: Mar 11, 2006 7:06 pm
Posted: May 12, 2009 2:07 pm
Plenty of time to play 50 cards! smile
Puzzler354
Posts: 51
Joined: Oct 13, 2006 1:30 am
Posted: May 12, 2009 2:21 pm
JUST WANTED TO SAY THANKS AGAIN FOR A GREAT & FUN TOURNAMENT

I HOPE YOU HAVE THIS ONE OFTEN

PLEASE BE SURE TO E MAIL MEMBERS WHEN YOU DO smile SO I CAN RUSH RIGHT OVER HERE

CONGRATS TO THE WINNER - MAY YOUR WINNING MULTIPLY
TDTAT
Posts: 109276
Joined: Mar 11, 2006 7:06 pm
Posted: May 12, 2009 2:26 pm
Puzzler354:
JUST WANTED TO SAY THANKS AGAIN FOR A GREAT & FUN TOURNAMENT

I HOPE YOU HAVE THIS ONE OFTEN

PLEASE BE SURE TO E MAIL MEMBERS WHEN YOU DO smile SO I CAN RUSH RIGHT OVER HERE

CONGRATS TO THE WINNER - MAY YOUR WINNING MULTIPLY


smile
THANKS! I think we will start a new bingo tournament when this one finishes, so check back tonight! smile
NLNLoni
Posts: 426
Joined: Jun 16, 2008 5:59 am
Posted: May 12, 2009 3:36 pm
there is no win/loss ratio it wasn't designed like that
it's about as random as you can get on a computer playing a flash game using the random function built into flash Math.random()

11 times in the code it picks the numbers randomly
5 for the player
5 for the computer
1 for the balls drawn

here is the code that makes it work , please let me know where it's not random

if you can let me know I will repair it
thanks

Mullac, This has grown way out of perportion! I can feel the hostility through my monitor, so I will just stop bothering you wonderful people.

Be well.
You're just jealous because the voices talk to me!
TDTAT
Posts: 109276
Joined: Mar 11, 2006 7:06 pm
Posted: May 12, 2009 3:44 pm
NLNLoni, No one is hostile!!! smile Don't be silly!!! smile
The code just looks scary!

Anyway we will set the games so that everyone is happy.. that is the reason
we got these games to start with, I promise. smile
Puzzler354
Posts: 51
Joined: Oct 13, 2006 1:30 am
Posted: May 12, 2009 3:52 pm
Hello Everyone

I am usually quiet and keep my opinions to myself - but my lip is starting to hurt from bitting it

This is a FREE Tournament for a nice prize

Offered To Us By The Great People Here At NoLuckNeeded

Sooooooooo lighten up.... And Just Set Back And Enjoy

It is my opinion that NLN should be able to set the odds anyway they want

We Should Be Thanking NLN - Not Fussing At Them

Hey I Lost But I Sure Had A Great Time Trying

And If You Don't Like Way Tournament Is Set UP - DON'T PLAY IN IT smile

Can't Wait Until Next Tournament Starts And Having Fun Competing With My Friends and Fellow NLN'ers
TDTAT
Posts: 109276
Joined: Mar 11, 2006 7:06 pm
Posted: May 12, 2009 4:01 pm
NLNLoni, It is no big deal.. we will just set the payout higher.. smile

Guess what, here is a secret..... WE HAVE A NEW SLOT COMING! smile

Mullac rocks! smile smile
TDTAT
Posts: 109276
Joined: Mar 11, 2006 7:06 pm
Posted: May 12, 2009 6:07 pm
Less than 3 hours left to play your 50 cards! smile

TDTAT:
Free Bingo Tournament | No Luck Needed Bingo | Win $35 FREE MONEY
Free Bingo tournament to win real cash- NO DOWNLOAD Required!

Bingo Tournaments are free for all members. If you are not a member, join for free today.
NoLuckNeeded.com does not send email spam or trade/share/sell email addresses.


NoLuckNeeded.com's FREE Bingo Tournaments
Welcome to the 1st No Luck Needed Bingo Tournament!
Entry is free but the cash prizes are real!

Tournoi de machines a sous gratuit


Click the link below to play- You have 50 bingo cards available
Tournament End time is May 12 2009 21:00:00 GMT.

http://www.noluckneeded.com/cm_bingo_tournament.php
Cash Prize- US Dollar: 1st place: $35 USD
Rules:

Each member starts with 500.00 Tournament Dollars and has 50 cards to play.
http://www.noluckneeded.com/cm_bingo_tournament.php

The member to earn the most tournament dollars by the
tournament end will win the corresponding prize amount.
Cash prizes are paid by netspend visa transfer or paypal.
Players from any country are welcome. Winners paid in USD.

Règles:
Paris (France)
membre de tournoi commence avec 500$ Tournament dollars.
Vous aurez aussi lors de tournois de la fente commence.
Play à partir de ce lien:
http://www.noluckneeded.com/cm_bingo_tournament.php
TDTAT
Posts: 109276
Joined: Mar 11, 2006 7:06 pm
Posted: May 12, 2009 7:17 pm
Less than 2 hours left to play! smile