Register for your free account! | Forgot your password?

You last visited: Today at 23:10

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Kopf oder Zahl spielen

Discussion on Kopf oder Zahl spielen within the General Gaming Discussion forum part of the General Gaming category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jul 2005
Posts: 82
Received Thanks: 2
Hallo Leute,

Ich kenne leider keinen Bug oder ähnliches für dieses Kopf oder Zahl Spiel im Jailhouse. Hab da schon 5M verballert kennt jemand zufällig ein Bug oder sowas ähnlich so das man weiss wann man gewinnt oder verliert ? hab 100 Testspiele mit 10 Cr gemacht aber immer ne andere reihenfolge.Wisst ihr dazu vieleicht nen kleinen trick ?
Check_One is offline  
Old 09/02/2005, 23:10   #2
 
elite*gold: 0
Join Date: Feb 2005
Posts: 141
Received Thanks: 4
there is no pattern.. here is the LUA script

Code:
function DIALOG()

NODE(0)
  SAY("Hey you! Up for a quick game?")
  ANSWER("Sure, if you got money to give away...", 1)
  ANSWER("Nah, leave me alone!", 99)

NODE(1)
  SAY("Good. We play pitch-and-toss. You know the rules?")
  ANSWER("Don't try to teach a fish how to swim. Lets get started!", 2)
  ANSWER("Uh, I don't think so...", 3)

NODE(2)
  SAY("Hehe, you don't look like a fish to me...")
  ANSWER("What a funny guy...", 4)

NODE(3)
  SAY("Of course not! Why is it always me... nevermind. It's quite simple. You bet on heads or tails, i throw the coin, if your bet is topside, you get twice your stake, if it's downside, you loose. Any questions?")
  ANSWER("No. Thanks for the explanation!", 4)

NODE(4)
  SAY("OK, lets get started. What's your stake?")
  ANSWER("10 NC", 10)
  ANSWER("100 NC", 20)
  ANSWER("1000 NC", 30)
  ANSWER("10000 NC", 40)
  ANSWER("100000 NC", 50)
  ANSWER("1000000 NC", 60)

NODE(10)
  TAKEMONEY(10)
  if (result == 1) then
   SAY("Good. Heads or tails?")
   ANSWER("Heads", 11)
   ANSWER("Tails", 12)
  else
   SAY("Yeah, I am always playing with money that i don't have too... while juggling chickens with my left and knitting with my right. Get lost!")
   ENDDIALOG()
  end

NODE(11)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 13)
  else
   ANSWER("Aaaaaaaaaaaaand...", 15)
  end

NODE(12)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 14)
  else
   ANSWER("Aaaaaaaaaaaaand...", 16)
  end

NODE(13)
  GIVEMONEY(20)
  SAY("Heads. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(14)
  GIVEMONEY(20)
  SAY("Tails. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(15)
  SAY("Tails. Sorry, but that's life. Again?")
  ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)

NODE(16)
  SAY("Heads. Sorry, but that's life. Again?")
 ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)

NODE(20)
  TAKEMONEY(100)
if (result == 1) then
   SAY("Good. Heads or tails?")
   ANSWER("Heads", 11)
   ANSWER("Tails", 12)
  else
   SAY("Yeah, I am always playing with money that i don't have too... while juggling chickens with my left and knitting with my right. Get lost!")
   ENDDIALOG()
  end

NODE(21)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 23)
  else
   ANSWER("Aaaaaaaaaaaaand...", 25)
  end

NODE(22)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 24)
  else
   ANSWER("Aaaaaaaaaaaaand...", 26)
  end

NODE(23)
  GIVEMONEY(200)
 SAY("Heads. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(24)
  GIVEMONEY(200)
   SAY("Tails. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(25)
  SAY("Tails. Sorry, but that's life. Again?")
  ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)

NODE(26)
   SAY("Heads. Sorry, but that's life. Again?")
 ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)

NODE(30)
  TAKEMONEY(1000)
  if (result == 1) then
   SAY("Good. Heads or tails?")
   ANSWER("Heads", 31)
   ANSWER("Tails", 32)
  else
   SAY("Yeah, I am always playing with money that i don't have too... while juggling chickens with my left and knitting with my right. Get lost!")
   ENDDIALOG()
  end

NODE(31)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 33)
  else
   ANSWER("Aaaaaaaaaaaaand...", 35)
  end

NODE(32)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 34)
  else
   ANSWER("Aaaaaaaaaaaaand...", 36)
  end

NODE(33)
  GIVEMONEY(2000)
 SAY("Heads. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(34)
  GIVEMONEY(2000)
 SAY("Tails. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(35)
  SAY("Tails. Sorry, but that's life. Again?")
  ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)

NODE(36)
  SAY("Heads. Sorry, but that's life. Again?")
 ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)

NODE(40)
  TAKEMONEY(10000)
  if (result == 1) then
   SAY("Good. Heads or tails?")
   ANSWER("Heads", 41)
   ANSWER("Tails", 42)
  else
   SAY("Yeah, I am always playing with money that i don't have too... while juggling chickens with my left and knitting with my right. Get lost!")
   ENDDIALOG()
  end

NODE(41)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 43)
  else
   ANSWER("Aaaaaaaaaaaaand...", 45)
  end

NODE(42)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 44)
  else
   ANSWER("Aaaaaaaaaaaaand...", 46)
  end

NODE(43)
  GIVEMONEY(20000)
 SAY("Heads. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(44)
  GIVEMONEY(20000)
  SAY("Tails. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(45)
 SAY("Tails. Sorry, but that's life. Again?")
  ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)

NODE(46)
 SAY("Heads. Sorry, but that's life. Again?")
 ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)

NODE(50)
  TAKEMONEY(100000)
  if (result == 1) then
   SAY("Good. Heads or tails?")
   ANSWER("Heads", 51)
   ANSWER("Tails", 52)
  else
   SAY("Yeah, I am always playing with money that i don't have too... while juggling chickens with my left and knitting with my right. Get lost!")
   ENDDIALOG()
  end

NODE(51)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 53)
  else
   ANSWER("Aaaaaaaaaaaaand...", 55)
  end

NODE(52)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 54)
  else
   ANSWER("Aaaaaaaaaaaaand...", 56)
  end

NODE(53)
  GIVEMONEY(200000)
 SAY("Heads. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(54)
  GIVEMONEY(200000)
  SAY("Tails. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(55)
  SAY("Tails. Sorry, but that's life. Again?")
  ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)

NODE(56)
 SAY("Heads. Sorry, but that's life. Again?")
 ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)

NODE(60)
  TAKEMONEY(1000000)
  if (result == 1) then
   SAY("Good. Heads or tails?")
   ANSWER("Heads", 61)
   ANSWER("Tails", 62)
  else
   SAY("Yeah, I am always playing with money that i don't have too... while juggling chickens with my left and knitting with my right. Get lost!")
   ENDDIALOG()
  end

NODE(61)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 63)
  else
   ANSWER("Aaaaaaaaaaaaand...", 65)
  end

NODE(62)
  SAY("OK. I toss the coin!")
  RAND(2)
  if (result == 0) then
   ANSWER("Aaaaaaaaaaaaand...", 64)
  else
   ANSWER("Aaaaaaaaaaaaand...", 66)
  end

NODE(63)
  GIVEMONEY(2000000)
  SAY("Heads. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(64)
  GIVEMONEY(2000000)
  SAY("Tails. You win. Shit. I mean nice. Here's your prize! Again?")
  ANSWER("Yeah sure!", 4)
  ANSWER("No, thanks!", 99)

NODE(65)
  SAY("Tails. Sorry, but that's life. Again?")
  ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)

NODE(66)
  SAY("Heads. Sorry, but that's life. Again?")
 ANSWER("Sure, I have to make up the losses!", 4)
  ANSWER("Nah... I don't have any more money!", 99)
NODE(99)
  SAY("Then fuck off!")
  ENDDIALOG()

end
kayne is offline  
Old 09/03/2005, 12:52   #3
 
elite*gold: 0
Join Date: Jul 2005
Posts: 452
Received Thanks: 1
daraus kann man was schliessen?

erklär ma wie ich immer gewinne
Skansy is offline  
Old 09/03/2005, 13:43   #4
 
elite*gold: 0
Join Date: Jul 2005
Posts: 82
Received Thanks: 2
Hmm ich blick da nicht so richtig durch, muss man 10x mit 10 cr spielen und dann beim 11x 10cr head setzen und dann beim 12ten Tail ? Sieht mir auf dem Dialog nach einem gewinn system aus
Check_One is offline  
Old 11/24/2005, 08:51   #5
 
elite*gold: 0
Join Date: Nov 2005
Posts: 50
Received Thanks: 0
Hab mal versucht ein Muster zu finden. Also ca. 100 Spiele immer nur mit Zahl und das ganze immer wieder durch laufen lassen. Hin und wieder gab es sogar ein Muster aber nicht sehr oft. Hat da noch einer was versucht oder gibt es einen anderen Weg da was zu bekommen?

MFG Phoenix
Phoenix83 is offline  
Old 11/24/2005, 17:29   #6
 
elite*gold: 0
Join Date: Mar 2005
Posts: 1
Received Thanks: 0
guckt mal im wörterbuch nach was random bedeutet...oder sucht fröhlich weiter nach einem muster.
rayden is offline  
Old 11/24/2005, 21:39   #7

 
djpromo's Avatar
 
elite*gold: 20
Join Date: Jul 2004
Posts: 5,468
Received Thanks: 1,993
Quote:
RAND(2)
Hört sich doch ganz noch ner Random funktion an ?
djpromo is offline  
Old 12/01/2005, 11:25   #8
 
elite*gold: 0
Join Date: Sep 2005
Posts: 52
Received Thanks: 0
was l.t. nem kumpel recht gut funktioniert ist reingehen, einmal spielen, rauszonen, wieder rein und auf die zahl setzen die beim spiel zuvor gewonnen hat.

Das ganze raus <> rein sollte man dann relativ schnell machen.

Bin noch nicht dazu gekommen das zu überprüfen da ich ehrlich gesagt keine probleme hab in nc an geld zu kommen (auf normalen weg), deswegen übernehme ich auch keine haftung dafür das das zu 100% funzt, n versuch wäre es allerdings wert.
mean machine is offline  
Old 12/02/2005, 10:57   #9
 
elite*gold: 0
Join Date: Nov 2005
Posts: 29
Received Thanks: 0
man spiele so oft bis 3 mal kopf hintereinander kommt (oder zahl je nach dem )
dann ne mille auf das gegenteil setzten Funtzt zu 90 %

Mfg
kacknabbl is offline  
Old 12/02/2005, 13:00   #10
 
elite*gold: 0
Join Date: Nov 2005
Posts: 50
Received Thanks: 0
Quote:
Originally posted by kacknabbl@Dec 2 2005, 10:57
man spiele so oft bis 3 mal kopf hintereinander kommt (oder zahl je nach dem )
dann ne mille auf das gegenteil setzten Funtzt zu 90 %

Mfg
Ich glaub dann kann man auch einfach so spielen ohne bis 3 mal Kopf oder zahl zu warten
Phoenix83 is offline  
Old 12/02/2005, 13:04   #11
 
elite*gold: 20
Join Date: Jan 2005
Posts: 637
Received Thanks: 3
es ist zufall -.-
Imperium is offline  
Old 12/02/2005, 23:39   #12
 
elite*gold: 0
Join Date: Sep 2005
Posts: 34
Received Thanks: 0
wie erbährmlich , sie wollen nen npc bescheissen
serpensortia is offline  
Old 12/02/2005, 23:56   #13
 
elite*gold: 20
Join Date: Jan 2005
Posts: 637
Received Thanks: 3
was daran erbärmlich ? ich würde es auch machen wenn es ginge
Imperium is offline  
Reply


Similar Threads Similar Threads
[B]Battle.net acc mit 3 guten spielen[S]Elitegold oder psc
09/13/2010 - Trading - 11 Replies
Jo, Ich verkaufe/tausche hier mein battle.net acc Games: Diablo || Warcraft III®: The Frozen Throne StarCraft II®: Wings of Liberty Ja bietet mir psc an oder halt elitegold Screen:
Suche Leute die mit mir S6 anfangen oder schon S6 spielen
04/19/2010 - Metin2 - 4 Replies
Hallo , ich such Leute die auf S6 spielen oder anfangen wollen ..... Bitte hier mal reinschreiben
An alle die MyMetin2 spielen oder gespielt hatten xD
07/24/2009 - Metin2 Private Server - 7 Replies
Hab das hier zufällig im Forum von Mymetin2 gefunden :D Foreign players on notice: Foreign players on notice: The prohibition of all foreign-player game. We will visit daily to remove all of the IP with foreign gamers. We are not racial discrimination. We are not unwilling to let you play. Because you do not consciously use the game to disrupt the order of the accelerator. So do not blame, we do not kind. blocked account all your games. 关于对国外玩& #23478;的公告:
Hunter = T0 Kopf -> T3 Kopf
11/27/2006 - World of Warcraft - 2 Replies
Hätte gerne den T0 Kopf in den T3 Kopf vom Hunter verwandelt BIN EIN ORC MÄNNLICH HUNTER Hier Pics << T0 Kopf : http://www.goblinworkshop.com/items/beasts...alker s-cap.html mit name! T3 Kopf : http://game.pchome.net/00/04/34/33/hunter.jpg ohne name



All times are GMT +2. The time now is 23:10.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.