Post
by Shin Noir » Thu Sep 04, 2003 8:33 pm
Not that this post will go too far, but with /random and a good knowledge on basic programming you could write a poker program. Just some excerpts of variable arrays and such since I'm bored..
Player 1=a(1,*)
Player 2=a(2,*)
ect..
Player 1 Card 3 = a(1,3)
Player 2 Card 1 = a(2,1)
ect..
Player 1 card 3 is an ace
/varset a(1,3) 1
Player 2 card 5 is a king
/varset a(2,5) 13
ect..
Then just use a random generating formula for card dealing, and set up the old fashion poker game system, you got it.
Not that I recommend making something like this, I use this as an example so you can maybe see how it could be done.