Jump to content
MakeWebGames

Multiplayer Texas Hold 'Em For Sale


seanybob

Recommended Posts

  • Replies 51
  • Created
  • Last Reply

Top Posters In This Topic

I decided to toss in all my casino mods as a bonus for this package. Now when you purchase Texas Hold 'Em, you also get Video Poker, Blackjack, Slots, and Roulette for free.

To those who have purchased it thus far, check your emails, you'll see a download link for these mods.

Link to comment
Share on other sites

I decided to toss in all my casino mods as a bonus for this package. Now when you purchase Texas Hold 'Em, you also get Video Poker, Blackjack, Slots, and Roulette for free.

To those who have purchased it thus far, check your emails, you'll see a download link for these mods.

That looks like an amazing Deal, good job on the modifications SeanyBob

Link to comment
Share on other sites

Me and a great friend one mine is planing on workings on a poker script , ill talk about it more when we get father in our process .
lol abit off topic there with your request for attention ~:P

Also again nice work seanybob and a nice new deal with all them mods .. hopefully you sell quite alot of them ..

Link to comment
Share on other sites

Me and a great friend one mine is planing on workings on a poker script , ill talk about it more when we get father in our process .

 

Why make one when Seanybob has created something Exceptional at a very reasonable price with Addons...

I dont know your coding style and forgive me if i speak out of term but seanybob is well respected as a script writer so you would have to make your mods 300% better than his for people to take notice..

No Offence by the way..

Link to comment
Share on other sites

Can i add a number 9 to my list of things to do :)

9 = Users can watch a table and chat but cant see cards only whats going into the pot..

OH and a 10 cos im on fire lol

10 = Add a friend from the pokerroom so you can fnid them instantly when they are in a game and join them...

Link to comment
Share on other sites

It is a "mccodes" mod :p lets keep it realistic >< lol lookin like pokerstars.net

what's next, the ability to play for real money?

 

ooooo......that may be an idea ;) lol

Your coming round to my way of thinking by the time seanybob has added our addons there wont be a need for MCC we may just aswell play poker lol

Link to comment
Share on other sites

I like this script so much i decided to do a bit of animation on the roulette wheel.

roulettewheel.gif

overwrite you exsisting roulettewheel.gif with the above...

As you can see its set for each board number so the flow is decent.. all i need to do now is add some kind of refresh so users dont have to click SPIN WHEEL and its done auto if that can be done...

and if you want heres a reversed version of the same wheel

roulettewheelrev.gif

Or if you want both animations in one then choose this..

eachway.gif

Link to comment
Share on other sites

Hey guys,

We've released some new updates to the Texas Hold 'Em mod.

First, the customizable features have been moved to a pokerconfig.php file. (They were in two different php pages, now they are easier to find/alter)

Secondly, we've added a view table option. User's are now able to watch a texas hold 'em game (that they aren't playing in), and/or check to see who's playing at a table before they join it.

Thirdly, we fixed a little bug that had to do with re-betting. If a user Raised a bet twice in one round, they would be forced to call their own bet as though they were the player to the left of them. Should be fixed now.

Link to comment
Share on other sites

  • 2 weeks later...

Thanks boogie ;)

Several updates to the mod released - for those who have purchased it, please check your emails ;)

This should be the last update released for a bit - most/all bugs should be fixed. This update also includes some code that is made solely to anticipate further bugs, and help the game proceed forward, fixing the bug itself (instead of crashing).

We're working on some upgrades for admin panels / options in a future update. If you have any ideas for admin powers/options you'd like to see, feel free to PM me ;)

Link to comment
Share on other sites

I made some edits to the Chairs to show forward and reverse seating you will also need to edit a few files

open pokeroutput.php and edit these lines...

 

if(!$players[1]){$players[1]="<center>[img=$emptychair]";}
if(!$players[2]){$players[2]="<center>[img=$emptychair]";}
if(!$players[3]){$players[3]="<center>[img=$emptychair]";}
if(!$players[4]){$players[4]="<center>[img=$emptychair]";}
if(!$players[5]){$players[5]="<center>[img=$emptychair]";}
if(!$players[6]){$players[6]="<center>[img=$emptychair]";}
if(!$players[7]){$players[7]="<center>[img=$emptychair]";}
if(!$players[8]){$players[8]="<center>[img=$emptychair]";}

 

to

 

if(!$players[1]){$players[1]="<center>[img=$emptychair]";}
if(!$players[2]){$players[2]="<center>[img=$emptychair]";}
if(!$players[3]){$players[3]="<center>[img=$emptychairbottom]";}
if(!$players[4]){$players[4]="<center>[img=$emptychairbottom]";}
if(!$players[5]){$players[5]="<center>[img=$emptychairbottom]";}
if(!$players[6]){$players[6]="<center>[img=$emptychairbottom]";}
if(!$players[7]){$players[7]="<center>[img=$emptychair]";}
if(!$players[8]){$players[8]="<center>[img=$emptychair]";}

 

now open up pokerconfig.php

and find this

$emptychair = 'images/poker/pokerchair.png';

and immediatley underneath add

$emptychairbottom = 'images/poker/pokerchairbottom.png';

and upload the images below. to images/poker/

Your seating should now show as facing each opponent.

Link to comment
Share on other sites

I made some edits to the Chairs to show forward and reverse seating you will also need to edit a few files

open pokeroutput.php and edit these lines...

 

if(!$players[1]){$players[1]="<center>[img=$emptychair]";}
if(!$players[2]){$players[2]="<center>[img=$emptychair]";}
if(!$players[3]){$players[3]="<center>[img=$emptychair]";}
if(!$players[4]){$players[4]="<center>[img=$emptychair]";}
if(!$players[5]){$players[5]="<center>[img=$emptychair]";}
if(!$players[6]){$players[6]="<center>[img=$emptychair]";}
if(!$players[7]){$players[7]="<center>[img=$emptychair]";}
if(!$players[8]){$players[8]="<center>[img=$emptychair]";}

 

to

 

if(!$players[1]){$players[1]="<center>[img=$emptychair]";}
if(!$players[2]){$players[2]="<center>[img=$emptychair]";}
if(!$players[3]){$players[3]="<center>[img=$emptychairbottom]";}
if(!$players[4]){$players[4]="<center>[img=$emptychairbottom]";}
if(!$players[5]){$players[5]="<center>[img=$emptychairbottom]";}
if(!$players[6]){$players[6]="<center>[img=$emptychairbottom]";}
if(!$players[7]){$players[7]="<center>[img=$emptychair]";}
if(!$players[8]){$players[8]="<center>[img=$emptychair]";}

 

now open up pokerconfig.php

and find this

$emptychair = 'images/poker/pokerchair.png';

and immediatley underneath add

$emptychairbottom = 'images/poker/pokerchairbottom.png';

and upload the images below. to images/poker/

Your seating should now show as facing each opponent.

Thanks Illusions. I have added this to the mod - it'll be in the next update.

Link to comment
Share on other sites

Well it dosen't take much to earn some cash. Hard work and commitment is all you need. You don't see me complaining do you :), i'm no coder yet i still manage to earn myself some bucks whilst enjoying my time in the Web Developing industry. Find the place where you're talent lies and work on it, now don't tell me you don't have a talent becuase everyone is good at one thing or another.

Example: If we talk about myself, i like writing and i beleive i am a skilled writer so that's where i work. I write articles and sell them off, and i also write content for games. It's all a matter of hard work all you have to do is improve yourself in a particular aspect of you're talent and then go and look for clients/customers. I have never talked to you before, yet i assume you're a nice hard working chap so come on show us what you got.

Hope you manage to understand what i mean.

Best Regards: Redex.

Link to comment
Share on other sites

Well it dosen't take much to earn some cash. Hard work and commitment is all you need. You don't see me complaining do you :), i'm no coder yet i still manage to earn myself some bucks whilst enjoying my time in the Web Developing industry. Find the place where you're talent lies and work on it, now don't tell me you don't have a talent becuase everyone is good at one thing or another.

Example: If we talk about myself, i like writing and i beleive i am a skilled writer so that's where i work. I write articles and sell them off, and i also write content for games. It's all a matter of hard work all you have to do is improve yourself in a particular aspect of you're talent and then go and look for clients/customers. I have never talked to you before, yet i assume you're a nice hard working chap so come on show us what you got.

Hope you manage to understand what i mean.

Best Regards: Redex.

I have a 5 month old baby. saving money is a bitch rofl...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...