
Lv.1
原名:编程中手,有事加Q:3524304608。随便吧
签名:做我想做的
在 我终于搞到了传说之下最后的呼吸的压缩包了,谁想玩?只要给我的作品都点个赞,并且给我关注。我就送给他。 中回复
《 要给我的作品都点个赞,并且给我关注。我就送给他。》
版权在你这?
别人做的免费游戏在你这就成要点赞关注的了,更何况你还用“送”字?
无语子
2022-10-04T21:24:59 点赞:0
在 ulbsans歌曲用酷狗搜 中回复
好家伙,这些名字是和原曲一点都不沾边
原曲名:
一阶段:Not a Slacker Anymore 翻译:不再懒惰
二阶段:The Slaughter Continues 翻译:喵仍在继续
三阶段:An Enigmatic Encounter 翻译:一场神秘的相遇
2022-10-04T21:31:35 点赞:0
在 关于ULB是否劣质? 中回复
我认为:
AU剧情:还行,属于正常的AU
AU音乐:非常优质(这点也是公认)
AU贴图:勉强吧
AU游戏:套的破引擎,而且3帧扣1血就算了,还不修一下判定的问题,移动速度一但过快就检测不到
2022-10-04T21:34:18 点赞:0
在 UNDERTALE最正宗主题曲!每日一听 中回复
《 主题曲 》
1.ut主题曲就是undertale,别瞎吹megalo了
2.狂妄之人这首曲子是sans还是喵者的,不!确!定!
toby给出的答复是:
与其讨论这个问题,不如出门走走
2022-10-04T21:51:37 点赞:0
在 【教程贴】5步学会制作双人联机游戏 中回复
注意⚠️,有人反馈云列表会卡死玩不了,可能是因为本帖的内容已经过时,现在的云列表更新速度过慢导致,请大家谨慎对待本教程!
2023-01-10T22:18:35 点赞:12
在 《在mc里跳过5格岩浆的方法》 中回复
众所周知搭路方式有114514种方法)
蹲搭,蹲起搭,走搭,月步,神桥,跑跳搭,果梅搭,长城搭,自救搭,telly bridge, speed telly,飞搭
暂时想起来这些)其他的想不起来了)
2023-01-28T22:03:41 点赞:1
在 [最后的危机官方设定贴] 中回复
em
设定有点奇怪
比如“
为了打败玩家,他来来到了
真实验室,获得了部分存档和代码能力
”
这讲的很不清楚,至少我好奇代码和真实验室的关系
2023-03-29T20:22:11 点赞:0
在 「求助」有没有大佬看一下下面这个代码有啥错误,只能用在一个模型上QWQ 中回复
我把这段代码喂给chatgpt,他是这么说的
使用 world.querySelectorAll('*') 选择器查询所有元素时,可能会导致性能问题,因为它会遍历整个文档。如果你只想选择特定类型的元素,最好指定更具体的选择器。
在条件语句中使用了比较运算符 ==,但对于字符串比较,最好使用严格相等运算符 ===,以避免类型转换错误。可以使用 switch 语句来简化多个条件的判断。
修复后的代码如下:
javascript<button class="flex ml-auto gap-2">Copy code</button>async function npc_const(x, Radius, Hint, Color) { const elements = world.querySelectorAll('your-selector'); // 替换 'your-selector' 为要选择的特定元素类型的选择器 elements.forEach((e) => { if (e.id === x) { let c; switch (Color) { case 'red': c = new Box3RGBColor(1, 0, 0); break; case 'green': c = new Box3RGBColor(0, 1, 0); break; case 'blue': c = new Box3RGBColor(0, 0, 1); break; case 'yellow': c = new Box3RGBColor(1, 1, 0); break; case 'cyan': c = new Box3RGBColor(0, 1, 1); break; case 'pink': c = new Box3RGBColor(1, 0, 1); break; case 'black': c = new Box3RGBColor(0, 0, 0); break; case 'white': c = new Box3RGBColor(1, 1, 1); break; default: c = new Box3RGBColor(0, 0, 0); // 默认为黑色 } e.enableInteract = true; e.interactRadius = Radius; e.interactHint = Hint; e.interactColor = c; } }); 2023-05-15T23:25:49 点赞:0
在 【神器代码岛】【建议收藏】喵代码大合集!!! 中回复
这个帖子有点过于老了)到时候我有时间会发一个重置版(可能吧)),可以看看))发了之后会把链接放这条评论下面)
2023-08-22T16:52:32 点赞:2
在 英语作文。 中回复
In the morning, I relish a delectable combination of freshly baked bread, creamy milk, and a medley of succulent fruits, although I must confess my aversion to eggs. On the other hand, my mother, with her refined palate, indulges in the velvety richness of eggs alongside a vibrant assortment of vegetables to commence her day.
As the sun reaches its zenith, my palate yearns for the comforting embrace of steamed rice adorned with tender morsels of savory meat, yet I find myself disinterested in the leafy allure of a salad. Contrarily, my father, sharing my affinity for meat, craves its tantalizing flavors, while also desiring the refreshing sweetness of fruit to accompany his midday repast.
As twilight descends and the moon casts its ethereal glow, I savor the harmonious marriage of tender chicken and verdant vegetables for my evening sustenance, eschewing the temptation of ice cream. My resolve stems from an unwavering commitment to maintaining a svelte figure, a sentiment not shared by my dear grandpa, who delights in the luscious indulgence of ice cream.
Such is the tapestry of my culinary journey, woven with three distinct meals. Pray, do share the symphony of flavors that grace your own table.
——改写来自ChatGPT
2023-08-23T19:05:16 点赞:0
在 Geek AI发布~ 中回复
你说得对,但是
据我所知,鲁迅和周树人是20世纪中国文学界的两位著名作家和思想家。虽然他们在某些观点和文学理念上存在分歧,但关于他们是否直接打斗的具体情况,我不清楚。\n\n如果你听说了有关他们打斗的某些传闻或事件,你可以进一步了解事情的真相。通常情况下,为了解决个人之间的分歧或争议,对话和沟通是更好的选择。\n\n如果你关心他们之间的思想分歧或文学观点的不同,可以阅读他们的著作、文章或相关研究资料来更好地理解他们的观点,并形成自己的判断。
2023-08-29T22:51:03 点赞:1