Raised This Month: $51 Target: $400
 12% 

Showing results 1 to 25 of 500
Search took 0.12 seconds.
Search: Posts Made By: fysiks
Forum: General Yesterday, 22:38
Replies: 11
Views: 436
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...
Forum: News 04-21-2024, 21:54
Replies: 97
Views: 185,310
Posted By fysiks
Re: Development Roundup, We need you!

Version 1.8.2 was release over a decade ago and there have been a few updates since then that may prevent it from working correctly. Version 1.9.x has been around for quite some time without any...
Forum: Scripting Help 04-21-2024, 21:06
Replies: 8
Views: 205
Posted By fysiks
Re: Amx [FAKEMETA] g_pGameRules adress could not be found

What is this version of HLDS because I don't see any version numbers anywhere near what you show there based on a server I just downloaded via SteamCMD. In my newly downloaded server via SteamCMD...
Forum: Scripting Help 04-21-2024, 19:46
Replies: 8
Views: 391
Posted By fysiks
Re: Execute cfg via chat

That's because it's currently passing the whole chat argument through to the command line. You need to remove the first character in the same way that it was done for the comparison. I.e. add the...
Forum: General 04-21-2024, 16:17
Replies: 11
Views: 436
Posted By fysiks
Re: CHEATERS

It would be:


amx_ban "STEAM_0:0:1234" 0


You can find the basic commands documented here (https://wiki.alliedmods.net/Commands_(AMX_Mod_X)). Most commands that require a name or userid will...
Forum: General 04-21-2024, 05:31
Replies: 11
Views: 436
Posted By fysiks
Re: CHEATERS

Not by VPN/Proxy. Also, if you're worried about that then you should just shut down your server.
Forum: General 04-20-2024, 21:59
Replies: 11
Views: 436
Posted By fysiks
Re: CHEATERS

A VPN/Proxy can't bypass a SteamID ban so ban by SteamID.
Forum: Scripting Help 04-20-2024, 03:45
Replies: 4
Views: 508
Posted By fysiks
Re: REQ - Plugin

It seems you too need to learn some basics of AMX Mod X, specifically how strings and get_user_name() works.
Forum: General 04-20-2024, 01:57
Replies: 4
Views: 225
Posted By fysiks
Re: Nextmap

Are you running the default plugin in AMX Mod X 1.9.x or AMX Mod X 1.10.x? Please provide the the output of the server console command "amxx list" (paste it as a code block in your next post).
Forum: Scripting Help 04-18-2024, 21:03
Replies: 4
Views: 252
Posted By fysiks
Re: Error with set_user

Just stop posting.
Forum: Scripting Help 04-16-2024, 23:08
Replies: 17
Views: 801
Posted By fysiks
Re: error 017: undefined symbol "ChatColor"

No need to download some random files. It looks like you should be able to simply replace:


ChatColor(0, GREY


with


client_print_color(0, print_team_grey
Forum: Scripting Help 04-14-2024, 18:08
Replies: 4
Views: 508
Posted By fysiks
Re: REQ - Plugin

You may think they are useless but that is because you're not doing it correctly. You need to learn some basics about AMX Mod X scripting. For example, get_user_name() doesn't work like that. You...
Forum: Scripting Help 04-14-2024, 01:04
Replies: 17
Views: 801
Posted By fysiks
Re: error 017: undefined symbol "ChatColor"

You need to have the proper include file for the functions that you want to use. Notice that the include that you're using is called "colorchat" but you're using a function called "chatcolor". ...
Forum: Scripting Help 04-13-2024, 17:04
Replies: 3
Views: 315
Posted By fysiks
Re: Menu help

This warning is saying that you a explicitly returning a value in some but not all possible cases of code execution. This exists because there is, generally, a very good chance that you are creating...
Forum: Scripting Help 04-13-2024, 16:50
Replies: 9
Views: 469
Posted By fysiks
Re: Something about dynamic arrays

I suspect that the important thing to know about dynamic arrays is that the array handle is just a reference to the actually data and it can be stored like you would do with any other variable. This...
Forum: News 04-13-2024, 16:45
Replies: 97
Views: 185,310
Posted By fysiks
Re: Development Roundup, We need you!

AMX Mod X 1.8.2 hasn't been relevant for many years now. Version 1.9.x and 1.10.x are the versions that are more commonly used these days and have many improvements over 1.8.2.

Also, what...
Forum: Scripting Help 04-04-2024, 17:20
Replies: 3
Views: 256
Posted By fysiks
Re: Hello World plugin

"say" is a client command and should and should be registered as such. Console commands are commands that can be executed and function correctly from either the server or client console. ...
Forum: Scripting Help 04-04-2024, 11:51
Replies: 4
Views: 227
Posted By fysiks
Re: Only showing "%s"

Which plugin? Is your server hosted on Windows or Linux? Did you locally compile the plugin from the source code?
Forum: Scripting Help 04-04-2024, 03:29
Replies: 3
Views: 256
Posted By fysiks
Re: Hello World plugin

You can verify that your plugin is running by using the "amxx list" command in the server's console. It will list all the plugins and tell you if any of them have failed to load.

Secondly, any...
Forum: General 04-03-2024, 21:29
Replies: 1
Views: 252
Posted By fysiks
Re: fall damage

If you remove MetaMod (which will include AMX Mod X), does it still happen?
Forum: General 04-03-2024, 21:27
Replies: 4
Views: 369
Posted By fysiks
Re: amxmodx crashing my offline cs 1.6 server

All of those modules are part of AMX Mod X. You can see that they are loaded and running with the "meta list" command.

I've never heard of "Steam Networking" before and suspect that most people...
Forum: Scripting Help 04-01-2024, 01:46
Replies: 10
Views: 547
Posted By fysiks
Re: Setting access flags for all players

I don't think anyone knows for sure what the request is because it can be interpreted in different ways. The way you interpreted it is different from how I interpreted it and you didn't give any...
Forum: Scripting Help 03-31-2024, 04:21
Replies: 10
Views: 547
Posted By fysiks
Re: Setting access flags for all players

I don't think you understood the question.
Forum: General 03-31-2024, 04:19
Replies: 1
Views: 228
Posted By fysiks
Re: Teleport Access

First thing, make sure you are not using "AMX Mod" (not supported here) but instead using "AMX Mod X" (supported here). If you have access to some commands but not others, you need to check what...
Forum: HL1 Servers (HLDS) 03-29-2024, 02:13
Replies: 17
Views: 1,878
Posted By fysiks
Re: HLDS won't work on linux

Did you reply to the wrong thread? There is nothing wrong with the Wiki about downloading a server via SteamCMD that I am aware of. In this very thread, I copied the command to use to download...
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT -4. The time now is 12:48.


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