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

Showing results 1 to 25 of 500
Search took 0.07 seconds.
Search: Posts Made By: fysiks
Forum: Scripting Help Today, 00:46
Replies: 5
Views: 188
Posted By fysiks
Re: Change color in menu

You're using the wrong slash here. Makes a huge difference.
Forum: Scripting Help Today, 00:46
Replies: 14
Views: 455
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 Today, 00:22
Replies: 3
Views: 96
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 Yesterday, 23:51
Replies: 8
Views: 199
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 Yesterday, 23:44
Replies: 3
Views: 279
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: 199
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: 680,132
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: 279
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: 14
Views: 455
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: 11
Views: 698
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: 186,690
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: 14
Views: 455
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: 9
Views: 534
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: 698
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: 698
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: 698
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: 575
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: 297
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: 327
Posted By fysiks
Re: Error with set_user

Just stop posting.
Forum: Scripting Help 04-16-2024, 23:08
Replies: 17
Views: 922
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: 575
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: 922
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: 356
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: 535
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: 186,690
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...
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT -4. The time now is 05:40.


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