AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [Any] Target Name Changers (https://forums.alliedmods.net/showthread.php?t=219956)

ddhoward 07-05-2013 23:53

Re: [Any] Name Change Info
 
I'm sorry, I don't quite understand what you mean. Everything in the plugin should be compatible with all the mods. Unless there are mods where PrintToChat doesn't have the convenient side-effect of also printing to the console?

RedSword 07-06-2013 00:53

Re: [Any] Name Change Info
 
Quote:

Originally Posted by ddhoward (Post 1984317)
[...]Unless there are mods where PrintToChat doesn't have the convenient side-effect of also printing to the console?

That is what I'm refering to. And it is just a suggestion, you don't have to.

ddhoward 07-06-2013 01:13

Re: [Any] Name Change Info
 
Quote:

Originally Posted by RedSword (Post 1984331)
That is what I'm refering to. And it is just a suggestion, you don't have to.

I'll do it. Server ops should be smart enough to figure out how to stop the double-printing in the console on mods where PrintToChat also prints to console.

RedSword 07-06-2013 02:05

Re: [Any] Name Change Info
 
You can add a small notice "depending on mod, blablabla can appear twice".

ddhoward 07-07-2013 08:24

Re: [Any] Name Change Info
 
Updated to 13.0707

RedSword 07-07-2013 13:51

Re: [Any] Name Change Info
 
Code:

if (destination == 1 || destination == 3)
Code:

if (destination == 2 || destination == 3)
/facepalm

you could simply do
Code:

if (destination & 1)
Code:

if (destination & 2)
Understanding bit flags is helpful in some scenarios.

More info : http://www.cplusplus.com/forum/general/1590/ + google

Of course it works as it is; but there is a more elegant way to do it; plus if you're to add multiple "printto" options (i.e. print to name changer too or not, etc, add colors or not, stuff...), this can become dirty.

Js41637 07-08-2013 03:15

Re: [Any] Name Change Info
 
Hey, I am not sure on how hacks change names but what about when using the sm_rename option? Do the same rules apply or are they not counted?

Sreaper 07-08-2013 04:39

Re: [Any] Name Change Info
 
Very useful plugin! Thank you.

ddhoward 07-08-2013 05:28

Re: [Any] Name Change Info
 
Quote:

Originally Posted by Js41637 (Post 1986019)
Hey, I am not sure on how hacks change names but what about when using the sm_rename option? Do the same rules apply or are they not counted?

The plugin has no way of distinguishing between sm_rename, Steam name changes, or hacked name changes. All name changes will be utilized by this plugin, regardless of their source.

ddhoward 09-18-2013 17:25

Re: [Any] Target Name Changers
 
Updated to version 13.0918.1


All times are GMT -4. The time now is 21:55.

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