96 lines
1.9 KiB
Plaintext
96 lines
1.9 KiB
Plaintext
if (global.recipemode != "index")
|
|
{
|
|
audio_play_sound(jukechange, 1, false)
|
|
audio_sound_gain(jukechange, ((global.sfxvolume - 20) / 100), 0)
|
|
}
|
|
if (global.recipemode == "sweet")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 21
|
|
}
|
|
else if (global.recipemode == "bitter")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 22
|
|
}
|
|
else if (global.recipemode == "sour")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 9
|
|
}
|
|
else if (global.recipemode == "spicy")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 14
|
|
}
|
|
else if (global.recipemode == "bubbly")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 2
|
|
}
|
|
else if (global.recipemode == "girly")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 21
|
|
}
|
|
else if (global.recipemode == "manly")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 13
|
|
}
|
|
else if (global.recipemode == "classic")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 2
|
|
}
|
|
else if (global.recipemode == "classy")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 1
|
|
}
|
|
else if (global.recipemode == "promo")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 12
|
|
}
|
|
else if (global.recipemode == "b")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 5
|
|
}
|
|
else if (global.recipemode == "c")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 14
|
|
}
|
|
else if (global.recipemode == "f")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 10
|
|
}
|
|
else if (global.recipemode == "g")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 4
|
|
}
|
|
else if (global.recipemode == "m")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 2
|
|
}
|
|
else if (global.recipemode == "p")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 22
|
|
}
|
|
else if (global.recipemode == "s")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 1
|
|
}
|
|
else if (global.recipemode == "z")
|
|
{
|
|
global.indexphase = "home"
|
|
global.recipeindex = 24
|
|
}
|