
Mudos
翁志艺
这个作者很懒,什么都没留下…
展开
-
mudos解释器中lpc数组==操作的代码分析
[code="lpc"]void main(){ debug_message("%O","hello" == "hello"); debug_message("%O",[1,2]==[1,2]);}[/code]这段lpc代码会输出什么呢?我们先从字节码分析吧。[quote]STRINGS: 0: a.c 1: %O...原创 2013-11-16 17:19:51 · 318 阅读 · 0 评论 -
mudos解释器中lpc数组-=操作的代码分析
[code="lpc"]void main(){ mixed a = [1]; a += [2]; a += ["hello"]; a += [[1,2]]; a -= [2]; a -= ["hello"]; a -= [[1,2]]; debug_message("%O",a);}[/code]...2013-11-16 17:33:46 · 332 阅读 · 0 评论 -
LPMUD的起源(转)
还有什么比LPMUD的鼻祖Lars Pensj的一段自述更能表现LPMUD的起源?原文参见http://genesis.cs.chalmers.se/history_frame.htmlI played some Abermud (to wizardhood once), and a little tinymud. I liked the idea of a multi-user an...原创 2014-03-19 21:28:36 · 472 阅读 · 0 评论 -
MudOS的起源(转)
这是一篇post,由mudos最初创作者发表,简述了mudos名称的由来,以及区别于其他lpmud driver的不同之处。原文参见http://www.graphcomp.com/info/mud/mudos/History_MudOS.html(just so you know ahead of time, this is wayfarer@portals|tmi|overdrive, s...原创 2014-03-19 21:30:19 · 692 阅读 · 0 评论