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 | Free Bingo Tournament 24/24 | No Luck Needed Bingo


No Deposit Casino Bonus Forum Index » Contests!
Goto page Previous  1, 2, 3, 4, 5 ... 14, 15, 16  Next
Post new topic Reply to topic
Author Message
(No subject)
TDTAT
Moderator

Joined: 11 Mar 2006
Posts: 103449
Likes: 49038
Location: Gambleville
3350071.10 NLN Dollars
Tournament Dollars


globe.png

Offline View user's profile Send private message globe.png
PostPosted:11.05.2009, 22:25 Reply with quoteBack to top

NLNLoni, Good Luck
_________________
Image

Offline View user's profile Send private message  
(No subject)
Age: 112
Joined: 23 Apr 2009
Posts: 417
Likes: 29
Location: here behind my computer screen peekaboo
444657.00 NLN Dollars
Tournament Dollars


australia.png

Offline View user's profile Send private message australia.png
PostPosted:12.05.2009, 03:32 Reply with quoteBack to top

« NLNLoni » wrote:
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['card_num'+i].out.text= _root.card_numbersb[card_numb];
//trace(_root.card_numbers[card_num]);
_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['card_num'+i].out.text= _root.card_numbersi[card_numi];
//trace(_root.card_numbers[card_num]);
_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['card_num'+i].out.text= _root.card_numbersn[card_numn];
//trace(_root.card_numbers[card_num]);
_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['card_num'+i].out.text= _root.card_numbersg[card_numg];
//trace(_root.card_numbers[card_num]);
_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['card_num'+i].out.text= _root.card_numberso[card_numo];
//trace(_root.card_numbers[card_num]);
_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['pccard_num'+z].out.text= _root.pccard_numbersb[pccard_numb];
//trace(_root.pccard_numbers[pccard_num]);
_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['pccard_num'+z].out.text= _root.pccard_numbersi[pccard_numi];
//trace(_root.pccard_numbers[pccard_num]);
_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['pccard_num'+z].out.text= _root.pccard_numbersn[pccard_numn];
//trace(_root.pccard_numbers[pccard_num]);
_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['pccard_num'+z].out.text= _root.pccard_numbersg[pccard_numg];
//trace(_root.pccard_numbers[pccard_num]);
_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['pccard_num'+z].out.text= _root.pccard_numberso[pccard_numo];
//trace(_root.pccard_numbers[pccard_num]);
_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[ball_num]!=undefined){
_root.ball_mc.out.text= _root.ball_numbers[ball_num];

rightnumber = _root.ball_mc.out.text;
_root.gotright_array.push(rightnumber);
_root.display_mc["d" + rightnumber]=rightnumber;
_root.ball_numbers.splice(ball_num, 1);
}





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



if you can let me know I will repair it
thanks

Offline View user's profile Send private message  
(No subject)
Age: 112
Joined: 23 Apr 2009
Posts: 417
Likes: 29
Location: here behind my computer screen peekaboo
444657.00 NLN Dollars
Tournament Dollars


australia.png

Offline View user's profile Send private message australia.png
PostPosted:12.05.2009, 03:42 Reply with quoteBack to top

« TDTAT » wrote:
« xxPATTYxx » wrote:
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 Thumbup


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

Offline View user's profile Send private message  
(No subject)
TDTAT
Moderator

Joined: 11 Mar 2006
Posts: 103449
Likes: 49038
Location: Gambleville
3350071.10 NLN Dollars
Tournament Dollars


globe.png

Offline View user's profile Send private message globe.png
PostPosted:12.05.2009, 06:38 Reply with quoteBack to top

Mullac, I thought they were one price only too... Embarassed Maybe we could increase it to $5? I don't think it matters if everyone starts with the same
amount of cards.

_________________
Image

Offline View user's profile Send private message  
(No subject)
Age: 68
Joined: 26 Jul 2008
Posts: 234
Likes: 0
Location: cleveland
3301.00 NLN Dollars
Tournament Dollars


united_states.png

Offline View user's profile Send private message united_states.png
PostPosted:12.05.2009, 07:17 Reply with quoteBack to top

Sad cant get anywhere lose every game to compurter cant get a decent score Sad
Offline View user's profile Send private message  
Re: Free Bingo Tournament | No Luck Needed Bingo | Win $35 F
TDTAT
Moderator

Joined: 11 Mar 2006
Posts: 103449
Likes: 49038
Location: Gambleville
3350071.10 NLN Dollars
Tournament Dollars


globe.png

Offline View user's profile Send private message globe.png
PostPosted:12.05.2009, 08:14 Reply with quoteBack to top

Less than 8 hours left to play your 50 cards! Good Luck
« TDTAT » wrote:
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.
Image
Image
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
Image

_________________
Image

Offline View user's profile Send private message  
(No subject)
TDTAT
Moderator

Joined: 11 Mar 2006
Posts: 103449
Likes: 49038
Location: Gambleville
3350071.10 NLN Dollars
Tournament Dollars


globe.png

Offline View user's profile Send private message globe.png
PostPosted:12.05.2009, 09:07 Reply with quoteBack to top

Plenty of time to play 50 cards! 064
_________________
Image

Offline View user's profile Send private message  
(No subject)
Age: 74
Joined: 12 Oct 2006
Posts: 51
Likes: 13
4450.00 NLN Dollars
Tournament Dollars


globe.png

Offline View user's profile Send private message globe.png
PostPosted:12.05.2009, 09:21 Reply with quoteBack to top

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 Very Happy SO I CAN RUSH RIGHT OVER HERE

CONGRATS TO THE WINNER - MAY YOUR WINNING MULTIPLY

Offline View user's profile Send private message  
(No subject)
TDTAT
Moderator

Joined: 11 Mar 2006
Posts: 103449
Likes: 49038
Location: Gambleville
3350071.10 NLN Dollars
Tournament Dollars


globe.png

Offline View user's profile Send private message globe.png
PostPosted:12.05.2009, 09:26 Reply with quoteBack to top

« Puzzler354 » wrote:
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 Very Happy SO I CAN RUSH RIGHT OVER HERE

CONGRATS TO THE WINNER - MAY YOUR WINNING MULTIPLY


Thanks
THANKS! I think we will start a new bingo tournament when this one finishes, so check back tonight! WOW

_________________
Image

Offline View user's profile Send private message  
I'll just shut up from now on
Age: 70
Joined: 16 Jun 2008
Posts: 426
Likes: 224
Location: Las Vegas, NV
1079685.00 NLN Dollars
Tournament Dollars


united_states.png

Offline View user's profile Send private message united_states.png
PostPosted:12.05.2009, 10:36 Reply with quoteBack to top

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[/quote]

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!

Offline View user's profile Send private message  
(No subject)
TDTAT
Moderator

Joined: 11 Mar 2006
Posts: 103449
Likes: 49038
Location: Gambleville
3350071.10 NLN Dollars
Tournament Dollars


globe.png

Offline View user's profile Send private message globe.png
PostPosted:12.05.2009, 10:44 Reply with quoteBack to top

NLNLoni, No one is hostile!!! 064 Don't be silly!!! Laughing
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. Icon_pray

_________________
Image

Offline View user's profile Send private message  
(No subject)
Age: 74
Joined: 12 Oct 2006
Posts: 51
Likes: 13
4450.00 NLN Dollars
Tournament Dollars


globe.png

Offline View user's profile Send private message globe.png
PostPosted:12.05.2009, 10:52 Reply with quoteBack to top

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 Rolling Eyes

Can't Wait Until Next Tournament Starts And Having Fun Competing With My Friends and Fellow NLN'ers

Offline View user's profile Send private message  
(No subject)
TDTAT
Moderator

Joined: 11 Mar 2006
Posts: 103449
Likes: 49038
Location: Gambleville
3350071.10 NLN Dollars
Tournament Dollars


globe.png

Offline View user's profile Send private message globe.png
PostPosted:12.05.2009, 11:01 Reply with quoteBack to top

NLNLoni, It is no big deal.. we will just set the payout higher.. Thumbup

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

Mullac rocks! Jump Cool

_________________
Image

Offline View user's profile Send private message  
Re: Free Bingo Tournament | No Luck Needed Bingo | Win $35 F
TDTAT
Moderator

Joined: 11 Mar 2006
Posts: 103449
Likes: 49038
Location: Gambleville
3350071.10 NLN Dollars
Tournament Dollars


globe.png

Offline View user's profile Send private message globe.png
PostPosted:12.05.2009, 13:07 Reply with quoteBack to top

Less than 3 hours left to play your 50 cards! Good Luck
« TDTAT » wrote:
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.
Image
Image
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
Image

_________________
Image

Offline View user's profile Send private message  
(No subject)
TDTAT
Moderator

Joined: 11 Mar 2006
Posts: 103449
Likes: 49038
Location: Gambleville
3350071.10 NLN Dollars
Tournament Dollars


globe.png

Offline View user's profile Send private message globe.png
PostPosted:12.05.2009, 14:17 Reply with quoteBack to top

Less than 2 hours left to play! Good Luck
_________________
Image

Offline View user's profile Send private message  
Display posts from previous: