什么编程语言使用 mob/verb 这样的命令?
mob/verb/test(N as num)
这段代码来自什么语言?
mob/verb/test(N as num)
What language is this code from?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
mob/verb/test(N as num)
这段代码来自什么语言?
mob/verb/test(N as num)
What language is this code from?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这看起来是来自游戏服务 BYOND 的“Dream Maker”编程语言: http: //www.byond.com/docs/notes/285.html。它使用一款软件(也称为 Dream Maker)来创建游戏。 http://en.allexperts.com/e/b/by/byond。 htm
具体来说,本例中的
mob/verb
是指为mob(游戏中生物/NPC的缩写)创建一个动词,并将其称为test。That looks to be the 'Dream Maker' programming language from BYOND, a gaming service: http://www.byond.com/docs/notes/285.html. It uses a piece of software, also known as Dream Maker, to create its games. http://en.allexperts.com/e/b/by/byond.htm
Specifically, the
mob/verb
in this example refers to creating a verb for a mob (an abbreviation for creature/NPC in games), and calling it test.这就是造梦者 (DM) 语言。请参阅:
后一个页面,标题为“Dream Maker 4.0”有包含问题中显示的完全相同的代码片段的示例。
This is the Dream Maker (DM) language. See:
The latter page, entitled "Dream Maker 4.0" has examples containing the exact same code snippet shown in the question.