Very nice game, I discovered first the Roblox version, then I decided to play the original one and I got a bit surprised how the original one is much more scary!
SO Many Scares I Quit The Game.. | 4 Scary Games (Plus Bonus Game)
FINAL GAME IN VIDEO | This game was actually hilarious, got scary towards the end but was overall fun 😂 would appreciate if anyone liked & watch the video !
make sure to have a .rar extractor program, if you already have one try: right-click => open with => select the extractor program (WinRAR is fantastic)
I thoroughly Enjoyed this Horror Game I've Always been a huge fan of out of the box horror game sand this one really hit the spot on funny, scary and entertaining i also recorded a youtube video on it!
Definitely competes with the triple-A games from game awards and Demolishes them. This experience changed my life, (Psst I made a video of it as well :> ).
I had a lot of fun playing this with my wife. I had no idea what a Pou was until my kids told me that I had to play this for my lets play channel. and now its doing really well for me. Thank you for this game, you're awesome RUDY
I knew this game was gonna be weird and silly. But I didn’t like it too much. I kept throwing the pet into nothingness and had to keep restarting since I couldn’t continue. The environment was bland not much detail. And driving the car felt a little difficult for me. This is just my personal opinion. I don’t know how to make a game so I give props for making one. The game was entertaining for what it was. And I was definitely a little creeped out.
I was surprised myself that this had such a huge following. Definitely will play your second game and possibly even get the extra endings to this one! Can’t wait to see you improve. 😁
To add a manual save mechanic in Unity, you'll need to create a system to save and load game data, typically using C# scripting. Here’s a step-by-step guide to help you implement this feature:
1. Create a SaveData Class:
Define a class that represents the data you want to save. This class should be serializable.
csharp
[System.Serializable]
public class SaveData
{
public int playerScore;
public Vector3 playerPosition;
// Add more fields as needed
}
```
2. Serialize the Data:
Use JSON or another serialization method to convert the SaveData object into a string format that can be saved to a file.
Create methods to save and load the game state. You can call these methods from your game’s UI (e.g., a save button).
```csharp
public class GameManager : MonoBehaviour
{
public SaveData currentData;
public void SaveGame()
{
currentData = new SaveData();
currentData.playerScore = // get player score;
currentData.playerPosition = // get player position;
SaveSystem.SaveGame(currentData);
}
public void LoadGame()
{
SaveData loadedData = SaveSystem.LoadGame();
if (loadedData != null)
{
// Set player score and position from loaded data
currentData = loadedData;
}
}
}
```
4. Handling Player Data:
When saving, you’ll need to collect the necessary data from your game objects (like the player's position and score) and when loading, you’ll need to apply the loaded data back to your game objects.
By following these steps, you can implement a manual save and load system in Unity that allows players to save their progress and resume later. For more detailed guidance, you can refer to Unity's official documentation on saving and loading game data.
← Return to game
Comments
Log in with itch.io to leave a comment.
Very nice game, I discovered first the Roblox version, then I decided to play the original one and I got a bit surprised how the original one is much more scary!
SO Many Scares I Quit The Game.. | 4 Scary Games (Plus Bonus Game)
FINAL GAME IN VIDEO | This game was actually hilarious, got scary towards the end but was overall fun 😂 would appreciate if anyone liked & watch the video !yes
O jogo me estressou bastante, mas me rendou um video mt engraçado
ri muito nesse jogo 10/10
I laughed a lot at this game 10/10
It's fun!
doesnt give me a file to extract..
make sure to have a .rar extractor program, if you already have one try: right-click => open with => select the extractor program (WinRAR is fantastic)
VERY GLICH
Otro final! nos ha costado pero lo hemos conseguido.... XD
is this for free
yes
Crossing my fingers for a sequel.
BEST BOU PLAYER OUT THERE
Rudy I want Bou's Revenge2 Please
sub to my YouTube channel a trailer is coming soon
OH YEAAAAAAH I'm so excited to see it i can't wait for it . Thanks Rudy you're The Best
I subscribed you RUDY. :)
loved it
Yooo i have seen the video before playing it
Awesome Pou game and Here it is Gameplay from Indonesia
In diesem Horror Game namens BOUS REVENGE dürfen wir auf keinen Fall das Maskottchen füttern ...
bro pleasee make a sequel on this game WE NEED IT ☠️☠️
sub to my YouTube channel a trailer is coming soon
I thoroughly Enjoyed this Horror Game I've Always been a huge fan of out of the box horror game sand this one really hit the spot on funny, scary and entertaining i also recorded a youtube video on it!
Muy buen juego la verdad, demasiado bizarro y divertido 10/10 acá dejo mi gameplay por si alguno le gustara pasarse a verlo :D
//
Really great game, honestly. It's super bizarre and fun, 10/10. Here's my gameplay if anyone wants to check it out
Nearly had a stroke trying to get through this with all the glitches and restarts but we got somewhere..
gyat
i like
does that queen have that gyat?
Definitely competes with the triple-A games from game awards and Demolishes them. This experience changed my life,
(Psst I made a video of it as well :> ).
I enjoyed this. They are so cute
I had a lot of fun playing this with my wife. I had no idea what a Pou was until my kids told me that I had to play this for my lets play channel. and now its doing really well for me. Thank you for this game, you're awesome RUDY
this game was crazy. thank you for making this game, it was great!
hey it works on google play
I just want to know HOW STRONG is this POU?!!!! Really, wacky game
I knew this game was gonna be weird and silly. But I didn’t like it too much. I kept throwing the pet into nothingness and had to keep restarting since I couldn’t continue. The environment was bland not much detail. And driving the car felt a little difficult for me. This is just my personal opinion. I don’t know how to make a game so I give props for making one. The game was entertaining for what it was. And I was definitely a little creeped out.
Thx for your feedback, I made this game for YouTube video so I didn't expected it to blow up that much.
I'm working on Bou 2 which will be a real game though ;)
I was surprised myself that this had such a huge following. Definitely will play your second game and possibly even get the extra endings to this one! Can’t wait to see you improve. 😁
I'm having trouble on extracting the game. How do I do this? :)
download WinRAR (free) and extract using it
Rudy i need help i dont know how to open the game cause the game dowloads as a carpet dont know what to do
download WinRAR (free) and extract using it
O,Thank you!
O JOGO E INCRÍVEL JOGUEI NO CELULAR
pou has LOST it.
To add a manual save mechanic in Unity, you'll need to create a system to save and load game data, typically using C# scripting. Here’s a step-by-step guide to help you implement this feature:
1. Create a SaveData Class:
Define a class that represents the data you want to save. This class should be serializable.
csharp
[System.Serializable]
public class SaveData
{
public int playerScore;
public Vector3 playerPosition;
// Add more fields as needed
}
```
2. Serialize the Data:
Use JSON or another serialization method to convert the SaveData object into a string format that can be saved to a file.
```csharp
using UnityEngine;
using System.IO;
public static class SaveSystem
{
public static void SaveGame(SaveData data)
{
string json = JsonUtility.ToJson(data);
File.WriteAllText(Application.persistentDataPath + "/savefile.json", json);
}
public static SaveData LoadGame()
{
string path = Application.persistentDataPath + "/savefile.json";
if (File.Exists(path))
{
string json = File.ReadAllText(path);
return JsonUtility.FromJson<SaveData>(json);
}
else
{
Debug.LogError("Save file not found in " + path);
return null;
}
}
}
```
3. Save and Load Methods:
Create methods to save and load the game state. You can call these methods from your game’s UI (e.g., a save button).
```csharp
public class GameManager : MonoBehaviour
{
public SaveData currentData;
public void SaveGame()
{
currentData = new SaveData();
currentData.playerScore = // get player score;
currentData.playerPosition = // get player position;
SaveSystem.SaveGame(currentData);
}
public void LoadGame()
{
SaveData loadedData = SaveSystem.LoadGame();
if (loadedData != null)
{
// Set player score and position from loaded data
currentData = loadedData;
}
}
}
```
4. Handling Player Data:
When saving, you’ll need to collect the necessary data from your game objects (like the player's position and score) and when loading, you’ll need to apply the loaded data back to your game objects.
By following these steps, you can implement a manual save and load system in Unity that allows players to save their progress and resume later. For more detailed guidance, you can refer to Unity's official documentation on saving and loading game data.
honey I don't want to fix my game I like it this way, u better hype up for Bou 2 sub to my YT to know when it's out :)