Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 6 additions & 6 deletions addons/sourcemod/gamedata/selectivebhop.games.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"#supported"
{
"engine" "csgo"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wait where do we even use this gamedata?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hold on, these gamedata seem to never be used on SelectiveBhop, maybe it was pushed when we added csgo support to multiples plugin but never pushed the csgo branch ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah xD

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Im closing and making a new pr to remove gamedata.

"engine" "css"
}

"Offsets"
Expand Down Expand Up @@ -42,35 +42,35 @@
"CCSGameMovement::OnLand"
{
"library" "server"
"linux" "\x55\x89\xE5\x57\x56\x53\x83\xEC\x4C\x8B\x75\x08\xF3\x0F\x10\x45\x0C\xF3\x0F\x11\x45\xE4\x8B\x9E\x54\x0E\x00\x00"
"linux" "@_ZN13CGameMovement6OnLandEf"
}

// CCSGameMovement::OnLand v CCSPlayer::OnLand
"CCSPlayer::OnLand"
{
"library" "server"
"linux" "\x55\x89\xE5\x81\xEC\x68\x02\x00\x00\x89\x5D\xF4\x8B\x5D\x08\x89\x75\xF8\x89\x7D\xFC\x89\x1C\x24\xE8\x2A\x2A\x2A\x2A\x85\xC0"
"linux" "@_ZN9CCSPlayer6OnLandEf"
}

// Str: "player_jump" ^ CCSGameMovement::CheckJumpButton ^ CCSGameMovement:: v CCSGameMovement::OnJump
"CCSGameMovement::OnJump"
{
"library" "server"
"linux" "\x55\x89\xE5\x57\x56\x53\x83\xEC\x4C\x8B\x75\x08\xF3\x0F\x10\x45\x0C\xF3\x0F\x11\x45\xE4\x8B\x86\x54\x0E\x00\x00"
"linux" "@_ZN13CGameMovement6OnJumpEf"
}

// CCSGameMovement:: v CCSGameMovement::PreventBunnyJumping
"CCSGameMovement::PreventBunnyJumping"
{
"library" "server"
"linux" "\x55\xF3\x0F\x10\x0D\x2A\x2A\x2A\x2A\x89\xE5\x8B\x45\x08\x8B\x90\x54\x0E\x00\x00"
"linux" "@_ZN15CCSGameMovement19PreventBunnyJumpingEv"
}

// CCSGameMovement:: v CCSGameMovement::CheckJumpButton
"CCSGameMovement::CheckJumpButton"
{
"library" "server"
"linux" "\x55\x89\xE5\x81\xEC\xC8\x00\x00\x00\x89\x5D\xF4\x8B\x5D\x08\x89\x75\xF8\x89\x7D\xFC\x8B\x83\x54\x0E\x00\x00"
"linux" "@_ZN13CGameMovement15CheckJumpButtonEv"
}
}

Expand Down
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/include/SelectiveBhop.inc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define _SelectiveBhop_Included

#define SelectiveBhop_V_MAJOR "1"
#define SelectiveBhop_V_MINOR "2"
#define SelectiveBhop_V_MINOR "3"
#define SelectiveBhop_V_PATCH "0"

#define SelectiveBhop_VERSION SelectiveBhop_V_MAJOR..."."...SelectiveBhop_V_MINOR..."."...SelectiveBhop_V_PATCH
Expand Down
Loading