• 3 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Release] Anti-Invisible Name
#1
This is a little plugin I coded to kick players with invisible names from the server. I haven't tested it, but it should work as the invisible name tools I know of just write 1 (integer) into memory which then becomes '01 00 00 00'. The 00s are NULL terminators so only the 01 character appears in the game (the game for some reason renders it as a dot). Also should stop people from using other undisplayable characters too.

CSHARP Code
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Addon;
  5.  
  6. namespace AntiInvisibleName
  7. {
  8. public class Main : CPlugin
  9. {
  10. public override void OnPlayerConnect(ServerClient Client)
  11. {
  12. if(Array.TrueForAll(Client.Name.ToCharArray(), c => (int)c <= 31))
  13. ServerCommand("kickclient " + Client.ClientNum + " \"Invisible name detected.\"");
  14. }
  15. }
  16. }


Attached Files
.zip   AntiInvisibleName.zip (Size: 2 KB / Downloads: 815)
[Image: 30xhrep.png]

A casual conversation between barata and I about Nukem.
  Reply
#2
@master131 you dont speak much, isnt so active (here) but when you do a post its certainly "the" post.

To sum up, very good work, again....

Thanks Barata...

OMA for you!
Don't worry if things aren't the way you planned, in the end everything will solve itself...
  Reply
#3
>connect
>change your name
>update it with server
>profit
[Image: lQDUjba.jpg]
  Reply
#4
Wow thanks, found a hacker who was botting on my regular server with that "." thanks!
  Reply
#5
+rep
as usual good work master
  Reply
#6
great! +rep offcourse!
Had a life, Got a modem..
  Reply
#7
(04-06-2012, 00:41)OrangePL Wrote: >connect
>change your name
>update it with server
>profit

Meh, you can fix it yourself if you want. Tongue
[Image: 30xhrep.png]

A casual conversation between barata and I about Nukem.
  Reply
#8
(04-06-2012, 13:07)master131 Wrote:
(04-06-2012, 00:41)OrangePL Wrote: >connect
>change your name
>update it with server
>profit

Meh, you can fix it yourself if you want. Tongue

I don't want it to be fixed Shy
[Image: lQDUjba.jpg]
  Reply
#9
(04-06-2012, 00:41)OrangePL Wrote: >connect
>change your name
>update it with server
>profit

>use this with AntiNameChanger
>profit
[Image: azuw.jpg]
  Reply
#10
any way this can be updated with those that have only russian letters in their name?
[Image: b_560_95_1.png]


[Image: b_560_95_1.png]

  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Release] iSnipe anti hardscope mutant 0 3,245 11-06-2013, 11:27
Last Post: mutant
  Need An Anti Hack Manuadminmod worldclass 2 3,476 10-14-2013, 09:57
Last Post: d0h!
  Searching for Anti HS ExoGamer* 10 6,063 08-08-2013, 12:39
Last Post: aceed
  Help [QUESTION][IDEA] Invisible Wall 99IRock 8 4,961 03-03-2013, 14:37
Last Post: Nekochan
Wink Preview ANTI ZOOMBYE! [HARD] Tony. 9 5,610 03-02-2013, 17:35
Last Post: Nukem
  [Request] MW3 anti TI smasher MADD_DOGG 3 2,981 12-17-2012, 13:52
Last Post: MADD_DOGG
  Mw3 anti-cheat estebespt 18 14,889 12-04-2012, 22:50
Last Post: claudiocorona
  anti-hack ersin_ 8 5,736 10-29-2012, 14:45
Last Post: SuperNovaAO
  [Request] Anti block Plugin | Infected Kasperle 2 2,683 10-06-2012, 18:41
Last Post: DidUknowiPwn
  [Tutorial] Anti-Lag Guide iPaddie 5 4,802 09-28-2012, 18:56
Last Post: JariZ

Forum Jump:


Users browsing this thread: 1 Guest(s)