Mods and file packs for Desktop Goose
View the Project on GitHub DesktopGooseUnofficial/ResourceHub
A very weird version of the Goose we know and love ❤
Download: AcidGoose.zip
Goose Version: v0.3
Author: ⧹ F!NN ⧸#1580
The code is kinda trash but I am still learning… Please dont blame me o.O
First, make sure that you are running Desktop Goose 0.3/0.31 on Windows. The macOS version does not support mods.
Mods
folder in the Assets
folder.AcidGoose.zip
file.AcidGoose.zip
file to the Mods
directory.config.ini
file and change EnableMods=False
to EnableMods=True
, then save it.Need help? You can ask for support in the #goose-modding channel on the Discord server.
public void PostTick(GooseEntity g)
{
float noicedirection = 0;
ThreadPool.QueueUserWorkItem(dospinning);
ThreadPool.QueueUserWorkItem(updateRotation);
ThreadPool.QueueUserWorkItem(honk);
void dospinning (object state)
{
while (true)
{
noicedirection = noicedirection + 4f;
if (noicedirection == 360)
{
noicedirection = 0;
}
//Task.WaitAll(100);
Thread.Sleep(1);
}
}
void updateRotation (object state)
{
while (true)
{
g.direction = noicedirection;
}
}
void honk (object state)
{
while (true)
{
API.Goose.playHonckSound();
Thread.Sleep(700);
}
}