Raised This Month: $ Target: $400
 0% 

Showing results 1 to 25 of 500
Search took 0.08 seconds.
Search: Posts Made By: fysiks
Forum: Scripting Help Yesterday, 21:56
Replies: 7
Views: 209
Posted By fysiks
Re: Duration & Cooldown

Please stop using large text for absolutely no reason.
Forum: Suggestions / Requests Yesterday, 21:54
Replies: 2
Views: 104
Posted By fysiks
Re: Request modify .sma to inl.

What does that even mean?
Forum: Suggestions / Requests Yesterday, 21:19
Replies: 5
Views: 167
Posted By fysiks
Re: adminvote plugin

How what? If you're talking about using the amx_votemapmenu command from chat, you just need to do what he said and edit mapsmenu.sma, compile it, and install it on your server.
Forum: HL1 Servers (HLDS) Yesterday, 21:18
Replies: 1
Views: 97
Posted By fysiks
Re: How can I change my wargods scan Unique Id

I don't see any game that runs on HLDS or even SRCDS called "WarGods". It sounds like you need to find a website that supports whatever game your playing.
Forum: Scripting Help 05-03-2024, 00:27
Replies: 2
Views: 126
Posted By fysiks
Re: single use parachute extra item

It looks like you might be able to add:


ClearUserHasParachute(id)


to the end of the function RemoveUserParachute(). Then remove all uses of MarkUserHasParachute().

Then you need a way...
Forum: Suggestions / Requests 05-03-2024, 00:14
Replies: 5
Views: 167
Posted By fysiks
Re: adminvote plugin

It doesn't really make sense to make that command be usable from a say command as it requires several arguments. Using the the menu makes more sense as was eluded to by mlibre.

P.S. Also,...
Forum: Suggestions / Requests 05-01-2024, 23:13
Replies: 5
Views: 261
Posted By fysiks
Re: Welcome

Oh, so you're not even going to try . . . that's a good way to get a bad reputation.

The first plugin (" GHW Connect Messages") in the link that I provided should do what you asked for. Just set...
Forum: Suggestions / Requests 04-30-2024, 22:59
Replies: 7
Views: 332
Posted By fysiks
Re: Skill points become negative

No idea what you just said.
Forum: Scripting Help 04-30-2024, 22:53
Replies: 8
Views: 363
Posted By fysiks
Re: Open MENU on button N

That menu system already closes the menu when you select an option. If it's still showing then you show it to them again so you need to not do that.

P.S. also note that it is impossible to know...
Forum: Suggestions / Requests 04-30-2024, 22:47
Replies: 5
Views: 261
Posted By fysiks
Re: Welcome

Here are some options (https://forums.alliedmods.net/search.php?do=process&query=connect&titleonly=1&forumchoice[]=8). If you can find that that is close to what you want, it might be easy to add...
Forum: HL1 Servers (HLDS) 04-30-2024, 22:28
Replies: 6
Views: 441
Posted By fysiks
Re: cs 1.6 how many servers can i run

You'll just have to try it out and see. One major limitation you're going to need to address is the bandwidth requirement. There used to be an article that gave example bandwidth requirements per...
Forum: Scripting Help 04-28-2024, 15:22
Replies: 18
Views: 894
Posted By fysiks
Re: Amx [FAKEMETA] g_pGameRules adress could not be found

Stop thinking that you can use AMX Mod X 1.8.2 for any server today, it's not even worth trying it.
Forum: Suggestions / Requests 04-28-2024, 15:13
Replies: 7
Views: 332
Posted By fysiks
Re: Skill points become negative

If you need to just make sure that the value doesn't go below zero, you can add a check after every location that subtracts a value such as this:


if( g_skills[id] < 0 )
{
g_skills[id] = 0
}
Forum: HL1 Servers (HLDS) 04-27-2024, 19:00
Replies: 2
Views: 294
Posted By fysiks
Re: No error, the server process is running, but the client does not find the server

Did you make sure to update your server to the latest version via SteamCMD? Also, I see you have an error from some non-standard plugin, did you try to also do a fresh install of AMX Mod X and then...
Forum: Scripting Help 04-26-2024, 21:41
Replies: 8
Views: 474
Posted By fysiks
Re: Change color in menu

It looks like you can change the number color in the "new menus" by setting the MPROP_NUMBER_COLOR (https://github.com/alliedmodders/amxmodx/blob/master/plugins/include/newmenus.inc#L75) property:
...
Forum: Scripting Help 04-26-2024, 00:46
Replies: 8
Views: 474
Posted By fysiks
Re: Change color in menu

You're using the wrong slash here. Makes a huge difference.
Forum: Scripting Help 04-26-2024, 00:46
Replies: 18
Views: 894
Posted By fysiks
Re: Amx [FAKEMETA] g_pGameRules adress could not be found

I highly recommend getting the server working with all official stuff (i.e. no ReHLDS) first so that you have fewer variables to deal with.
Forum: Suggestions / Requests 04-26-2024, 00:22
Replies: 3
Views: 331
Posted By fysiks
Re: Edit this plugin

The problem is that you're misunderstanding how the "paccess" parameter in menu_additem() works. A value of 1 for this parameter allows anybody with immunity to access that item. The values that...
Forum: Suggestions / Requests 04-25-2024, 23:51
Replies: 8
Views: 433
Posted By fysiks
Re: asking player on connect

No commands are necessary, it's part of the GUI. Also, there are multiple volume settings (4 of them) and new players should learn about them anyways. If you need to provide guidance, then just do...
Forum: General 04-25-2024, 23:44
Replies: 3
Views: 651
Posted By fysiks
Re: Amx_banmenu problem!

Yeah, so I didn't mention that because it's easy to not do it correctly. If you edit this file while the server is running, it will just get overwritten when the server changes maps or shuts down...
Forum: Suggestions / Requests 04-24-2024, 21:55
Replies: 8
Views: 433
Posted By fysiks
Re: asking player on connect

Just leave people's settings alone. If they want to change their volume, they can do it in the options.
Forum: Approved Plugins 04-24-2024, 21:53
Replies: 741
Views: 682,516
Posted By fysiks
Re: Bad Camper 1.4.239

What plugin are you trying to compile? The plugin for this thread doesn't have code that can generate that error on those lines. Also, the has_flag() is commented out and should not be needed...
Forum: General 04-24-2024, 21:32
Replies: 3
Views: 651
Posted By fysiks
Re: Amx_banmenu problem!

amx_unban should work:


amx_unban "STEAM_0:0:1234"


Otherwise:

If it was a temporary ban (a length of time that is non-zero) then you can shut down the server and then start it again. ...
Forum: Scripting Help 04-24-2024, 01:36
Replies: 18
Views: 894
Posted By fysiks
Re: Amx [FAKEMETA] g_pGameRules adress could not be found

Maybe I'm blind (and I haven't used Windows for years now) but where did you find an installer for version 1.10.0? Though, I suspect that even the installer will allow you to not properly install...
Forum: General 04-22-2024, 22:38
Replies: 12
Views: 1,027
Posted By fysiks
Re: CHEATERS

Umm, no, this is not practical and has a major caveat. It will not work unless the server is fully stopped while doing it. If the server is running, it will 1) not be loaded and 2) be overwritten...
Showing results 1 to 25 of 500

 
Forum Jump

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


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