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

Showing results 1 to 25 of 484
Search took 0.02 seconds.
Search: Posts Made By: pizzahut
Forum: New Plugin Submissions 09-16-2023, 07:18
Replies: 14
Views: 5,812
Posted By pizzahut
Re: [TFC] Bug Fixes v1.4

Probably needs at least AMXX version 1.9, not sure when exactly the gamedata files were added.

If you want to keep the old AMXX version for some reason, you could try replacing get_ent_data with...
Forum: Approved Plugins 07-13-2023, 15:34
Replies: 20
Views: 19,921
Posted By pizzahut
Re: Simple Team Balancer for TFC

Uploaded a new beta version (6).

- Teams on avanti style maps are now detected.

This bug was a side effect of a previous bug fix in beta 5, where instead of looking for any entity class with a...
Forum: New Plugin Submissions 06-10-2023, 06:34
Replies: 14
Views: 5,812
Posted By pizzahut
Re: [TFC] Bug Fixes v1.4

The version number is still 1.3 in the source code.
Forum: Approved Plugins 02-08-2023, 10:31
Replies: 36
Views: 23,727
Posted By pizzahut
Re: Family Sharing Management

The solution I had in mind before I learned about this plugin was to check for limited Steam accounts.

I don't know if this is covered by the Steam web API, but parsing the XML should work.
...
Forum: Approved Plugins 01-15-2023, 06:30
Replies: 59
Views: 52,441
Posted By pizzahut
Re: Custom Vote Menus

A file which is literally called "name.ini" isn't needed, but it doesn't stop the plugin from working either. So, it should have worked what you did.

I would double check that the spelling...
Forum: Scripting Help 01-05-2023, 12:34
Replies: 4
Views: 816
Posted By pizzahut
Re: SetMapConfigTimer

https://github.com/alliedmodders/amxmodx/commit/c511d80da7b5a9bb5f3700b5c8b4bfc5bb343362
Not much info there. Added a comment to the commit.

AMXX 0.20 RC7 changes don't mention it....
Forum: Scripting Help 01-04-2023, 18:54
Replies: 4
Views: 816
Posted By pizzahut
SetMapConfigTimer

Map specific configs are loaded with a 6.1s delay by AMXX. I know the function ("delayed_load") used to be in admin.sma with AMXX 1.8.x, and was later moved into CoreConfig.cpp and configured in...
Forum: HL1 Servers (HLDS) 05-11-2022, 06:22
Replies: 3
Views: 1,382
Posted By pizzahut
Re: CPU usage of AMXX and Metamod plugins

Thanks DruGzOG!

Edit: Seems hocon84 is a spam bot (signature).
Forum: HL1 Servers (HLDS) 05-03-2022, 09:55
Replies: 3
Views: 1,382
Posted By pizzahut
CPU usage of AMXX and Metamod plugins

Is there a way to find out which AMXX and Metamod plugins use the CPU the most when the server is full ? (Other than disabling all plugins and enabling them one at a time, looking at total CPU usage.)
Forum: Approved Plugins 03-28-2022, 19:14
Replies: 59
Views: 52,441
Posted By pizzahut
Re: Custom Vote Menus

If someone votes "Don't care", it shouldn't be counted IMO.

I made this change right now, though I won't be able to test it properly before the next gather.

public VotePushed(id,key)
{...
Forum: Approved Plugins 09-29-2021, 05:22
Replies: 36
Views: 30,277
Posted By pizzahut
Re: Multi Vote

For other people reading this: https://github.com/alliedmodders/amxmodx/issues/848



This might happen, however 0 isn't a valid player index for this command.

L 09/29/2021 - 10:55:13: Invalid...
Forum: Approved Plugins 09-28-2021, 06:40
Replies: 36
Views: 30,277
Posted By pizzahut
Re: Multi Vote

As already mentioned, it's not a player index, but an array index. I've omitted the next line because it's different for the two locations with the bug. But the use of "get_players" should be a clue....
Forum: Approved Plugins 09-24-2021, 08:36
Replies: 36
Views: 30,277
Posted By pizzahut
Re: Multi Vote

There's a bug with two occurrences in the source code.
While player IDs start with 1, array indexes start with 0.
So in lines 65 to 67 and 104 to 106 this is wrong:
get_players(Players, iNum,...
Forum: General 09-22-2021, 07:59
Replies: 2
Views: 2,634
Posted By pizzahut
Re: [TFC] Server Crash on Infection

This bug has been fixed in the latest AMXX 1.9 and 1.10.

Thanks to Shooting King !
Forum: Scripting Help 03-09-2021, 14:30
Replies: 9
Views: 2,403
Posted By pizzahut
Re: tfc_setmodel with skin support

Sorry for the necro. Looked into this again because I wrote a plugin dealing with models and stumbled upon this old thread. I found this works, using a skin number instead of the name:

...
Forum: New Plugin Submissions 02-08-2021, 04:46
Replies: 83
Views: 24,959
Posted By pizzahut
Re: Proxy snort 1.3 (Updated 12/25/2020)

Maybe it would make sense to break compatibility with AMXX v1.8.2, because proxycheck.io is using JSON and the 1.9 branch of AMXX has a module to parse it. On the other hand, there still are a lot of...
Forum: New Plugin Submissions 01-31-2021, 06:04
Replies: 83
Views: 24,959
Posted By pizzahut
Re: Proxy snort 1.3 (Updated 12/25/2020)

You need to add vpn=1 to the parameters which are used here:

formatex(constring,charsmax (constring), "GET /v2/%s?key=%s&inf=1&asn=1&risk=2&days=30&tag=%s,%s HTTP/1.0^nHost: proxycheck.io^n^n",...
Forum: Unapproved/Old Plugins 12-20-2020, 17:00
Replies: 16
Views: 12,024
Posted By pizzahut
Re: Bots vs. Humans (co-op) for TFC

The bots don't keep assigned teams, they can switch when they die AFAIK.

Maybe -X- (server admin) or RoboCop (FoxBot maintainer) have an idea how to prevent this from happening.
...
Forum: New Plugin Submissions 10-28-2020, 06:10
Replies: 83
Views: 24,959
Posted By pizzahut
Re: Proxy snort 1.2 (Updated 10/08/2020)

About the tag, you could use http://www.amxmodx.org/api/amxmodx/get_modname to catch all mods.

new mod_name[32]
get_modname(mod_name, charsmax(mod_name))
set_pcvar_string(g_cvar_tag, mod_name)
...
Forum: Unapproved/Old Plugins 08-29-2020, 15:55
Replies: 3
Views: 14,555
Posted By pizzahut
Re: Entity Info

DJEarthQuake (https://forums.alliedmods.net/member.php?u=245430) wants to continue this plugin. If his updated version gets approved, this thread (old plugin) can be unapproved.
Forum: General 05-30-2020, 08:22
Replies: 3
Views: 1,698
Posted By pizzahut
Re: tfc_get_user_goalitem might be broken on Linux

Yeah just added. :)

https://github.com/alliedmodders/amxmodx/issues/865
Forum: General 05-30-2020, 07:26
Replies: 3
Views: 1,698
Posted By pizzahut
Re: tfc_get_user_goalitem might be broken on Linux

Looked into this today.

According to

https://github.com/alliedmodders/amxmodx/blob/master/modules/tfcx/CMisc.h

PD_HAS_GOALITEM is 26

This is correct for Windows.
Forum: General 04-25-2020, 14:15
Replies: 3
Views: 1,698
Posted By pizzahut
tfc_get_user_goalitem might be broken on Linux

Since I updated the HLDS a few months ago, this plugin stopped working:

https://rv.apg-clan.org/dlds/amxx_plugins/bot_flag_drop21.sma

It looks like tfc_get_user_goalitem is always returning...
Forum: Suggestions / Requests 09-10-2019, 06:34
Replies: 2
Views: 2,423
Posted By pizzahut
Re: Discord chat

Thanks, forwarded this to other server admins as well.
Forum: Suggestions / Requests 03-05-2019, 06:14
Replies: 8
Views: 2,428
Posted By pizzahut
Re: [Request] Discord Server Connection

Well it's an old thread, sorry for replying.
Showing results 1 to 25 of 484

 
Forum Jump

All times are GMT -4. The time now is 19:38.


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