Thread: Poker Functions
View Single Post
  #1  
Old 01-01-2009, 08:02 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
Poker Functions

Well, haven't released something for a long time, so I guess it's time again?

I did have a little problem using the original pokereval() function for my poker game, so I decided I had to make my own!

Anyways, here's some examples of usage:

PHP Code:
function onCreated() {
  
join("pokerfunctions");
  
  
temp.table = {
    
"spades_ace""spades_king""spades_jack",
    
"diamonds_2""hearts_7"
  
};
  
  
temp.player1 = {"spades_queen""spades_10"};
  
temp.player2 = {"spades_3""spades_7"};
  
  
temp.eval1 pokereval(tableplayer1); // royalflush,A
  
temp.eval2 pokereval(tableplayer2); // flush,"A,K,J,7,3"
  
  //Lets find the winner? Eh?
  
  
echo(printableWinnerOutput({eval1eval2})); // Winner is: Player 1 with a royalflush

PHP Code:
function onCreated() {
  
join("pokerfunctions");
  
  
temp.table = {
    
"spades_ace""diamonds_king""hearts_10""diamonds_3",
    
"spades_4"
  
};

  
temp.player1 = {"hearts_2""spades_7"};
  
temp.player2 = {"spades_jack""diamonds_queen"};
  
  
temp.eval1 pokereval(tableplayer1); // highcard,7
  
temp.eval2 pokereval(tableplayer2); // straight,A
  
  //Lets find the winner? Eh?

  
  
echo(printableWinnerOutput({eval1eval2})); // Winner is: Player 2 with a straight


( If you need help or a better description of one of the functions, just say so in a post below or by PMing me)

Script: pokerfunctions v1.0.txt


Changelog:

1.0: - Initial release
__________________

Last edited by Chompy; 01-01-2009 at 08:18 PM..
Reply With Quote