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

Showing results 1 to 25 of 98
Search took 0.01 seconds.
Search: Posts Made By: FAQU
Forum: Plugins 03-25-2022, 03:35
Replies: 58
Views: 16,203
Posted By FAQU
Re: [ANY] Advanced Filters v1.2 (Name & Chat filtering solution w/ Sourcebans++ suppo

Thanks for your suggestion. Maybe in the future I'll add that functionality. For now I'm no longer running servers or writing code. This plugin is still supported though, and I'm willing to fix bugs,...
Forum: Plugins 03-21-2022, 11:43
Replies: 58
Views: 16,203
Posted By FAQU
Re: [ANY] Advanced Filters v1.2 (Name & Chat filtering solution w/ Sourcebans++ suppo

Currently no. You have to specify the words you want to block in the chatfilters.cfg file. Only the URL and IP filtering is done automatically using regex patterns.
Forum: Scripting 09-24-2021, 23:51
Replies: 3
Views: 923
Posted By FAQU
Re: [CSGO] OnClientConnect setting rejectmsg?

public bool OnClientConnect(int client, char[] rejectmsg, int maxlength)
{
strcopy(rejectmsg, maxlength, "Message goes here");
return false;
}
Forum: Source Servers (SRCDS) 09-22-2021, 02:40
Replies: 11
Views: 3,282
Posted By FAQU
Re: CS:GO Update 9/21/2021

Make sure you've properly updated your server.
Both MM & SM are working just fine on my end. (Windows)

meta version
Metamod:Source Version Information
Metamod:Source version...
Forum: Scripting 09-16-2021, 04:33
Replies: 2
Views: 821
Posted By FAQU
Re: [CSGO] Bypass choose team screen?

#include <sourcemod>

#pragma semicolon 1
#pragma newdecls required

public void OnPluginStart()
{
HookEvent("player_connect_full", Event_PlayerConnectFull); // event fired when the player is...
Forum: Plugin/Gameplay Ideas and Requests 08-21-2021, 08:41
Replies: 6
Views: 4,658
Posted By FAQU
Re: [REQ] Disable CS:GO Global Mute

I assume you're talkin about the automatic mute issued by Valve.

sm_cvar sv_mute_players_with_social_penalties 0
Forum: Plugins 08-21-2021, 04:35
Replies: 58
Views: 16,203
Posted By FAQU
Re: [ANY] Advanced Filters v1.2 (Name & Chat filtering solution w/ Sourcebans++ suppo

Updated plugin to v1.2

New features:

Added immunity options for admins.
Added the option to hide player disconnected notifications from chat.


Improvements:
Forum: Plugins 08-19-2021, 03:53
Replies: 58
Views: 16,203
Posted By FAQU
Forum: Plugins 08-18-2021, 04:50
Replies: 58
Views: 16,203
Posted By FAQU
Re: [ANY] Advanced Filters v1.1 (Name & Chat filtering solution w/ Sourcebans++ suppo

Updated plugin to v1.1

New features:

Added the option to block messages that contain URLs.
Added the option to remove URLs from players' nicknames.
Added whitelisting for URLs.

...
Forum: Scripting 08-17-2021, 02:25
Replies: 4
Views: 973
Posted By FAQU
Re: Reading and displaying information from a file

Reading lines from a file every time you want to use them is bad practice. You should consider using a global array of strings to store the lines, and use that array later for printing.

Take a...
Forum: Plugins 08-16-2021, 10:57
Replies: 58
Views: 16,203
Posted By FAQU
Re: [ANY] Advanced Filters v1.0 (Name & Chat filtering solution w/ Sourcebans++ suppo

Re-released the plugin under a new name.

Changes:

Rewrote the whole plugin from scratch.
Improved the logic behind the code.
Improved the code optimization.
Improved the code...
Forum: Plugins 08-07-2021, 00:01
Replies: 58
Views: 16,203
Posted By FAQU
Re: [ANY] Simple Filters 1.0.6 (Sourcebans++ support)

Send me a PM with the plugin and I'll see what I can do.
Forum: Scripting 08-02-2021, 23:38
Replies: 2
Views: 1,004
Posted By FAQU
Re: Assistance w/ Random Response

You should use the format specifier %s instead of %d.

%d is for integer
%s is for string

ReplyToCommand(client, "%s", RandomFacts[randomnum]);
Forum: Plugins 06-21-2021, 02:03
Replies: 58
Views: 16,203
Posted By FAQU
Re: [ANY] Simple Filters 1.0.6 (Sourcebans++ support)

Feel free to modify the following lines in order to get the result you're looking for :

https://github.com/FAQU2/Simple-Filters/blob/main/scripting/simple-filters/functions.sp#L154-L163
Forum: Scripting 06-18-2021, 12:38
Replies: 2
Views: 818
Posted By FAQU
Re: disable change team

public void OnPluginStart()
{
AddCommandListener(Command_Jointeam, "jointeam");
}

public Action Command_Jointeam(int client, const char[] command, int args)
{
// PrintToChat(client,...
Forum: Plugins 06-12-2021, 09:04
Replies: 58
Views: 16,203
Posted By FAQU
Forum: Plugins 06-08-2021, 09:30
Replies: 58
Views: 16,203
Posted By FAQU
Re: [ANY] Simple Filters 1.0.6 (Sourcebans++ support)

Unfortunately there's nothing I can do about those false positives.


Workarounds:
• Stop prohibiting curse words altogether and instead let your admins take care of the toxic people.
• (OR)...
Forum: Plugins 06-08-2021, 00:02
Replies: 58
Views: 16,203
Posted By FAQU
Re: [ANY] Simple Filters 1.0.6 (Sourcebans++ support)

This plugin changes a player's name AFTER the player has joined the server, and does NOT kick players for having symbols/unpermitted words inside their names.

The only way for players to get...
Forum: General 06-07-2021, 02:15
Replies: 2
Views: 1,103
Posted By FAQU
Re: Disable an option to play as a bot?

If you wish to prevent players from taking control over the bots, you can add "sm_cvar bot_controllable 0" in server.cfg
Forum: Plugins 06-07-2021, 00:04
Replies: 58
Views: 16,203
Posted By FAQU
Re: [ANY] Simple Filters 1.0.6 (Sourcebans++ support)

1. Chat filtering only applies to messages that go through "say" & "say_team" commands.

2. Attached an example file - check it out.

3. It generally depends on how you configure the plugin.
...
Forum: Scripting 05-07-2021, 00:00
Replies: 2
Views: 1,096
Posted By FAQU
Re: (Help) Re scripting Amx to SPawn

I'm not familiar with amxx, but judging by the original code I think you're trying to prevent a client from getting kicked if the reason contains "[EAC]".

Afaik you can't prevent a client from...
Forum: General 05-03-2021, 02:14
Replies: 6
Views: 1,477
Posted By FAQU
Re: Name & Team Logos Custom

Have you tried specifying the image format ?

mp_teamlogo_1 "zkct.png"
mp_teamlogo_2 "zktr.png"
Forum: General 04-27-2021, 04:58
Replies: 2
Views: 970
Posted By FAQU
Re: sourcemod commands not working after adding them through rcon

Open up the movecommands.sp file, and look at line 1519.

It should look like this:

if(!IsClientValid(client) || !IsClientValid(target))

Modify it to this and recompile:...
Forum: General 04-21-2021, 23:47
Replies: 4
Views: 922
Posted By FAQU
Re: Retakes PREFIX MESSAGE (issue)

You should recompile retakes.sp after changing the prefix inside natives.sp.

You can't just compile natives.sp as it's not a standalone plugin.
Forum: Plugins 04-15-2021, 02:12
Replies: 58
Views: 16,203
Posted By FAQU
Re: [ANY] Simple Filters 1.0.6 (Sourcebans++ support)

The whitelist is for IP addresses, as the IP filtering is completely automatic.

When it comes to DNS addresses, you have to add them manually to the chat/name filter lists.
Let's say you wanna...
Showing results 1 to 25 of 98

 
Forum Jump

All times are GMT -4. The time now is 01:26.


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