
Lv.1
举杯独醉,饮罢飞雪,茫然又一年岁
签名:淡退() py大屑一个() c++和js还有vb略有涉猎 box3 up插件创建者 自动评论噶了()
在 好久没有回来了…… 中回复
对呀
大佬都走了
曾经的策划大佬-观澜
albert和lsk6还有p-h 白篮
以及算法大佬 爵士oler
还有box3大佬 alan 尹子
还有kitten大佬 联机-桔汁糖浆
还有已经逝去的猴子 什么碳基生物
什么天一教众 之类的
还有老咸鱼 伊柒啥的都忘了
也不知道喵的快节奏是不是好的
回首猫站
只知"人面不知何处去,桃花依旧笑春风。"
故地重游,伊人无踪,怅然若失
2022-11-25T21:24:42 点赞:3
在 【神岛小课堂】吉吉喵100问,但是疯狂星期四回答(满满干货) 中回复
四元数初始化是怎么计算的
如何科学计算绕xyz轴的旋转度数
如何让实体绕某个坐标旋转
(真的需要)
2022-12-18T12:52:53 点赞:3
在 求助QWQ 大佬们(JS)这个咋做啊! 中回复
//玩家喵/亡事件
world.onDie(async({entity})=>{
if(!entity.isPlayer)return;//不处理非玩家的喵事件
world.createEntity({//创建箱子
mesh:'mesh/箱子.vb',
position:entity.position,
}) }); 2022-12-18T13:20:40 点赞:0
在 求助QWQ 大佬们(JS)这个咋做啊! 中回复
//玩家死/亡事件
world.onDie(async({entity})=>{
if(!entity.isPlayer)return;//不处理非玩家的喵事件
world.createEntity({//创建箱子
mesh:'mesh/箱子.vb',
position:entity.position,
meshScale: [2,2,2],//缩放比例 这里是长宽高同时*2
gravity: true,//你要的重力
fixed: false,//你要的不能移动
collides: true,//你要的碰撞(多了会卡)
}) }); 2022-12-18T14:16:00 点赞:1
在 求助QAQ 做到一个效果awa 中回复
world.onChat(({ entity, message }) => {
if (message === '/hc') {
const _get=entity.player.dialog({
type: Box3DialogType.SELECT,
content: "合成台",
title:"合成台",
options: ["第一件物品","第二件物品","第三件物品"],
})
}
//然后就判断物品啥的 用_get.index
})2022-12-18T14:33:00 点赞:0
在 【Python】作品自动评论 中回复
from requests import get
from json import loads
cookie = r''''''
headers = {
"Content-Type": "application/json",
"User-Agent": 'Mozilla/5.0 (Windows NT 5.1rv: 21.0) Gecko/20100101 Firefox/21.0',
}
FIND_WORD = input('输入要查找的人关键字')
dicts = 1
i = 10000
print('开始查找\n-------')
find=0
while not find:
gets_text = get(
'https://'+f'api.codemao.cn/creation-tools/v1/user/center/honor?user_id={i}', headers=headers).text
dicts = loads(gets_text)
# print(dicts)
try:
if FIND_WORD in dicts['nickname']:
print('---------')
print('!!!!!!!!!!成功查找到该人 此人id为 :',dicts['user_id'])
print('---------')
break
except:
print(f'该id用户注销了')
continue
print(f'目前已累计查找{i-10000}人\n当前人名为{dicts["nickname"]}\n-------\n')
i += 1
2022-12-21T20:54:31 点赞:0
在 【Python】作品自动评论 中回复
from requests import get
from json import loads
cookie = r''''''
headers = {
"Content-Type": "application/json",
"User-Agent": 'Mozilla/5.0 (Windows NT 5.1rv: 21.0) Gecko/20100101 Firefox/21.0',
}
FIND_WORD = input('输入要查找的人关键字')
dicts = 1
i = 10000#这里是开始
end=1000000#这里是结束
print('开始查找\n-------')
find=0
while not find:
if i%10==0:print('[\033c')#节省内存 不定期删除信息
if i>=end:print('程序运行到',end,'仍未找到用户 已停止');break#停止
gets_text = get(
'https://'+f'api.codemao.cn/creation-tools/v1/user/center/honor?user_id={i}', headers=headers).text
dicts = loads(gets_text)
# print(dicts)
try:
if FIND_WORD in dicts['nickname']:
print('---------')
print('!!!!!!!!!!成功查找到该人 此人id为 :',dicts['user_id'])
print('---------')
break
except:
print(f'该id用户注销了')
continue
print(f'目前已累计查找{i-10000}人\n当前人名为{dicts["nickname"]}\n-------\n')
i += 1
2022-12-21T21:31:44 点赞:0