Skip to content

Commit

Permalink
release part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ate47 committed Jul 24, 2024
1 parent 30dd1b3 commit c991a70
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,8 @@

Release : https://github.com/ate47/demo_mods/releases/tag/ep1
YouTube link : https://youtu.be/-eEuGDKdN5I

### Part 2

Release : https://github.com/ate47/demo_mods/releases/tag/ep2
YouTube link : https://youtu.be/a1PYKZ9h4Y0
17 changes: 15 additions & 2 deletions demo/demo.gsc
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,19 @@ function __main__() {
}

function on_player_spawned() {
level endon(#"end_game", #"game_ended");
self endon(#"disconnect", #"spawned_player");

wait 10;
self iprintlnbold("Hello world");
}

c = 0;

while (true) {
self iprintlnbold("Hello " + c);

c++;

wait 1;
}
}

0 comments on commit c991a70

Please sign in to comment.