
Lv.1
一介平民,没什么好说的,已成散人
签名:我……一介平民,2020.9淡BCM,交友还是可以的, wx:why_1819680 qq:2436355267
在 【火星之城】新地图,招人啦!仅仅3个名额,等你来抢! 中回复
dm1
world.Player(({entity})=>{
entity.position.set(-6.84, 15.71, 120.03);//玩家进来的时候,将ta传送到指定的坐标
entity.player.spawnPoint.copy(entity.position);//将玩家复活点复制为上面的坐标
world.say('欢迎'+entity.player.name+'来到地图没想好名字~')
})
world.querySelectorAll("player")[0].player.color.set(0,255,255)
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(999, {
attacker: entity,
2020-06-03T11:59:06 点赞:0
在 组个小队,一起做地图~ 中回复
for i in range(4):
input('顶不顶')
print('怎么说也要顶')
ding = [0]
yaoding = [1]
2020-06-03T19:41:38 点赞:0
在 【Python作品分享】无聊的圆【教程贴】 中回复
import turtle
__Pen = turtle.Pen()
#开始进入Python的世界
for i in range(20):
__Pen.circle(100, 360)
__Pen.goto(100, 100)
__Pen.circle(100, 360)
__Pen.goto(0, 0)
__Pen.circle(100, 360)
__Pen.goto(0, 0)
__Pen.goto(0, 0)
__Pen.goto(0, 0)2020-06-05T19:06:53 点赞:0