Search the Community
Showing results for tags 'holdem'.
Found 1 result
-
OO POKER - play to poker Texas Holdem in Arma
code34 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
OO POKER Lastest version: 0.1 by Code34 Description OO Poker is a class (object oriented) that permits to play texas holdem poker in A3. Like to Donate ? Donate with paypal Github: https://github.com/code34/oo_poker.altis Download: https://github.com/code34/oo_poker.altis/archive/master.zip Reference: http://forums.bistudio.com/showthread.php?167980-Object-Oriented-SQF-Scripting-and-Compiling Features: - Drawing of cards to several players Licence: Under Gpl, you can share, modify, distribute this script but don't remove the licence and the name of the original author Documentation: /* Author: code34 nicolas_boiteux@yahoo.fr Copyright (C) 2016-2018 Nicolas BOITEUX CLASS OO_POKER This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -------------------------------------------------------------------------------------------------------------- Function: _poker = ["new", ["nameofplayer1", "nameofplayer2"]] call OO_POKER; Create a new poker object Parameters: array containing the name of players Readme: /* Author: code34 nicolas_boiteux@yahoo.fr Copyright (C) 2016-2018 Nicolas BOITEUX CLASS OO_POKER This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ Create a main bus message between clients & server Usage: put the "oo_poker.sqf" and the "oop.h" files in your mission directory put this code into your mission init.sqf call compilefinal preprocessFileLineNumbers "oo_poker.sqf"; See example mission in directory: init.sqf Licence: You can share, modify, distribute this script but don't remove the licence and the name of the original author logs: 0.1 - OO POKER - first release Examples call compilefinal preprocessFileLineNumbers "oo_poker.sqf"; sleep 2; poker = ["new", ["code34", "computer", "Jamy"]] call OO_POKER; player addAction ["Distribute cards", {'distributeCards' call poker;}];