This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Name: Quest Name | |
Level Requirement: Level Requirement | |
Rewards: XP, Gems, etc | |
NPCs: | |
NPC 1 | |
NPC 2 | |
……. | |
Stages: | |
Stage 1 | |
Stage 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tutorial Quest | |
defaultStage: 'start' | |
stageList: | |
- 'start' | |
- 'not_level' | |
- 'started' | |
- 'turn_in' | |
- 'reward' | |
stages: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public synchronized void start() { | |
this.thread = new Thread(this); | |
this.thread.start(); | |
this.running = true; | |
} | |
public void render() { | |
BufferStrategy bufferStrategy = getBufferStrategy(); | |
if (bufferStrategy == null) { | |
createBufferStrategy(3); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void render() { | |
BufferStrategy bufferStrategy = getBufferStrategy(); | |
if (bufferStrategy == null) { | |
createBufferStrategy(3); | |
return; | |
} | |
this.screen.render(bufferStrategy.getDrawGraphics()); | |
bufferStrategy.show(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hypixel | |
mineplex | |
cubecraft |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hypixel=mc.hypixel.net | |
mineplex=us.mineplex.com | |
cubecraft=play.cubecraft.net |