0

我正在实施用于赌场自动播放的软件。我正在使用 .NET 技术和 C# 语言。主要问题是如何从赌场游戏中获取数据(这里是游戏的链接 http://www.bet-at-home.com/redirNetentCasino.aspx?game=lrblackjack2-3h&pff=True)。我从来没有接触过Flash,所以我对这项技术了解不多。

好吧,我知道在游戏中我们有服务器和客户端。服务器正在向客户端发送数据,客户端正在响应。例如,服务器正在发送有关发牌的信息。我的问题是可以捕获服务器发送到客户端的数据,我想是吗?我现在需要知道我收到什么样的卡。此数据以可读格式发送或加密?你能给我一些提示吗?

第二种选择是使用屏幕截图。但这是一种非常慢的方法。你在想什么??

谢谢你的帮助。

问候,巴勃罗

4

1 回答 1

1

There are a couple of things you can do to interpret data from the game. First, you can use CheatEngine which is mostly the choice of Flash game hackers. The following links will help you get started:

How to hack flash games with cheat engine 5.5
How to Cheat and Hack Flash based Games

The above method will not work for server based games like the ones hosted on Facebook. So, your second choice is capturing the network traffic and see what you can gather to attain the required information. For capturing the network from C#, you can use Pcap.NET. But before you try to do it programmatically, you should try it doing using Fiddler, which gathers plethora of information for you whenever you surf a website or when a plugin like Flash makes use of web.
Get Fiddler and GL !

于 2012-08-12T02:40:12.613 回答