Skip to main content

死亡打字员

The Typing of The Dead

昨天刚换来键盘(刚买的就出问题了。。。),想试试看,然后搜打字游戏,发现了这个。

一查有两个可以下的版本,一个90多M,另一个230多M,那当然下90多的了(一般我肯定不这样,但是90M的说跟230多M的结果一样)。

这是Sega出的,记得最初是PS的版本,另外这个游戏改自第一人称射击游戏The House of The Dead。玩起来很像大型游戏,我想主要原因就是无需自己控制脚步,主角会自动行动,而且遇到怪物时会停下来让你打。

它有个联网功能,我跟同学时没成功,然后google一下,有人说安装时应去掉"ati xxx(记不清了)",可我这个是国人处理过的(比如联网的界面竟然是中文的),安装时没有选项。唉。

后来决定下200多M的那个,于是有了上一篇文章。联网还没试,估计也不行。不过倒是发现了通关后,出现的工作人员名单竟然也能“打”,这真是奇妙的创意。

还是挺喜欢这个游戏的,是我玩过的第一个3d打字游戏。

想我玩过的打字游戏,印象较深的有如下几个

TT:dos时代最经典的了,不必多说
wt: 记得打字可以发声,也是dos时代的,是rpg吧,勇士救公主的类型
机器猫大字: Flash游戏,还可以
金山打字通: 凑合吧,只记得我初中时候还算喜欢玩--因为没有别的可玩
Typer Shark:Popcap的,也很好玩,主角潜水探宝,打鲨鱼
Alphattack: miniclip 出品,有点像TT的风格,还不错
The Typing of The Dead: 刚说过

嗯,还行,不算太少

Comments

sisyphus said…
谢谢推荐,试了下还挺好玩的。
其实我是看了您这篇过来的,但好像年代有点久远,也无法评论
https://hacks.mozilla.org/2014/05/creating-a-multiplayer-game-with-togetherjs-and-createjs/
事情是这样的,其实我不怎么懂技术,我主要是做学语言的卡牌游戏,之前都是打印实体牌,后来买了个源码是createjs的单机版,目前只能改改UI加点音频什么的,虽然也能凑合着玩,但还是没有联网的好玩,大侠可以参考下,规则类似UNO
https://chua.cloud/french100/1.html
您老要是有时间有兴趣的话,可以帮忙看下用TogetherJS改成多人版的难度大不大,先谢过!

Popular posts from this blog

A Rocky Migration: Moving from docker-compose to Podman and gVisor

I've been running a few containers for several years. They were all running under rootless Docker with a single user. Initially, I planned to  migrate the containers to VMs , but I couldn't get a stable workflow after about two months of effort. Later,  gVisor caught my attention , and I decided to migrate to Podman with gVisor instead. The new plan is to run each container with  --userns=auto  and use Quadlet for systemd integration. This approach provides better isolation and makes writing firewall rules easier. I'm now close to migrating all my containers. Here are a couple of rough edges I'd like to share. Network Layout I compared  various networking options  and spent a few hours trying the one-interface-per-group approach before giving up. I settled on a single macvlan network and decided to use static IP addresses for my containers. To prevent a randomly assigned IP address from conflicting with a predefined one, I allocated a large IP range for my ...

GameConqueror 0.09 -- Linux Game Hacking Tool

If you are a game hacker If you've been looking for a `CheatEngine for Linux` Then you can't miss this. ============================================== GameConqueror is a game hacking tool for linux, it's written in PyGTK and uses scanmem as its backend. It's supposed to be with most useful features of CheatEngine for Linux. Currently, I've implemented almost everything about scanning, involving variant data types and scan types: Data Types: int{8/16/32/64}, float{32/64}, unknown type(int or float) and unknown width(will try each of them), byte array and string Scan Types: equal, greater, less, changed, unchanged, increased(by), decreased(by) This should be enough for most cases, so I decided to release it at the current status. ============================================= Here's how you can get it PPA (for Ubuntu users) https://launchpad.net/~coolwanglu/+archive/scanmem (I've not test it in 32bit environments or Jaunty, do please inform me if it doe...

Fix Google Security Code

Google Security Code (http://g.co/sc) is one type of 2-step verification. This is particularly useful when security keys and passkeys are not available. I have been using it in my LXC containers, until today I found out that it stopped working. It just kept saying "The code is invalid". It is easy to rule out some factors: The code works on other browsers on my laptop. The code works on other devices that are directly connected to the router. So it appears that Google also checks IP addresses besides the security code. Recently I have IPv6 enabled, so most devices that are directly connected to the router have both IPv4 and IPv6 addresses. But  I only enabled IPv4 for my LXC containers. So I guess when a code is generated by device A and used by device B, Google should be able to check that device A and device B are closely located. But in my case, IPv6 address appears on device A but not on device B, which may look suspicious. To fix the problem, I just needed to disable IPv...