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 Poker

helraisr

Wanderer
The whole reason trixtA has done this, is because ever since the first texas holdem scripts made their showing on servers people have been asking for them for years.. so its not only that the makers dont want and SHOULD not have to share or get flammed about it, but all the people asking for them have done nothing about it... i asked once when it was first released for a copy was denied then as a novice coder spent a year making and getting mine correct.. now if I as a NOOB can read learn and firgue it out so can you.. if you dont have the time to code it just be patient and somone will post one eventually.. until then stop asking or getting mad at the people who took the time to make their servers unique..

:)
 
just want to pop it out to you that if you, and trixta, and hybrid, and another three shards I can name off the top of my head have "TEXAS HOLD EM POKER" then none of you are unique.

Go ahead and pat yurself on the back for having it all you want but none of you are unique.

Still stands. Coming on to the forums, like you just did, and telling people you have the script, like you just did, is just an asshole bragging, like you just did.

Some folks give two chits. I personally thought the Texas Holem Poker was so prone to abuse to be worthless. So I stand behind my statement of braggarts trying to flash their panties. I care less where you shove your script.
 

helraisr

Wanderer
I was not trying to brag i was trying to make an example.. by saying i asked got denied so i made one.. WTF how is that bragging..
 

lordqane

Wanderer
I know the op and following posts have been dormant a while.. not trying to stir up a hornets nest, just want to toss a few recommendations.

After reading through the above on people searching for a Texas Hold' Em script, best advice i can give for anyone looking for any script:

1) google it, dont limit searched to runuo or uo. check sourceforge, google code and linux repositories. Many of these ideas and scripts have been coded time and time again and 99% of them are already available in some form of code with the tools everyone has available to them.

2) if you do release your work to the public, its your decision on how you release it and if you want to profit or not from it, just be very careful about trying to charge for scripts, there is software out there I used in the past while doing devnet that will analyze scripts and programs for copyright violations. I find it most peculiar when someone wont release their work or a script they have, and they are using someone elses libraries and code without giving proper recognition.

This post has put me to work planning and coding a full casino package. I will eventually post the source, but until then, I am working on the following points of the system:
- full variety of casino games, both time accurate and modern
- scripted casinon staff - attendants, dealers, waitstaff and janitors
- had even considered a parking valet, this is working to some point, but needs a bit more work on the generic ai lines and inplementation with the gratuity system i am planning.
- friend even recommended i put in a dating service ... that im not sure of.. its a gray area for me with my kid playing on my home server
- Also looking at the pub system to allow serving staff etc.

Will be posting nore info and sourceforge link when i get home next week.
As always, i am open to creativity and ideas to enhance this project further. I also code and script for a couple other games (Arma2 mostly) and tend to bounce from one project to the other with great intensity.
 

Murzin

Knight
doing a whole casino system would actually be easier in the end than doing them individually i think

you can create common repositories for classes/methods and storage lists

stuff you would have to duplicate if you were doing a ton of seperate things.

the more robust you make the common sections, the easier the actual indvidual things will be.

plus the logic part of winning each individual game...

thats the main reasons i never really wanted to work on a casino system.
 

Phr3d13

Sorceror
if someone can help me with the script edit i need i can post what i found.
http://www.runuo.com/forums/script-support/105200-need-help-edit.html

EDIT: well i can't make heads or tails of the edit i wanted, even with GreyWolf's Help...

So, here is what i found:

PS: I did not make this, i only scavenged it from Orbsydia

There are 3 minor edits to PlayerMobile.cs

up top add:

using Server.Poker;

Next, Find :

Code:
privateList<Mobile> m_AutoStabled;
privateList<Mobile> m_AllFollowers;

Under it add:

Code:
private PokerGame m_PokerGame; //Edit for Poker System
public PokerGame PokerGame
{
get { return m_PokerGame; }
set { m_PokerGame = value; }
}

Down near the bottom, in your OnMove section Find and then add in the part in Red:

Code:
protectedoverridebool OnMove(Direction d)
{
[color=red]if (m_PokerGame != null) //Start Edit For Poker
{
if (!HasGump(typeof(PokerLeaveGump)))
{
SendGump(new PokerLeaveGump(this, m_PokerGame));
return false;
}
} //End Edit For Poker[/color]
if (!Core.SE)
returnbase.OnMove(d);
if (AccessLevel != AccessLevel.Player)
returntrue;

After you [add PokerDealer
You need to [props the dealer and set the options.
Then [addpokerseat x y z (where x y z is the location you want your seat)

pss: if you can figure out how to make [addpokerseat use a target instead of using co-ordinates please let me know where to make edits.
 

Attachments

  • poker.zip
    22.5 KB · Views: 27

nadious

Sorceror
Using this on my shard, our guys love it. However, none of us are really any big time poker players and play much... we are confused on how the 'jackpot' works. What I don't understand, is that at the end of game (say where 4 people have bought in at 1k each), the winner of the game walks away with just over 2.5k and the rest of it seems to be on the jackpot board.

How does that work?
 

%Email

Page
if someone can help me with the script edit i need i can post what i found.
http://www.runuo.com/forums/script-support/105200-need-help-edit.html


After you [add PokerDealer
You need to [props the dealer and set the options.
Then [addpokerseat x y z (where x y z is the location you want your seat)

pss: if you can figure out how to make [addpokerseat use a target instead of using co-ordinates please let me know where to make edits.



Poker Game
How do I start playing?
 
Top