Download GSPoker v1.0 *Compiled for A5.5+*
Download GSPoker Demo *Compiled in A5.51*
Use:
Free for all GameStudio projects without restrictions.
Disclaimer: If it blows up your machine it's not our fault.
Installation:
Unzip gspoker.wdl into your templates directory.
Unzip *.pcx into your templates directory.
Unzip GSpoker.dll into your work directory.
Publishing:
You will have to copy the DLL manually to your .cd directory when you publish.
Versions:
3/22/2003 -- v1.0 -- Released.
Usage:
See gspoker.wdl for a list of functions and their parameters.
Functions:
// set the starting money in the account with acct_int // returns 1 if error else returns 0.
dllfunction Poker_Create(acct_int);
// verbose_int = 1 show error messages // returns 1 if error else returns 0.
dllfunction Poker_Verbose(verbose_int);
// card_int [1..10] // returns 1 if error else returns 0.
dllfunction Poker_PaintCard(bmap,card_int);
// card int [1..10] // returns 1 if error else returns 0.
dllfunction Poker_SetCard(pan,card_int);
// btn int [1..10] // returns 1 if error else returns 0.
dllfunction Poker_SetBtn(pan,btn_int);
// hold int [1..10] // returns 1 if error else returns 0.
dllfunction Poker_SetHold(pan,hold_int);
// hold int [1..10] // returns 1 if error else returns 0.
dllfunction Poker_SetBetBtn(pan, bet_int);
// card int [1..10] // returns 1 if error else returns 0.
dllfunction Poker_CardClick(card_int);
// returns 1 if error else returns 0.
dllfunction Poker_BetSet(bet_int);
// fill pot_str with pot // returns 1 if error else returns 0.
dllfunction Poker_GetPot(pot_str);
// fill acct_str with acct // returns 1 if error else returns 0.
dllfunction Poker_GetAcct(acct_str);
// fill comp_bet_str with comp. bet // returns 1 if error else returns 0.
dllfunction Poker_GetCBet(comp_bet_str);
// fill info_str with poker info // returns 1 if error else returns 0.
dllfunction Poker_GetInfo(info_str);
// returns 1 if error else returns 0.
dllfunction Poker_DealClick();
// returns 1 if error else returns 0.
dllfunction Poker_FoldClick();
// returns 1 if error else returns 0.
dllfunction Poker_DrawClick();
// returns 1 if error else returns 0.
dllfunction Poker_CallClick();
// returns 1 if error else returns 0.
dllfunction Poker_PassClick();
// returns 1 if error else returns 0.
dllfunction Poker_BetClick();
// returns 1 if error else returns 0.
dllfunction Poker_RaiseClick();
// returns 1 if error else returns 0.
dllfunction Poker_Free();
|