Raised This Month: $32 Target: $400
 8% 

Showing results 1 to 24 of 24
Search took 0.01 seconds.
Search: Posts Made By: poggu
Forum: Plugins 02-06-2023, 12:17
Replies: 17
Views: 5,711
Posted By poggu
Forum: Extensions 02-05-2023, 07:41
Replies: 161
Views: 118,942
Posted By poggu
Re: CollisionHook

PassServerEntityFilter


\x55\x89\xE5\x57\x56\x53\x83\xEC\x0C\x8B\x5D\x0C\x8B\x75\x08\x85\xDB\x0F\x84\x2A\x2A\x2A\x2A\x39\xF3
Forum: Snippets and Tutorials 02-04-2023, 08:05
Replies: 22
Views: 25,693
Posted By poggu
Re: [CS:GO/CSS] Increase HUD limit for money, heath and armor

Gamedata after 2/2/23 update


"Games"
{
"csgo"
{
"Offsets"
{
"CSendProp::m_nBits"
Forum: Plugins 12-22-2022, 07:34
Replies: 5
Views: 2,030
Posted By poggu
Re: [CS:GO] Edict Limiter (Prevent "no free edicts")

Added ed_lowedict_action, ed_lowedict_threshold, ed_lowedict_block_threshold, ed_announce_once as requested by Bacardi.
Forum: Plugins 12-22-2022, 06:47
Replies: 5
Views: 2,030
Posted By poggu
Forum: Plugins 12-21-2022, 15:45
Replies: 5
Views: 2,030
Posted By poggu
[CS:GO] Edict Limiter (Prevent "no free edicts")

Edict Limiter

This plugin prevents the server from crashing because of no remaining free edicts, crash known as "ED_Alloc: no free edicts".
When there's more edicts than ed_lowedict_threshold...
Forum: Plugins 10-23-2022, 10:16
Replies: 17
Views: 5,711
Posted By poggu
Re: [CS:GO] S2AProxy (Exclude players from the server player list)

Updated both linux and windows signatures after csgo update.
Forum: Plugins 09-29-2022, 15:01
Replies: 2
Views: 1,026
Posted By poggu
Re: [CS:GO] Progress bar unlocker

Hm, anything in particular? You did remind me to restore the bytes on unload though heh.
Edit: updated with more error handling and proper unloading
Forum: Plugins 09-29-2022, 11:51
Replies: 0
Views: 855
Posted By poggu
[CS:GO] Bump Mine Spectator Fix

Bump Mine Spectator Fix
Hooks the bump mine think function to prevent dead people exploding the bump mines, anyone can rewrite the plugin to make their own conditions.

Dependencies

DHooks...
Forum: Plugins 09-29-2022, 11:33
Replies: 2
Views: 1,026
Posted By poggu
[CS:GO] Progress bar unlocker

Progress bar unlocker
Patches the m_iProgressBarDuration netprop size to allow for longer progress bars, e.g. allows making a year long progress bar. Old maximum was 16 seconds iirc.
Forum: Plugins 09-29-2022, 11:19
Replies: 0
Views: 682
Posted By poggu
[CS:GO] Hostage Pickup Time Modifier

Hostage Pickup Time Modifier
Changes the hostage pickup time with convars, originally made for a person in the AlliedModders discord but thought I might as well release it.

ConVars

//...
Forum: Scripting 07-11-2022, 17:06
Replies: 6
Views: 831
Posted By poggu
Re: [CS:GO] Modifying knife properties

The slash/stab distance is hard coded and there's no netprop for it. I made a simple memroy patch that can change the stab distance...
Forum: Plugins 05-24-2022, 02:02
Replies: 2
Views: 1,735
Posted By poggu
Re: [CS:GO] Display Server Edicts

I suggest starting the for loop in GetEdictCount from MAXPLAYERS + 1 and also adding such to the count of used edicts as csgo reserves first edicts for possible players and cannot ever be used for...
Forum: Scripting 02-06-2022, 11:50
Replies: 7
Views: 1,568
Posted By poggu
Re: DHooks getting param

Looking at your code you posted, you assume that the class members will start at offset 0. This doesn't always have to be the case, for e.g. if your class has virtual methods the class will have to...
Forum: Plugins 01-24-2022, 03:59
Replies: 40
Views: 17,394
Posted By poggu
Re: [CS GO] Staff Modes - Fake Leave and Join Server for Staff

I'm talking about sendproxy, that's another extension that has nothing to do with S2AProxy. I've not found any usage of the extension in your plugin.
Forum: Plugins 01-18-2022, 09:26
Replies: 40
Views: 17,394
Posted By poggu
Re: [CS GO] Staff Modes - Fake Leave and Join Server for Staff

Also make sure to update S2AProxy in your plugin, there was a small bug that would break the whole player list
Forum: Plugins 01-18-2022, 06:55
Replies: 17
Views: 5,711
Posted By poggu
Re: [CS:GO] S2AProxy (Exclude players from the server player list)

I don't really want to introduce unneeded string comparasions, you're right in the sense that if more plugins use such it would actually become slower than just iterating everyone. A picture in my...
Forum: Snippets and Tutorials 01-17-2022, 03:56
Replies: 1
Views: 2,650
Posted By poggu
[CS:GO] How to properly get the free edict count

How to properly get the free edict count

Compared to other source games CSGO has a pretty different way of handling edicts, there's 2048 slots that can be allocated and then used.
Edict slots can...
Forum: Plugins 01-17-2022, 03:29
Replies: 40
Views: 17,394
Posted By poggu
Re: [CS GO] Staff Modes - Fake Leave and Join Server for Staff

Nice plugin! However I would recommend not packing sendproxy with the plugin. SendProxy is a really heavy extension as it has to proxy all entity properties, this will cause insane lag with a server...
Forum: Plugins 01-17-2022, 03:24
Replies: 17
Views: 5,711
Posted By poggu
Re: [CS:GO] S2AProxy (Exclude players from the server player list)

Nope, the plugin is still aware about the client being on the server and it has to be, this removes the player from A2S responses, that's valve's server query protocol for other services to get...
Forum: Snippets and Tutorials 01-03-2022, 09:50
Replies: 18
Views: 12,868
Posted By poggu
Re: [Tutorial] Some Quality Changes & Improvements in Source Engine

Thanks for this thread, I find this stuff really interesting and it's super fun for me to try out this stuff. I've made a test plugin doing few changes mentioned in this thread, here's the code and...
Forum: Plugins 12-29-2021, 05:52
Replies: 17
Views: 5,711
Posted By poggu
Re: [CS:GO] S2AProxy (Exclude players from the server player list)

Nope this doesn't change the max players count. You could experiment with the code and try changing that as A2S_INFO includes the max players information...
Forum: Plugins 12-29-2021, 05:46
Replies: 17
Views: 5,711
Posted By poggu
Re: [CS:GO] S2AProxy (Exclude players from the server player list)

Yes it can exclude any name from the list including bots
Forum: Plugins 12-29-2021, 05:42
Replies: 17
Views: 5,711
Posted By poggu
[CS:GO] S2AProxy (Exclude players from the server player list)

S2AProxy

This plugin exposes an API for plugins to exclude players from the server browser player list. This could be used to hide admins in admin stealth plugins.

This plugin only intercepts...
Showing results 1 to 24 of 24

 
Forum Jump

All times are GMT -4. The time now is 15:45.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode