RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Texas Hold'Em

milt

Knight
Hey... seriously who took credit for making this? I just downloaded the source code and this is definitely my code. I'm glad to see that it is here but it's just silly to try and take credit.

Anyways, anyone feel free to send me a PM if you want to contact me. This is an old Texas Holdem script I made back in my UO days. I probably have a more updated version somewhere that I can release when I get some time to find it.
 

Phr3d13

Sorceror
Milt, as in Milt's tourney system? I just wanted to let you know I found it posted on orbsydia and re-posted it here, as I believe I stated in my OP. If it is originally yours please let me know so I can edit my OP to give credit where credit is due.
 

milt

Knight
Yep it's me. Haven't been around much but noticed this today and had quite a laugh. I just did a WinMerge on this code vs the one that I had last updated. Seems someone else did a few modifications but 95% of the code is mine :)

Like I said when I get a little more time (hopefully this weekend) I can go through the changes and post a more updated system for you all.
 

milt

Knight
Okay so a small status update from my previous posts...

I'm going to release a more updated version as part of an Event System that I've been working on sometime in the near future (Christmas Present?).

Taking the time to do this proper so that I can release a stable version.
 

fwiffo

Sorceror
PlayerMobile.cs is better this way on the OnMove method:
Code:
            if (m_PokerGame != null) //Start Edit For Poker
            {
                if (!HasGump(typeof(PokerLeaveGump)))
                {
                    SendGump(new PokerLeaveGump(this, m_PokerGame));
                }
                return false;
            } //End Edit For Poker

Just DON'T freeze the player as in recent update to pokergame, since if a player want to go out, he simply can't if for some reason the gump closes, simple.
 

Wis Weed

Sorceror
i have no idea where to put the scripts when i download poker.zip. Is there a complete tut somewhere on where to put everything?
As long as it is inside of your RunUO folder you should be fine, I believe. I have this same poker script running. I have made a folder named Custom inside of my Scripts folder. I use this folder for all of my custom or downloaded scripts. My poker script is located in RunUO/Scripts/Custom. I just unzipped all the files into a folder named Poker that is inside of my Custom folder.

So the final layout looks like this: RunUO/Scripts/Custom/Poker

This works for me. Good luck, man.
 

jamesreg

Sorceror
Is there any problem adding more then one poker dealer? I was going to toss about 4 tables in a room and have about four poker games like a casino.
 

Wis Weed

Sorceror
As far as I can tell you will run into no problems adding several poker dealers. I have set my server up to have 4 tables as well.

1.) Low roller 2-8 players.
2.) Low roller Head to Head.
3.) High roller 2-8 players.
4.) High roller Head to Head.
 

fwiffo

Sorceror
Anyone did find that if you are in a game and the server restarts (with save) the gold is lost for sure? I did find it and was wondering if someone had a fix already.
 
great script but i get a problem if i want to leave the pokertable, the player move to an empty facet without doors and cannot move an empty world..
have a UOR shard pls help
 
Top