Lv.1
NCT kitten3级 蓝桥杯省赛2等奖(备考python1级)
签名:https://www.ixigua.com/6965784063894356513?logTag=1d9bf516a496d1ee1d98
在 求Box3地图和pvp代码 中回复
//一个简单的射击PvP
world.onPlayerJoin(({ entity }) => {
entity.enableDamage = true;
entity.player.onPress(({ button, raycast:{ hitEntity, direction } }) => {
if (button !== 'action0' || !hitEntity) {
return;
}
hitEntity.velocity.x += direction.x;
hitEntity.velocity.y += 0.5;
hitEntity.velocity.z += direction.z;
hitEntity.hurt(2 * Math.random() + 1, {
attacker: entity,
});
});
});
world.onDie(({ entity, attacker }) => {
if (attacker) {
world.say(attacker.player.name + ' killed ' + entity.player.name)
}
entity.player.forceRespawn();
});
undefined;
2020-04-13T15:13:55 点赞:0
在 《火影忍者》中的15个经典句子 中回复
游龙当归海,海不迎我自来也!
落叶当归根,叶不迎我三仙人!
云鹤当归天,天不迎我妙木仙!
猛虎当归山,山不迎我大豪杰!
猛虎应下山。山不迎吾大豪杰!
山归其一,不迎我便自来也
2020-04-16T10:51:24 点赞:0