Skip to content

Commit

Permalink
asasddsd
Browse files Browse the repository at this point in the history
  • Loading branch information
leaftail1880 committed Aug 27, 2024
1 parent aff7e62 commit 4c26198
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions src/modules/quests/learning/learning.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ class Learning {
} else if (firstJoin) this.quest.enter(player)
})

Anarchy.learningRTP = player => {
Anarchy.learningRTP = async player => {
if (!this.randomTeleportLocation.valid) {
player.fail('Случайное перемещение не настроено')
Spawn.portal?.teleport(player)
Expand All @@ -275,15 +275,20 @@ class Learning {
fadeTime: { fadeInTime: 0, holdTime: 90000, fadeOutTime: 2 },
})

new ActionForm(
'Заметка',
'Ты - выживший, ты мало что умеешь, и просто так рубить блоки не можешь, да. Следуй по компасу.',
).addButton('Понятно', () => {
player.camera.fade({ fadeTime: { fadeInTime: 0, holdTime: 0, fadeOutTime: 2 } })
if (!this.randomTeleportLocation.valid) return
return new Promise(r => {
new ActionForm(
'Заметка',
'Ты - выживший, ты мало что умеешь, и просто так рубить блоки не можешь, да. Следуй по компасу.',
)
.addButton('Понятно', () => {
player.camera.fade({ fadeTime: { fadeInTime: 0, holdTime: 0, fadeOutTime: 2 } })
if (!this.randomTeleportLocation.valid) return

console.log('Teleporting to', Vector.string(this.randomTeleportLocation))
player.teleport(this.randomTeleportLocation)
console.log('Teleporting to', Vector.string(this.randomTeleportLocation))
player.teleport(this.randomTeleportLocation)
r()
})
.show(player)
})
}
}
Expand Down

0 comments on commit 4c26198

Please sign in to comment.