Skip to content

Commit 35eb760

Browse files
Fix broken link to scripted classes chapter
1 parent 9064cb3 commit 35eb760

11 files changed

+2
-21
lines changed

src/21-scripted-classes/21-01-scripted-songs.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Creating a Friday Night Funkin' Mod - Scripted Songs
22

3-
This guide will walk you through the process of creating a functioning, fully compatible Friday Night Funkin' mod, using the game's official systems for loading custom content and scripts. Once your mod is complete, you will be able to place it in the `mods` folder in your game install and use its content in-game without overriding the base game content and still maintain compatibility with other mods.
4-
53
This chapter will walk you through the process of adding a script to a Song, and giving examples of the kind of custom behavior which can be implemented with this functionality.
64

75
Start by creating a scripted class file with the `.hxc` extension (in the `mods/mymod/scripts/songs` if you want to keep things organized).
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# Creating a Friday Night Funkin' Mod - Video Cutscenes
22

3-
This guide will walk you through the process of creating a functioning, fully compatible Friday Night Funkin' mod, using the game's official systems for loading custom content and scripts. Once your mod is complete, you will be able to place it in the `mods` folder in your game install and use its content in-game without overriding the base game content and still maintain compatibility with other mods.
4-
53
This chapter will specifically walk through using scripted Songs to implement a Video Cutscene into a mod.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# Creating a Friday Night Funkin' Mod - Ingame Cutscenes
22

3-
This guide will walk you through the process of creating a functioning, fully compatible Friday Night Funkin' mod, using the game's official systems for loading custom content and scripts. Once your mod is complete, you will be able to place it in the `mods` folder in your game install and use its content in-game without overriding the base game content and still maintain compatibility with other mods.
4-
53
This chapter will specifically walk through using scripted Songs to implement an Ingame Cutscene into a mod.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# Creating a Friday Night Funkin' Mod - Dialogue Cutscenes
22

3-
This guide will walk you through the process of creating a functioning, fully compatible Friday Night Funkin' mod, using the game's official systems for loading custom content and scripts. Once your mod is complete, you will be able to place it in the `mods` folder in your game install and use its content in-game without overriding the base game content and still maintain compatibility with other mods.
4-
53
This chapter will specifically walk through using scripted Songs to implement Dialogue Cutscenes into a mod, like those seen in Week 6.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# Creating a Friday Night Funkin' Mod - Scripted Characters
22

3-
This guide will walk you through the process of creating a functioning, fully compatible Friday Night Funkin' mod, using the game's official systems for loading custom content and scripts. Once your mod is complete, you will be able to place it in the `mods` folder in your game install and use its content in-game without overriding the base game content and still maintain compatibility with other mods.
4-
53
This chapter will walk you through the process of adding a script to a Character, and giving examples of the kind of custom behavior which can be implemented with this functionality.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# Creating a Friday Night Funkin' Mod - Scripted Stages
22

3-
This guide will walk you through the process of creating a functioning, fully compatible Friday Night Funkin' mod, using the game's official systems for loading custom content and scripts. Once your mod is complete, you will be able to place it in the `mods` folder in your game install and use its content in-game without overriding the base game content and still maintain compatibility with other mods.
4-
53
This chapter will walk you through the process of adding a script to a Stage, and giving examples of the kind of custom behavior which can be implemented with this functionality.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# Creating a Friday Night Funkin' Mod - Scripted Story Levels
22

3-
This guide will walk you through the process of creating a functioning, fully compatible Friday Night Funkin' mod, using the game's official systems for loading custom content and scripts. Once your mod is complete, you will be able to place it in the `mods` folder in your game install and use its content in-game without overriding the base game content and still maintain compatibility with other mods.
4-
53
This chapter will walk you through the process of adding a script to a Story Mode Level, and giving examples of the kind of custom behavior which can be implemented with this functionality.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# Creating a Friday Night Funkin' Mod - Scripted Note Kinds
22

3-
This guide will walk you through the process of creating a functioning, fully compatible Friday Night Funkin' mod, using the game's official systems for loading custom content and scripts. Once your mod is complete, you will be able to place it in the `mods` folder in your game install and use its content in-game without overriding the base game content and still maintain compatibility with other mods.
4-
53
This chapter will walk you through the process of adding a script to a Note Kind, and giving examples of the kind of custom behavior which can be implemented with this functionality.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# Creating a Friday Night Funkin' Mod - Scripted Song Events
22

3-
This guide will walk you through the process of creating a functioning, fully compatible Friday Night Funkin' mod, using the game's official systems for loading custom content and scripts. Once your mod is complete, you will be able to place it in the `mods` folder in your game install and use its content in-game without overriding the base game content and still maintain compatibility with other mods.
4-
53
This chapter will walk you through the process of adding a script to a Song Event, and giving examples of the kind of custom behavior which can be implemented with this functionality.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# Creating a Friday Night Funkin' Mod - Scripted Playable Characters
22

3-
This guide will walk you through the process of creating a functioning, fully compatible Friday Night Funkin' mod, using the game's official systems for loading custom content and scripts. Once your mod is complete, you will be able to place it in the `mods` folder in your game install and use its content in-game without overriding the base game content and still maintain compatibility with other mods.
4-
53
This chapter will walk you through the process of adding a script to a Playable Character, and giving examples of the kind of custom behavior which can be implemented with this functionality.

src/SUMMARY.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050

5151
- [Using HScript](20-using-hscript/20-00-using-hscript.md)
5252
- [What is HScript?](20-using-hscript/20-01-what-is-hscript.md)
53-
- [Scripted Classes](20-using-hscript/20-02-scripted-classes.md)
53+
- [Scripted Classes](20-using-hscript/21-00-scripted-classes.md)
54+
- [Scripted Songs](20-using-hscript/21-01-scripted-songs.md)
5455

5556
# HScript (Advanced)
5657

0 commit comments

Comments
 (0)