Legend of Jin Yong's Heroes (2008 Standard Edition)

✅ 可玩

金庸群侠传(2008 标准版)

jqxz2008std

🔑 fluffos / Mud@2026 更新 2073654 2026-09-01 源码 下载 ZIP

▶ 开始游玩 · Play Now

本压缩包对应"金庸群侠传"(ES II 引擎)家族最初的"2008版"(标准版)——与本项目中的"2008加强版"(`jqxz2008`)逐字比对,3772 个文件里只有 22 个不同,且都不涉及引擎(房间描写更短、任务条目更少),核心引擎(master、登录、安全模块等关键文件)逐字节一致;同一血脉还包含"2008超豪华版"(`jqxz2008dlx`),并进一步延伸到 `xiakexing3`/`xiakexing2017` 两个更远的快照。与兄弟版本一样,新角色从店小二看店的路边茶馆起步,经中央广场树洞暗语拜入丐帮左全门下,或走白驼山使者按资质招人的另一条路线。城内"武庙"与阴曹地府的死亡转生房间会各自记录角色的固定复活点,是这套引擎里少见的、明确区分"临时安置"与"正式归宿"的复活设计。

English

The base "2008" release of this project's 金庸群侠传/"Jin Yong Heroes Gathering" (ES II engine) family -- a full raw-archive diff against sibling jqxz2008 ("Enhanced") turned up only 22 differing files out of 3,772, none engine-relevant (shorter room text and fewer quest-list entries, consistent with the Enhanced edition's own branding). Same tea-house start, Beggars'-Sect passphrase-hideout join under 左全/Zuo Quan, and White Camel Mount recruiter path as its siblings.

README

内容亮点

在线试玩

https://mudlibs.fluffos.info/jqxz2008std/

管理员账号 / Admin account

警告:Mud@2026 是本地游玩用的公开默认密码。若要正式对外开放主机,
请先修改此密码(或从 wizlist 中删除该账号)。

本地运行

cd libs/jqxz2008std
~/src/fluffos/build-debug/src/driver config.fluffos

游戏端口:40084

NOTES · 移植与修复记录

jqxz2008std — 金庸群侠传 (Jin Yong Heroes Gathering, standard edition)

Archive: archives/金庸群侠传2008版.rar ("Jin Yong Heroes Gathering 2008, standard edition" — plain "2008版" title, as opposed to archive #91's "2008加强版"/enhanced edition). Extracted mudlib root: raw/jy/ (a single top-level jy/ directory inside the archive — same layout as #91). Port: 40084. Status: done (boots clean, full registration flow verified with a real Chinese name, post-login look/score verified working).

Lineage confirmation (evidence, not assumption)

This archive is not merely "the same family" as #91/jqxz2008 — it is the exact same codebase at an earlier/lighter content-configuration point, confirmed by direct md5sum/diff comparison of the raw archives before any conversion:

- adm/tmp/swapfile.ZY054.4000 — a runtime-only artifact present in #91's archive but not this one (leftover editor swapfile, irrelevant). - log/debug.log, log/log, log/USAGE, mud.dat — pre-existing runtime logs/state from whatever original server session produced each archive; irrelevant to source content. - d/shaolin/matou3.c — one NPC/room text file with a shorter room description in this ("std") archive vs a longer one in #91 ("加强版"/enhanced) — consistent with "enhanced edition adds more flavor text." - quest/qlist*.c (20 files) — quest-list content-data files; #91's "加强版" copies have MORE quest entries than this archive's (e.g. qlist0.c here has fewer mapping entries than #91's) — consistent with "加强版 add more quest content on top of the same engine," exactly what the "enhanced edition" branding implies. - Zero differences in any of master.c/securityd.c/logind.c/ chinesed.c/config.cfg/chinese.lpc/command.lpc/combatd.lpc/ name.lpc/any of the other files this pass needed to fix (verified individually below, not inferred).

Practical consequence: rather than rediscovering #91's bugs from scratch, this pass converted the archive with the standard pipeline, then for every fix location documented in #91's NOTES.md, diffed this lib's freshly-converted (pre-fix) file against both the pre-fix state implied by #91's diffs and #91's own fixed file. Every single one of the ~26 files fixed in #91 was confirmed byte-identical, pre-fix, to this archive's own freshly-converted copy (i.e., the exact same bug, in the exact same file, with the exact same surrounding code) — so #91's fixed versions were copied over directly rather than re-typed, with a final diff -q verification pass confirming every copied file now matches #91's fixed version exactly.

Cross-check note carried forward (per #91's own NOTES.md): archives #93 (金庸群侠传2008超豪华版.rar, concurrent sibling agent) and #94 (金庸群侠传2015版.rar, not yet started) are still queued in this same title family. Given how tight the match turned out to be between #91 and this archive (engine 100% identical, only quest-content-depth differs), there's a good chance #93/#94 are further snapshots of the same underlying codebase too — worth a follow-up md5sum cross-check against this lib's (and #91's) core files once both land, the same way this pass cross-checked against #91.

Fixes applied (all ported directly from #91 — verified byte-identical

pre-fix source, not independently rediscovered)

1. AGENTS.md §15h (is_chinese / check_legal_name — GBK byte-range checks silently wrong under UTF-8 strings): - adm/simul_efun/chinese.lpc's is_chinese(): GBK lead-byte range check (str[0] > 160 && str[0] < 255, strlen>=2) → CJK Unified Ideographs codepoint range check (str[0] >= 0x4e00 && str[0] <= 0x9fff, strlen>=1). - adm/daemons/logind.lpc's check_legal_name() (inline in logind.lpc, same as #91 — no separate named.lpc in this lib either): byte-count bound strlen(name) < 2 || > 12 → character-count bound < 1 || > 6; dropped the i%2==0 && even-byte-offset gate in the per-character sliding-window loop. - Verified working: real Chinese name "秦风" accepted on the first attempt during the registration transcript below.

2. AGENTS.md §15ae (private nomask command-hook breaks every post-login command silently): feature/command.lpc's command_hook(string arg) was private nomask — dropped private (kept nomask). home/command.lpc's copy was already correct in the raw archive (confirmed identical to #91's already-correct copy, no fix needed there — same as #91). Verified: look/score both work post-login.

3. AGENTS.md §15t (variant 1): adm/daemons/combatd.lpc had #include </quest/quest.h> (absolute path inside angle brackets, never resolved by this driver's inc_open()). Fixed to #include "/quest/quest.h".

4. AGENTS.md §15t (variant 3): fixing #3 then surfaced quest.h's file-scope global mapping quest_name landing textually before combatd.lpc's own inherit F_DBASE; — fatal "Illegal to inherit after defining global variables". Fixed by moving inherit F_DBASE; above all of combatd.lpc's #include lines.

5. capitalize()-on-0 robustness bug in feature/name.lpc: short(int raw)'s fallback assumed query("id") is always a string; any board/item without an explicit "short" property (e.g. /clone/board/kedian_b, the starting-room bulletin board) has no "id" at all, crashing every look in that room with *Bad argument 1 to capitalize() Expected: string Got: 0. Fixed with a stringp(id) guard.

6. d/city/npc/guidao.lpc's is_killing(who) direct-call type mismatch: is_killing(string id) called directly with a raw object instead of who->query("id") — every other call site in the lib does it correctly. Since it's a same-object direct call (not ->), the static type checker rejected the whole file. Fixed to is_killing(who->query("id")).

7. Duplicate inherit F_UNIQUE; (pre-existing copy-paste typo): d/mingjiao/npc/{yinwushou,yinwulu,yinwufu}.lpc each had it listed twice — fatal "Illegal to redefine 'nomask' function" on this driver. Removed the duplicate line in all 3 files.

8. The "tang"-family NPC template's new used as a bare variable name (pre-existing bug, new is a reserved efun/keyword here): 7 files — d/quanzhou/npc/{tang,tang1,tang2,tang3}.lpc, d/taishan/{tang2,tang3,xingtang}.lpc — renamed the local variable to newob throughout (declaration + both usages); actual new(...) efun calls untouched.

9. AGENTS.md §15ac (bare SAVE_EXTENSION instead of __SAVE_EXTENSION__): include/net/ftpdsupp.h, adm/daemons/network/netmail.lpc, cmds/arch/purge.lpc, and 3 of the "tang"-family files (d/quanzhou/npc/tang.lpc, d/quanzhou/npc/tang3.lpc, d/taishan/tang3.lpc). Fixed all 6.

10. kungfu/class/mingjiao/mingjiao.h's string-literal-adjacent-to- macro-expansion syntax error: HIG "明教" NOR (no + between two macro-expanded string literals) — rewrote as HIG + "明教" + NOR. Also added #include <ansi.h> to this header (some includers reach it transitively without ever including <ansi.h> themselves, leaving HIG/NOR genuinely undefined once the syntax error above stopped masking it).

11. d/mingjiao/npc/changjinpeng.lpc's wrong absolute #include path: #include "/kungfu/class/mingjiao/tanzhu.h" (doesn't exist — the real file lives next to this NPC file). Fixed to #include "tanzhu.h".

12. d/mingjiao/npc/{fenggongying,baiguishou}.lpc's #include __DIR__"tanzhu.h" (unquoted macro-concatenated form, "Cannot read #include file"). Rewrote both to the plain quoted form #include "tanzhu.h".

13. d/baituo/ouyangfeng.lpc, two independent pre-existing typos: (a) missing semicolon after a write("...") inside a switch case 0: block; (b) object me=this-player(); (subtraction instead of this_player(), missing underscore). Fixed both.

14. d/shaolin/obj/shuitan.lpc: ging_cost typo for the declared variable jing_cost (transposed letters). Fixed.

15. d/mingjiao/jmqshenmu.lpc was genuinely truncated in the raw archive (confirmed against the pre-conversion .c, same as #91 — ends mid-void init() { with no closing braces). Closed with an empty body rather than fabricating content.

All 26 fixed files were verified with a final diff -q against #91's corresponding fixed file: zero differences remain.

Confirmed NOT needed (checked directly against this lib's own source,

not assumed from #91)

Interactive test result — full registration + post-login flow

Full registration + post-login test, one continuous mudclient.py session:

金庸群侠传已经执行了三十九秒
目前共有 0 位巫师、0 位玩家在线上,以及 1 位使用者尝试连线中。
您的英文名字:              <- sent "qinfengstd"
...您确定吗(y/n)?          <- sent "y"
请输入您的高姓大名,...
您的中文名字:              <- sent real Chinese name "秦风" -- ACCEPTED first try
请设定您的密码:            <- sent "test1234"
请再输入一次您的密码...     <- sent "test1234"
...您接受这一组天赋吗?     <- sent "y"
您的电子邮件地址:          <- sent "[email protected]"
...男性(m)的角色或女性(f)... <- sent "m"

[1;36m客店[2;37;0m -
    这是一家价钱低廉的客栈,生意非常兴隆。...
    这里明显的出口是 west 和 up。
  /clone/board/kedian_b [ 没有任何留言 ]
  店小二(Xiao er)
你上次连线是从0 on Wed Dec 31 16:00:00 1969

Post-login commands, same connection:

log/debug.log across the whole run: zero error: lines, zero fatal/segfault-shaped lines. Only expected non-fatal noise:

Known non-fatal pre-existing issue (not fixed, matches #91 exactly)

adm/daemons/chinesed.lpc's create() calls restore() unconditionally on data/e2c_dict.o (English→Chinese dictionary save file). That file's raw bytes do not decode as a valid LPC mapping (restore_object(): Illegal file format) — genuinely corrupted seed data in the original archive (same file, same corruption, as #91 — consistent with both archives sharing this exact save file). Fully caught by master.lpc's own preload() catch wrapper ("错误讯息被拦截"), entirely non-fatal; chinesed.lpc's dict mapping just stays empty. Does not affect registration, look, or score.

Content gaps (same as #91, not independently re-verified per-item since

the raw trees are confirmed near-byte-identical outside the 22 files

listed under "Lineage confirmation" above — none of those 22 touch any

of the content-gap areas #91 documented)

See libs/jqxz2008/NOTES.md's "Content gaps confirmed as real archive gaps" section — d/mingjiao/yuan/* missing skills, missing /d/yanziwu/ zone, orphaned d/wudang/taoyuan/* drafts, dead adm/daemons/network/* intermud code, corrupted board save data, etc. all apply identically here (verified the specific files involved are outside this archive's 22-file diff from #91).

lpcc sweep

Single sweep via scripts/lpcc_check.sh (small/medium lib, no fix-iteration cycle needed since every fix was ported pre-verified from #91): 3064/3135 pass (97.74%) — numerically identical to #91's final sweep result.

Diffed the two libs' failure lists directly: 70 of 71 failing files are byte-for-byte the same set as #91's. The one apparent difference (/d/mingjiao/npc/bigmonkey fails here where #91's sweep instead flagged /d/mingjiao/npc/monkey) is confirmed to be a batch-sweep ordering artifact, not a real content difference — both monkey.lpc and bigmonkey.lpc exist, unchanged, and byte-identical between this lib and #91 (diff confirms zero differences in either file); which one happens to surface as the sweep's FAIL line depends on load/object-table state carried across the whole --batch run (AGENTS.md §6b), not on file content. Same underlying failure category (missing race 走兽 in this zone's NPC template) either way.

Memory stayed healthy (free -h: ~11GB free, well under 1 minute runtime) — nowhere near mega-lib territory, no backing-off needed.

Process notes

2026-07-23 re-verification pass (driver rebuild + formatter + WASM)

WASM-enablement pass (2026-07: loopback-allow + admin seeding)

Standard pass per AGENTS.md §1.3b/e + §1.5 (applied identically across the three jqxz2008 builds — engine files are byte-identical in this group):

Admin account: fluffos / Mud@2026 / 浮浮, registered through the real native flow (id → y → Chinese name → password ×2 → gift y → email → gender m). Granted (admin) via adm/etc/wizlist (file was shipped empty; now contains fluffos (admin)), which securityd.lpc reads at create(). Verified after restart: login shows 目前权限:(admin), update /cmds/usr/score prints 重新编译成功. Save files (must be committed): work/data/user/f/fluffos.o, work/data/login/f/fluffos.o.

Retest: fresh registration (秦风/ceshizhe) end-to-end + look/score/quit clean; fluffos login + wizard update clean; debug.log shows only the known pre-existing corrupted-save restore errors (chinesed e2c dict / kedian board) documented above — zero new errors; test character saves removed.

Dual-mode verification pass (2026-07-24)

2026-07-25 深度功能测试 / Deep functional test (AGENTS.md §10.7)

One continuous native mudclient.py session against a freshly-built native driver (port 40084), plus a second fluffos admin session used specifically to reach real combat/death/reincarnation (same reasoning as jqxz2008's own §10.7 pass: the main test character never accumulated enough money/combat standing to safely risk real kill within the time budget). This lib is the confirmed-identical-engine lightweight-content sibling of jqxz2008 (see "Lineage confirmation" above) — this pass independently re-derived the starting zone's room graph and NPC ids from THIS lib's own source (not assumed from the sibling) and live-reproduced every bug it fixed, since none of jqxz2008's own §10.7-round fixes (chinesed restore guard, /log/nosave assure_file(), the bai/apprentice paren bug) had been ported to this archive yet — they are engine-level files outside the 22-file diff between the two archives, so they carried the exact same pre-fix bugs untouched.

Test character: id shenrongfeng, password xia2026wu, Chinese name 沈容风 (male). Left in a clean, alive, fully-saved state at /d/city/kedian (客店, the starting inn), title 叫化子/丐帮第二十代弟子 (Beggars' Sect, 20th generation, master 左全/Zuo Quan), begging skill improved once via the organic teacher path, 潜能 98/99%. Save files left in place per the task instructions (work/data/user/s/shenrongfeng.o, work/data/login/s/shenrongfeng.o) as evidence. Admin account fluffos/Mud@2026 (pre-existing) reused for the death/reincarnation leg; left alive, at /d/city/wumiao (its own now-legitimate chosen home per the reincarnation flow's own explicit ob->move("/d/city/wumiao") — see the startroom-discriminator finding below), title 天神, stats reduced from the death (this is expected/correct post-death state, not a bug).

What was verified working, live

Not verified live (honest gap)

Bugs found and fixed

1. adm/daemons/chinesed.lpc — corrupted save data leaves a global mapping as raw 0, crashing the FIRST real use of cha/chinese() (AGENTS.md §7.7, third bullet — identical bug, identical file, to jqxz2008's own §7.7 finding; this archive carried the exact same pre-fix create(), confirmed byte-identical before the fix)

// BEFORE:
void create() {
  seteuid(getuid());
  restore();
}
// AFTER:
void create() {
  seteuid(getuid());
  catch(restore());
  if (!mapp(dict)) dict = ([]);
}

restore() throws on this archive's malformed data/e2c_dict.o (same known-corrupted seed data documented since the very first pass on this lib); uncaught, it aborts create() before local recovery can run, and §7.7's exact mechanism zeroes dict back to raw 0. Live-reproduced: cha zuo and xue zuo begging both crashed with *Value being indexed is zero. at chinesed.lpc:94 before the fix. Verified: rebooted, repeated bai zuoxue zuo beggingcha zuo — all three now work cleanly, zero new debug.log lines.

2. Missing /log/nosave/ runtime directory crashes combatd.lpc's killer_reward() on EVERY death and kill.lpc's PK-attempt logger on every player-vs-player kill (AGENTS.md §7.11, exact match — same example directory the catalog entry already names; identical bug/files to jqxz2008's own §7.11 finding, confirmed byte-identical pre-fix)

work/log/nosave/ did not exist in this archive either. Fixed the same two live write sites plus the bai/apprentice FENG counter (bug #3 below shares the same missing-directory root cause) using the lib's own assure_file() idiom (adm/simul_efun/file.lpc:11):

// combatd.lpc killer_reward(), kill.lpc do_kill():
assure_file("/log/nosave/KILLRECORD");   // or ATTEMP_KILL
write_file("/log/nosave/KILLRECORD", ...);

Live-reproduced and verified the severe shape this catalog entry warns about: before the fix, killing the fluffos admin character in real combat threw *Wrong permissions for opening file /log/nosave/KILLRECORD for append. "No such file or directory" UNCAUGHT inside die(), aborting every statement after it (corpse creation, moving the player to the death room, setting the ghost flag) — the character was left standing in the combat room, still "alive" by the engine's bookkeeping. After the fix: full death → corpse → ghost → /d/death/gate chain completes cleanly in one shot, confirmed live, log/nosave/KILLRECORD created on disk.

3. cmds/skill/bai.lpc / cmds/skill/apprentice.lpc (identical duplicate files) — misplaced parenthesis passes the WRONG ARGUMENT TYPE to query(), so the Feng-Qingyang defection-counter check never actually ran (same class as jqxz2008's own bug #4 finding, identical files, confirmed byte-identical pre-fix)

// BEFORE (both files, same line):
if (((string)me->query("family/master_id" == "feng qingyang")) || ((string)me->query("family/master_name" == "风清扬"))) {
// AFTER:
if (((string)me->query("family/master_id") == "feng qingyang") || ((string)me->query("family/master_name") == "风清扬")) {

The == comparison sat INSIDE query()'s argument list, so query() was actually invoked with a boolean (always producing 0/false for any real property name) instead of the intended string key — the branch could never fire regardless of the player's actual master. Also added the matching stringp() guard on the FENG counter's read_file() result (§7.9-shaped: read_file() on a not-yet-created file returns 0, which would otherwise flow into atoi(0)) and assure_file() before its write_file(), same as bug #2's fix. Not separately live-exercised (would need a character to actually be Feng Qingyang's disciple first, out of scope for this pass) but confirmed by direct read that it now matches every other correctly-written call site in the same file.

4. Shared tell_room() simul_efun passes a raw int 0 as message()'s 4th (exclude) argument when called with only 2 args — an UNCAUGHT crash inside the net-dead force-quit handler user_dump() silently disables the ENTIRE net-dead safety net (AGENTS.md §7.12, exact match to its "Severity escalation" paragraph — this pass independently found and live-reproduced the SAME shape in the SAME function (user_dump()'s DUMP_NET_DEAD case) that the catalog entry's own severity-escalation example describes on dtsl, in a completely unrelated lineage — strong evidence this shape is worth actively hunting for on every future §10.7 pass, not just noting when stumbled upon)

// adm/simul_efun/message.lpc — BEFORE:
varargs void tell_room(mixed ob, string str, object *exclude) {
  if (ob) message("tell_room", str, ob, exclude);
}
// AFTER:
varargs void tell_room(mixed ob, string str, object *exclude) {
  if (ob) message("tell_room", str, ob, exclude || ({}));
}

clone/user/user.lpc's user_dump(DUMP_NET_DEAD) — the function that runs when a net-dead player's NET_DEAD_TIMEOUT (600s) call_out finally fires — opens with a bare 2-arg tell_room(environment(), ...) call (no exclude list), leaving exclude at its varargs default of 0 (a plain int, not an array). Live-reproduced directly (via the fluffos admin's own call me->user_dump(1) wizard command, matching DUMP_NET_DEAD's constant value — chosen specifically so the crash could be confirmed deterministically without a real 600-second wait, see the "not verified live" section above for why this substitution is sound here): before the fix, this threw *Bad argument 4 to EFUN message() Expected: object, array, Got: int(0). uncaught inside user_dump() itself, which aborts the function at that exact line — the very next statement, command("quit") (the actual force-quit save), never ran. Net real-world consequence, exactly as §7.12 warns: any player who genuinely net-deads and never manually reconnects would stay alive in server memory forever (until a driver restart), never actually saved via this path — the safety net the whole mechanism exists for silently does nothing. This is a SHARED simul_efun wrapper (29 call sites across 16 files use the vulnerable 2-arg form lib-wide, per a grep -c sweep), so the single fix above covers all of them, not just this one call site. Verified: rebooted, re-ran call me->user_dump(1) on the admin account — the "断线超过 10 分钟,自动退出这个世界" message now prints correctly AND the admin is actually logged out via a real, clean quit (save confirmed via the "当你下次连线进来时,会从这里开始" prompt), zero new debug.log lines.

Startroom-discriminator check (per this task's explicit instructions)

d/city/wumiao.lpc's init() and d/death/gate.lpc's init() both unconditionally write the entering player's permanent startroom field on mere room entry — structurally the exact shape AGENTS.md §7.24 describes, and the exact same two files jqxz2008's own §10.7 pass flagged, briefly "fixed," and then retracted on user review. Applying that pass's own discriminator explicitly, on THIS archive's own source (not assumed from the sibling, though the files are confirmed byte-identical): both rooms carry set("valid_startroom", 1) / set("valid_startroom", "1") in their own create() — grepped and confirmed directly:

d/city/wumiao.lpc:20:  set("valid_startroom", "1");
d/city/wumiao.lpc:38:  me->set("startroom", base_name(environment(me)));
d/death/gate.lpc:18:  set("valid_startroom", 1);
d/death/gate.lpc:31:  ob->set("startroom", "/d/death/gate");

Per the discriminator ("more likely a genuine bug if the target room does NOT carry valid_startroom... more likely intentional design if the target DOES carry that flag"), this is not treated as a bug — left exactly as shipped, consistent with the sibling's own retraction. Reinforcing evidence found live this pass: d/death/inn1.lpc's reincarnation ritual (do_stuff()) EXPLICITLY does ob->move("/d/city/wumiao") right after ob->reincarnate() — i.e. the game's own death-recovery flow deliberately routes every reincarnated player through wumiao regardless of where they died, which only makes narrative/mechanical sense if standing there is SUPPOSED to (re-)anchor your home, matching the "deliberate checkpoint" reading from the sibling's retraction writeup.

As an extra due-diligence step (verifying the OTHER set("startroom" call sites in this lib don't hide a same-shaped bug the sibling's pass didn't have occasion to check, since it's a different, if byte-identical, archive), grepped every set("startroom" site lib-wide (28 hits): the large majority (kongkong.lpc, killer-{n,s,e,w}.lpc ×2 (both clone/npc/ and d/npc/ copies), mao18.lpc, shisong.lpc, ouyangke.lpc) are NPC files calling bare set(...) on their OWN object in their own create() — cosmetic NPC-flavor data, never touches a player object, not this bug shape at all. Of the remainder that DO write to a player object (ob->set/me->set/dest->set): cmds/usr/save.lpc, cmds/usr/quit.lpc, adm/daemons/logind.lpc are the lib's own legitimate save/quit/login mechanism (the thing the bug pattern is defined relative to, not an instance of it); d/city/cangku.lpc, d/shaolin/cangku.lpc, and the d/shaolin/ jail-cluster files (jianyu.lpc, jlyuan.lpc, shulin9/11/13.lpc, andao2.lpc) are a matched capture/release mechanic already separately confirmed genuine by the sibling's own pass (identical files); kungfu/condition/bonze_jail.lpc resets a released prisoner's startroom to the START_ROOM macro itself (/d/city/kedian, which — checked directly — carries valid_startroom as the archive's own default landing room, so this is the SAFEST possible target, not a bug); d/city/npc/tang.lpc's ransom-redemption flow moves a freed captive to /d/city/kedian and sets that same already-valid_startroom room. No additional instances of the bug pattern found.

Testing-methodology note (not a mudlib bug — a note for future passes)

Killing the driver process via plain kill <PID> (SIGTERM) does not autosave connected players — debug.log logs FATAL ERROR: SIGTERM: Process terminated with no save/cleanup step visible before it. A character's in-memory-only changes since their last quit/save are lost if the driver is restarted this way. This bit this pass directly: the test character's freshly-joined sect membership (from bai zuo, never followed by quit) was lost across a driver restart done to load the chinesed fix, and had to be redone. Not a mudlib defect — restarting a live driver to pick up simul_efun/daemon-file changes without asking connected players to quit/save first is inherently lossy on any lib, and worth remembering on any future fix-then-reboot iteration cycle: either quit test characters before a restart, or expect to redo whatever wasn't saved.

Bug-class mapping

Process notes

Driver run from libs/jqxz2008std/ via setsid nohup ... driver config.fluffos > driver_stdout.log 2>&1 & disown, restarted twice across the fix-iteration cycle (once after the chinesed/log/nosave/ bai-paren fixes, once — unnecessary in hindsight but done for a clean before/after comparison — after the tell_room() fix). Each old PID killed only after confirming readlink -f /proc/<pid>/cwd matched this lib's own work/ directory; several other agents' driver processes for other libs (fy2qh, hymud, xajh2, and others) were running concurrently throughout and were never touched. Final driver killed by exact PID after all testing completed, confirmed gone via ps -p/ss -tlnp no longer showing port 40084. Scratch file driver_stdout.log removed before finishing, per task instructions.

深度功能测试(§10.7,本轮):发现并修复一处 §8.9 wrong-object 食物/饮水初始化 bug

这份档案自己此前没有做过深度游玩测试。这次先核对了同引擎兄弟档案 jqxz2008("2008 加强版")已经发现的 4 个 bug——结果这四处 (chinesed.lpc 损坏存档、combatd.lpc/kill.lpc/bai.lpc/ apprentice.lpc 缺失 /log/nosave/ 目录、bai.lpc/apprentice.lpc 括号位置错误)在这份"标准版"里全部已经是正确的写法,说明这几 个 bug 是"加强版"/"超豪华版"在标准版基础上二次修改时引入的回归, 标准版本身反而更干净。

不过,用真实驱动完整走一遍注册流程时发现了一个新的、三个版本共同 携带的 bug:注册后 score 显示的〖食物〗〖饮水〗状态条都是空的 (□□□...),而不是新角色应有的满格状态。查 adm/daemons/logind.lpcenter_world()

user->setup();
if (!user->query("food") && !user->query("water") && ob->query("age") == 14) {
  user->set("food", user->max_food_capacity());
  user->set("water", user->max_water_capacity());
}

这正是 AGENTS.md §8.9 那个"检查了错误对象的 age"模式:age 是角色 本身(user)的属性,不是登录物件(ob)的属性——ob->query("age") 永远是 0/undefined,永远不等于 14,所以这个 if 分支从来没有真正 执行过,每一个新角色的食物/饮水从创建那一刻起就永远是空的,静默地, 没有任何报错。改成 user->query("age") == 14 后,用真实驱动重新注册 了一个新角色(沈贰),score 正确显示食物/饮水两条状态全满。

这个 bug 同样存在于 jqxz2008jqxz2008dlx(同一份 adm/daemons/logind.lpc 逐行相同)——jqxz2008 自己之前那轮相当扎 实的 §10.7 深度测试也没有发现它(大概率是因为那次测试用的角色已经 拜入丐帮,"没有钱怎么办不要问巫师"式的贫困角色对食物条空着这件事没 有特别在意)。已经在这两个档案里用完全一致的修法同步修复,并各自用 真实驱动重新注册验证过。 三个档案的这一处修复分别提交,不合并成一 个 commit。

其它验证过的内容

用测试角色(沈贰)走了:注册 → "客店" → west 到"北大街"(遇到白驼 山"欧阳克")→ south 到"中央广场"(遇到"流氓头"/"流氓"/"菩提子")→ 对"流氓头"使用非致命的 fight 指令切磋——正确在角色明显落于下风时 自动停手("你向后一纵,恨恨地说道:君子报仇,十年不晚!"),没有真 实死亡风险。全程 debug.log 保持空白。

未继续测试的部分

时间关系,没有测试拜师、购物、真实死亡(kill)流程,以及留言板。 下一轮如果继续深挖,可以直接复用 jqxz2008dlx 那一轮已经验证过的 死亡流程(同一引擎、同一 d/death/ 内容),重点关注拜师和购物这两 块还没被任何一个版本验证过的部分。

WASM 修复摘要(迁移自 meta.json 的 group_note)

同一代码库,内容更精简。

§7.86 跨库扫描修复(留言板 post 崩溃)

深度功能测试(2026-08-13,round two,新驱动重测)

Re-tested against the freshly-rebuilt build-debug/src/driver(post 全库 quest_times/win_times %-operator 修复 + Warning/warning 驱动文本回退)。log_error()adm/obj/master.lpc)、§8.9 食物/ 饮水初始化 bug(user->query("age") 而非 ob->query("age"))、管 理员账号(fluffos/Mud@2026adm/etc/wizlist 已有 fluffos (admin))均已经在更早一轮正确修复/创建过,本轮复核确认 全部依然生效,只发现并修复了 log_file() 一处(和同引擎兄弟档案 jqxz2008/jqxz2008dlx 同一形状)。

发现并修复的 PROGRAMMING bug

1. log_file()adm/simul_efun/file.lpc)完全没有 assure_file() 保护(AGENTS.md §7.11-class 的又一确认实例):注册/登录本身只 写 log_file("USAGE", ...)(无子目录,本来就存在),不受影响, 但 nosave/CRASHES/nosave/SUICIDE/nosave/CALL_PLAYER 等管理 指令路径会在首次使用时未捕获抛出。已补上 assure_file(LOG_DIR + file);(含前向声明)。

Proactive checks(无需改动)

观察到但判定为既有游戏内容、非 bug 的现象

首次登录 fluffos 进入起始区域后不久,屏幕上出现了 feature/damage.lpc 的"你的眼前一黑,接著什么也不知道了...."( unconcious() 函数的标准昏迷提示),score 确认 <精>/<气> 条大幅下降到接近底部。第二次重新连线(同一账号)没有再次触发,角 色状态正常持续、逐步回血,未死亡。追查 unconcious() 本身: if (wizardp(this_object()) && query("env/immortal")) return;—— 巫师账号只有在同时设置了 env/immortal 才会被豁免昏迷,本档案的 fluffos 测试账号显然没有设置这个标志,所以和普通玩家一样会被起 始区域里的某个(未深入追查具体来源,未见明显敌对 NPC)伤害来源打 到接近昏迷。这是游戏内容/平衡范畴(巫师默认不豁免战斗伤害,是否要 豁免属于设计选择),不是程序逻辑 bug,未修改。登录测试产生的这部分 存档状态变化(<精>/<气> 大幅下降)已用 git checkout 撤销,不 提交一个"半死不活"的管理员存档。

实测过程

用已提交的 fluffos/Mud@2026 登录,update /adm/simul_efun/file (就是本轮改过的文件,第二次连线时确认,第一次连线时因为上述昏迷 状态导致指令被暂时阻塞)确认可正常重新编译。log/debug.log 时间 戳全程未变化(Aug 5,早于本次会话,且文件本身为空),确认无新增 未捕获运行期错误。驱动最终按精确 PID kill,ps -p 确认已退出。

§7.100 扫描修复(ROOM 基类多余 replace_program()

#define ROOM "/inherit/room/room":删除 824 处多余的、独立成行的 replace_program(ROOM);(保留 inherit ROOM;),与手足档案 jqxz2008dlx 同一血统同一形状。clone/misc/roommaker.lpc 同样有 两套模板——"造一间空房间"的 heredoc 本来干净,"克隆我所在的房间" 命令的字符串拼接模板把同一枚多余的 replace_program(ROOM); 烤进 了每一个新克隆的房间,已同步修正。已用 build-debug 驱动干净启动 验证(0 个新增编译错误,端口正常监听);未做完整 §10.7 深度游玩 测试。

§7.30 uninitialized-mapping accessor sweep (2026-08-20)

Corpus-wide mechanical sweep of the feature/skill.lpc shared-lineage bug (confirmed independently on xiakexing2017/jqxz2015/haiyang2 via round-four testing): 4 accessor(s) in this file returned a raw never-initialized mapping instance variable (defaults to int 0, not ([]), until first assigned), crashing any unguarded keys()/sizeof()/indexing caller for a fresh/untrained character. Fixed at the accessor level (mapp(x) ? x : ([])) per the documented remedy. Verified via lpcc --batch static compile check only (not a live boot) as part of a large mechanical sweep; not individually functionally re-tested live on this lib.

Round-four (2026-08-20): shop-purchase gap resolved + standard checklist pass

Targeted follow-up on this lib's own single explicitly-flagged §10.7 gap ("A completed, successful shop purchase — never verified live", see above): the earlier test character organically joined the beggar sect (feature/dealer.lpc:116-117 unconditionally rejects beggars at buy), so a fresh non-beggar character was needed, funded via the project's standard admin clone+give pattern for this lib's real money object.

Gap resolved — a real successful purchase, live, price deduction + item receipt both verified. New test character (id qinliushi, Chinese name 秦六石, password redacted) registered natively, no sect join — a plain 平民. Native build-debug driver, port 40084. Admin fluffos (pre-existing, Mud@2026) used goto qinliushi to join the test character at 醉仙楼 (d/city/zuixianlou, the same food-stall shop the earlier rejection-path testing used — NPC 店小二/d/city/npc/ xiaoer2.lpc, F_DEALER), then clone /clone/money/coin + call coin->set_amount(500) + give coin to qinliushi. buy jitui (烤鸡腿, listed at 八十文铜板/80) succeeded: i afterward shows 四两白银 + 二十 文铜板 (400 + 20 = 420 = 500 − 80, exact) plus the 烤鸡腿 itself in inventory — both the price-deduction and item-receipt halves of the "honest gap" are now directly confirmed, not just inferred from the rejection paths. log/debug.log across the whole session (two logins, the admin gift, the purchase): exactly the two long-documented pre-existing intercepted restore errors (chinesed dict, kedian_b board) and zero new error:/uncaught lines.

Incidental finding, not a bug — confirms and extends the 2026-08-13 round's own "wizard non-immunity to unconsciousness" observation: the committed fluffos save (work/data/user/f/fluffos.o) was *already* sitting at "qi":-1,"jing":0 (mortally wounded / unconscious, disable_type already set) before this round touched anything — apparently never fully healed after that earlier incident. Logging in re-triggered inherit/char/char.lpc's heart_beat()unconcious() (qi < 0 check) immediately, which calls disable_commands() and blocks every add_action-based command (goto/clone/call/give, all "什么?") until unconcious()'s own call_out("revive", ...) fires 30–~108s later (random(100-con)+30, this account's con 22 → up to 108s) — confirmed by reading feature/damage.lpc directly, not guessed. Rather than waiting out that timer, reconnecting immediately worked instead: adm/daemons/logind.lpc's netdead-reconnect path calls clone/user/user.lpc's reconnect(), which (per the already-applied §7.108 fix on this lib) unconditionally calls enable_commands() — confirmed live, a fresh fluffos reconnect immediately after the unconscious episode had full command access again, no wait needed, and natural heal_up() regen over the session brought qi/jing from -1/0 up to 14/14 by the end (still not full, but no longer disabled). This is a strict improvement over the pre-existing committed save state, not new damage caused by this round, so the resulting fluffos.o diff (healthier stats, last known location /d/city/wumiao from a goto) is committed alongside the new test character's saves, per this lib's own established convention (see the 2026-08 round's jqxz2015-sibling precedent for the same clone+ give shop test funding an admin's save diff being committed as a "normal increment," not reverted) — not a mudlib defect, just evidence that a previous session's admin-account "half-alive" state was never cleaned up and this round happened to walk through it and improve it.

Standard checklist pass (fast confirm-only, not re-derivation):

Death/respawn cycle: already verified live, not just this round — the 2026-07-25 §10.7 pass (see above) took the fluffos admin through a real fight-to-death against a 黑无常 NPC and the full corpse → ghost → /d/death/inn1.lpc reincarnation-ritual chain, live, not code-reviewed. Re-checked that section of this file to confirm it wasn't a "mentioned but not exercised" case — it explicitly says "Real combat + death + corpse + ghost + reincarnation, end to end, live (not code-reviewed)" with a full step-by-step transcript description. Nothing further needed here.

No new programming bugs found this round — this pass was scoped to closing the one explicitly-flagged gap plus a confirm-only checklist sweep, and both came back clean/already-fixed.