Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting > Code Gallery
FAQ Members List Calendar Today's Posts

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #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
 

Tags
ace, eval, functions, poker, pokereval


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 08:56 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.