Skip to content
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
4b994a2
Add Graymann for playtesting
eno26 May 10, 2025
a8dfebc
I have never wanted to castrate myself before as much as I wanted to …
eno26 May 10, 2025
7630cbd
Fixes
eno26 May 11, 2025
46bb7b3
Code Betterment from wo
eno26 May 21, 2025
ff0701c
forgot this whoops
eno26 May 21, 2025
b970746
More changes (from wo)
eno26 May 22, 2025
585fe95
looping sounds fixed question mark
eno26 May 23, 2025
1568a7f
add superjump to this old fuck
eno26 Jun 15, 2025
f6e025f
graymann's demo buff
eno26 Jun 21, 2025
a83b3c9
Merge remote-tracking branch 'upstream/master'
eno26 Jun 22, 2025
f3c0ced
gaymann changes
eno26 Jun 22, 2025
59a240c
update description for gman
eno26 Jun 22, 2025
a8f3434
42 WORDING
eno26 Jun 22, 2025
6c7ae38
Merge remote-tracking branch 'upstream/master'
eno26 Aug 20, 2025
df4b6a8
Majorly increase health per player for Gray Mann's robots
eno26 Aug 20, 2025
03537b9
Merge remote-tracking branch 'upstream/master'
eno26 Aug 22, 2025
dde44b7
Piss Cakehole
eno26 Aug 22, 2025
6a92868
Remove sounds from downloads table
eno26 Aug 22, 2025
038e19c
Update Cakehole
eno26 Sep 3, 2025
3d2fa51
Piss Cakehoe changes
eno26 Sep 3, 2025
d506004
le indentation...le bad?
eno26 Sep 3, 2025
8b62725
Merge remote-tracking branch 'upstream/master'
eno26 Sep 10, 2025
3452ea5
Merge remote-tracking branch 'upstream/master'
eno26 Oct 26, 2025
b874635
Disable Outline
eno26 Oct 26, 2025
48a584e
Merge remote-tracking branch 'upstream/master'
eno26 Oct 28, 2025
e61bbab
Soulful Piss Cakehole "fix"
eno26 Oct 28, 2025
35dc428
grgregred
eno26 Oct 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions addons/sourcemod/scripting/vsh/bosses/boss_pisscakehole.sp
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ public void PissCakehole_OnSpawn(SaxtonHaleBase boss)
i_PlayerCounter[boss.iClient] = 0
TF2Attrib_SetByDefIndex(iClient, 279, 1.0);
TF2Attrib_SetByDefIndex(iClient, 315, 1.0);
SetEntityRenderColor(iClient, 5, 200, 250) //temporary fix

Format(attribs, sizeof(attribs), "2 ; 2.80 ; 252 ; 0.5 ; 259 ; 1.0");
iWeapon = boss.CallFunction("CreateWeapon", 8, "tf_weapon_bonesaw", 100, TFQual_Unusual, attribs);
Expand Down Expand Up @@ -238,6 +239,15 @@ public void PissCakehole_OnRage(SaxtonHaleBase boss)

}

/* Commented out until I know how to fix this ass
public void PissCakehole_GetHudInfo(SaxtonHaleBase boss, char[] sMessage, int iLength, int iColor[4])
{
float flVel[3];
float flSpeed = GetEntPropVector(boss.iClient, Prop_Data, "m_vecAbsVelocity", flVel);
Format(sMessage, iLength, "\nVelocity: %i%%%%", sMessage, flSpeed);
}
*/

public void PissCakehole_GetModel(SaxtonHaleBase boss, char[] sModel, int length)
{
strcopy(sModel, length, CAKEHOLE_MODEL);
Expand Down