Lv.1
签名:https://shequ.codemao.cn/community/330512 请看此贴,我已经永久退猫了,再见
在 代码岛3.0,求喵代码,如果可以运行给金币!!! 中回复
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(20 * Math.random() + 5, {/*这里是伤害调整,5可以改成其他数字*/
attacker: entity,
});
});
});
world.onDie(({ entity, attacker }) => {
if (attacker) {
world.say(attacker.player.name + ' 残忍的杀害了可怜的 ' + entity.player.name)
}
entity.player.forceRespawn();
});
2020-06-07T16:06:41 点赞:0
在 代码岛3.0,求喵代码,如果可以运行给金币!!! 中回复
world.onPlayerJoin(({ entity }) => {
entity.enableDamage = true;
entity.player.onPress(({ button, raycast:{ hitEntity, direction } }) => {
if (button !== 'action0' || !hitEntity) {
return;
}
if(hitEntity.isPlayer===true){
hitEntity.velocity.y += 0.5;
}
hitEntity.hurt(20 * Math.random() + 5, {/*照样可以改伤害*/
attacker: entity,
});
if(entity.player.name == "名字鬼知道"){//这是外挂里面写谁的名字都可以
hitEntity.hurt(999999, {
attacker: entity,
});
}
});
});
world.onDie(({ entity, attacker }) => {
if (attacker) {
world.say(attacker.player.name + ' 残忍地击杀了 ' + entity.player.name)
}
entity.player.forceRespawn();
});2020-06-07T16:08:53 点赞:0
在 投票:你支持BOX3开放公测吗? 中回复
敲个代码完就99+?????
顺便发个射速代码,大家看看有没有踔
(async function(){world.onTick((evt)=>{ await sleep(1000); world.querySelectorAll("*").forEach((entity)=>{ if ((entity.player.shesu) > 0) { entity.player.shesu=((entity.player.shesu) - 1000); } });});})();2020-06-07T19:26:22 点赞:1
在 投票:你支持BOX3开放公测吗? 中回复
票数统计:截止至6月8号7:30分:
选1的在BOX3不出名的:17
选2的在BOX3不出名的:17
选1的在BOX3出名的:0
选2的在BOX3出名的:1(超级大佬本尊)
2方胜出!胜一票!(意思含糊和用代码搞得乱七八糟的不算!)
2020-06-08T07:32:23 点赞:0
在 如何打造超强防盗网站 中回复
(口吐芬芳)*%&%……¥#@#¥%……&*()()#!@!#¥%&*#¥@¥*#¥@@#¥%……%&……%……¥#¥@
2020-06-08T07:48:08 点赞:0
在 本SHQ工作室成员专用 中回复
(async function(){world.onTick((evt)=>{ world.querySelector("."+'狗').onEntityContact(async ({entitiy,other})=>{ if (other.isPlayer) { world.say(String(other.player.name) + '被狗咬死了!'); entity.say('汪汪汪!'); other.showHealthBar=true; other.enableDamage=true; other.hurt(100); await sleep(1000); other.player.forceRespawn(); other.position=new Box3Vector3(64,10,64); world.say(String(other.player.name) + '被送往森林医院急救,成功复活!'); } });});})();2020-06-08T07:49:37 点赞:0
在 我在微信群里骂人,对方说喵了,警察要抓我 中回复
world.say('那当然,网警听说过没?专门管色 情,喵,人身攻击,黑客攻击,IP地址盗取等……')2020-06-18T12:33:20 点赞:2