AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [ANY] Keep Player Name (https://forums.alliedmods.net/showthread.php?t=330014)

Teamkiller324 01-16-2021 20:54

[ANY] Keep Player Name
 
[ANY] Keep Player Name

Description
Stores the clients player name via mysql/sqlite cookie storage.
If the clients name is already stored, it wont be replaced. This plugin also blocks namechange overall.

Features
1. Translation Support. Currently has English, Swedish, Spanish & Hungarian (Needs to be updated.)
2. Cookie Storage Support. (Saves clients preferred settings in mysql/sqlite.)

Commands
1. sm_forcename - Force name on a client
2. sm_clearname - Clear out the stored name for the client (client gets a new stored name once he reconnects.) (Only works when you don't have a forced name. ATM)

Plans
1. Add true MySQL support as replacement to cookie storage. (will happen soon.) Planned on 2.0.0 (Soon Finished)
2. Update the sm_clearname to clear everything. Planned on 2.0.0 (Finished)

Changelog
Quote:


Version 1.1.5
+ Updated the translation phrase lines
+ Updated code to simply change chat tag when compiling yourself
+ Updated clearname function to check if the target has a forced name or not

Version 1.1.4
+ Updated syntax regarding cookies
+ Updated code
+ Added Hungarian translation (Thanks to Ladis92/KasperH)

Version 1.1.3
+ Fixed sm_clearname not clearing out the name in the cookie storage (my bad, how did i miss this?)
+ Updated translations

Version 1.1.2
+ Enabled OnClientSettingsChanged and fixed its function error

Version 1.1.1
+ Fixed crash
+ Fixed cookies not functioning properly
- Disabled OnClientSettingsChanged function temporarily due to not functioning correctly atm

Version 1.1.0
+ Fixed Error Spam and quite some other issues.
+ Updated sm_forcename (sm_forcename to reset your stored forced name, sm_forcename <#userid|target name> to reset someone elses name>
+ Updated sm_clearname (sm_clearname to reset your stored name, sm_clearname <#userid|target name> to reset someone elses name>
- Removed sm_removeforcename as it were useless
+ Name change events should be suppressed completely now (Taken from Suppress Manager)

Version 1.0.1
+ Added sm_forcename command to force a name on a client
+ Added sm_removeforcename command to remove the forced name on a client
+ Added sm_clearname to clear out the stored player name in the storage (client gets new name stored once reconnected)
+ Added Translation support

Version 1.0.0
+ Release


GitHub Repository | Latest Version

Spyrek 01-19-2021 10:11

Re: [ANY] Keep Player Name [Updated 17-01-2021] Version 1.0.0
 
Does the event "player_changename" works in CSGO?

Ilusion9 01-19-2021 11:04

Re: [ANY] Keep Player Name [Updated 17-01-2021] Version 1.0.0
 
return Plugin_Handled in player_changename event doesn't block the name change. You must check the client name in OnClientSettingsChanged() and you should block the message in SayText2 usermessage.

Quote:

Originally Posted by Spyrek (Post 2733256)
Does the event "player_changename" works in CSGO?

yes, but there are cheats which doesn't trigger the event. OnClientSettingsChanged is the safest way.

Lannister 01-20-2021 15:11

Re: [ANY] Keep Player Name [Updated 17-01-2021] Version 1.0.0
 
Hello!

Thanks for the plugin! i was wondering if it's possible to FORCE a permanente nickname on a player, for example, sm_forcename "Lannister" "Targaryen"

So this mean that everytime i join the server, my nickname will automatically change from "Lannister" to "Targaryen" and also it will prevent me to change it back.

This will be useful for people that enters with the same account but different nickname to prevent admins from recognize them


Thanks!

Teamkiller324 01-21-2021 19:54

Re: [ANY] Keep Player Name [Updated 17-01-2021] Version 1.0.0
 
Quote:

Originally Posted by Lannister (Post 2733442)
Hello!

Thanks for the plugin! i was wondering if it's possible to FORCE a permanente nickname on a player, for example, sm_forcename "Lannister" "Targaryen"

So this mean that everytime i join the server, my nickname will automatically change from "Lannister" to "Targaryen" and also it will prevent me to change it back.

This will be useful for people that enters with the same account but different nickname to prevent admins from recognize them


Thanks!

Interesting concept, i'll try get onto that. Sounds like you just do sm_forcename <player> <newname> and probably store it in cookie storage. doesn't sound too hard to do.

Teamkiller324 01-21-2021 20:39

Re: [ANY] Keep Player Name [Updated 17-01-2021] Version 1.0.0
 
Quote:

Originally Posted by Lannister (Post 2733442)
Hello!

Thanks for the plugin! i was wondering if it's possible to FORCE a permanente nickname on a player, for example, sm_forcename "Lannister" "Targaryen"

So this mean that everytime i join the server, my nickname will automatically change from "Lannister" to "Targaryen" and also it will prevent me to change it back.

This will be useful for people that enters with the same account but different nickname to prevent admins from recognize them


Thanks!

Feature should be added now

Tonblader 01-22-2021 03:36

Re: [ANY] Keep Player Name [Updated 21-01-2021] Version 1.0.1
 
Quote:

Originally Posted by Teamkiller324 (Post 2733655)
Interesting concept, i'll try get onto that. Sounds like you just do sm_forcename <player> <newname> and probably store it in cookie storage. doesn't sound too hard to do.

sm_forcename <player> <newname> <--- in the value <newname> make it optional please, if blank, forcename the current name
In L4D2, this command not work properly, does not change the player's name to the name specified in the 2nd value (in mid-game).
The users can spam in chat the changename and need block "setinfo name" commands in console and with 3rd party plugins Example

Can you implement any of the ideas from these other plugins from amxmodx to sourcemod?
Mainly the One Name v3.0!

https://forums.alliedmods.net/showthread.php?t=18232 (1 name-locked per steamuserid)
https://forums.alliedmods.net/showthread.php?t=189096 (protect a nickname that can only be used by one user)
https://forums.alliedmods.net/showthread.php?t=17363 (protect a nickname that cannot be used by all players)
https://forums.alliedmods.net/showthread.php?t=90414 (protect change nickname spam)
https://forums.alliedmods.net/showthread.php?t=79596 (protect use ip or www nicknames spam)

Sandervraun 01-22-2021 05:06

Re: [ANY] Keep Player Name [Updated 21-01-2021] Version 1.0.1
 
Quote:

L 01/22/2021 - 11:04:17: [SM] [16] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [18] SetClientName
L 01/22/2021 - 11:04:17: [SM] [19] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [21] SetClientName
L 01/22/2021 - 11:04:17: [SM] [22] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [24] SetClientName
L 01/22/2021 - 11:04:17: [SM] [25] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [27] SetClientName
L 01/22/2021 - 11:04:17: [SM] [28] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [30] SetClientName
L 01/22/2021 - 11:04:17: [SM] [31] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [33] SetClientName
L 01/22/2021 - 11:04:17: [SM] [34] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [36] SetClientName
L 01/22/2021 - 11:04:17: [SM] [37] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [39] SetClientName
L 01/22/2021 - 11:04:17: [SM] [40] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [42] SetClientName
L 01/22/2021 - 11:04:17: [SM] [43] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [45] SetClientName
L 01/22/2021 - 11:04:17: [SM] [46] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [48] SetClientName
L 01/22/2021 - 11:04:17: [SM] [49] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [51] SetClientName
L 01/22/2021 - 11:04:17: [SM] [52] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [54] SetClientName
L 01/22/2021 - 11:04:17: [SM] [55] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [57] SetClientName
L 01/22/2021 - 11:04:17: [SM] [58] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [60] SetClientName
L 01/22/2021 - 11:04:17: [SM] [61] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [63] SetClientName
L 01/22/2021 - 11:04:17: [SM] [64] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [66] SetClientName
L 01/22/2021 - 11:04:17: [SM] [67] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [69] SetClientName
L 01/22/2021 - 11:04:17: [SM] [70] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [72] SetClientName
L 01/22/2021 - 11:04:17: [SM] [73] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [75] SetClientName
L 01/22/2021 - 11:04:17: [SM] [76] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [78] SetClientName
L 01/22/2021 - 11:04:17: [SM] [79] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [81] SetClientName
L 01/22/2021 - 11:04:17: [SM] [82] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [84] SetClientName
L 01/22/2021 - 11:04:17: [SM] [85] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [87] SetClientName
L 01/22/2021 - 11:04:17: [SM] [88] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [90] SetClientName
L 01/22/2021 - 11:04:17: [SM] [91] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [93] SetClientName
L 01/22/2021 - 11:04:17: [SM] [94] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [96] SetClientName
L 01/22/2021 - 11:04:17: [SM] [97] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [99] SetClientName
L 01/22/2021 - 11:04:17: [SM] [100] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [102] SetClientName
L 01/22/2021 - 11:04:17: [SM] [103] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [105] SetClientName
L 01/22/2021 - 11:04:17: [SM] [106] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [108] SetClientName
L 01/22/2021 - 11:04:17: [SM] [109] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [111] SetClientName
L 01/22/2021 - 11:04:17: [SM] [112] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [114] SetClientName
L 01/22/2021 - 11:04:17: [SM] [115] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [117] SetClientName
L 01/22/2021 - 11:04:17: [SM] [118] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [120] SetClientName
L 01/22/2021 - 11:04:17: [SM] [121] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [123] SetClientName
L 01/22/2021 - 11:04:17: [SM] [124] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [126] SetClientName
L 01/22/2021 - 11:04:17: [SM] [127] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [129] SetClientName
L 01/22/2021 - 11:04:17: [SM] [130] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [132] SetClientName
L 01/22/2021 - 11:04:17: [SM] [133] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:21: World triggered "Round_Start"

Teamkiller324 01-22-2021 21:02

Re: [ANY] Keep Player Name [Updated 23-01-2021] Version 1.1.0
 
Quote:

Originally Posted by Sandervraun
L 01/22/2021 - 11:04:17: [SM] [16] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [18] SetClientName
L 01/22/2021 - 11:04:17: [SM] [19] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [21] SetClientName
L 01/22/2021 - 11:04:17: [SM] [22] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [24] SetClientName
L 01/22/2021 - 11:04:17: [SM] [25] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [27] SetClientName
L 01/22/2021 - 11:04:17: [SM] [28] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [30] SetClientName
L 01/22/2021 - 11:04:17: [SM] [31] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [33] SetClientName
L 01/22/2021 - 11:04:17: [SM] [34] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [36] SetClientName
L 01/22/2021 - 11:04:17: [SM] [37] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [39] SetClientName
L 01/22/2021 - 11:04:17: [SM] [40] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [42] SetClientName
L 01/22/2021 - 11:04:17: [SM] [43] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [45] SetClientName
L 01/22/2021 - 11:04:17: [SM] [46] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [48] SetClientName
L 01/22/2021 - 11:04:17: [SM] [49] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [51] SetClientName
L 01/22/2021 - 11:04:17: [SM] [52] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [54] SetClientName
L 01/22/2021 - 11:04:17: [SM] [55] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [57] SetClientName
L 01/22/2021 - 11:04:17: [SM] [58] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [60] SetClientName
L 01/22/2021 - 11:04:17: [SM] [61] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [63] SetClientName
L 01/22/2021 - 11:04:17: [SM] [64] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [66] SetClientName
L 01/22/2021 - 11:04:17: [SM] [67] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [69] SetClientName
L 01/22/2021 - 11:04:17: [SM] [70] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [72] SetClientName
L 01/22/2021 - 11:04:17: [SM] [73] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [75] SetClientName
L 01/22/2021 - 11:04:17: [SM] [76] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [78] SetClientName
L 01/22/2021 - 11:04:17: [SM] [79] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [81] SetClientName
L 01/22/2021 - 11:04:17: [SM] [82] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [84] SetClientName
L 01/22/2021 - 11:04:17: [SM] [85] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [87] SetClientName
L 01/22/2021 - 11:04:17: [SM] [88] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [90] SetClientName
L 01/22/2021 - 11:04:17: [SM] [91] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [93] SetClientName
L 01/22/2021 - 11:04:17: [SM] [94] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [96] SetClientName
L 01/22/2021 - 11:04:17: [SM] [97] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [99] SetClientName
L 01/22/2021 - 11:04:17: [SM] [100] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [102] SetClientName
L 01/22/2021 - 11:04:17: [SM] [103] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [105] SetClientName
L 01/22/2021 - 11:04:17: [SM] [106] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [108] SetClientName
L 01/22/2021 - 11:04:17: [SM] [109] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [111] SetClientName
L 01/22/2021 - 11:04:17: [SM] [112] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [114] SetClientName
L 01/22/2021 - 11:04:17: [SM] [115] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [117] SetClientName
L 01/22/2021 - 11:04:17: [SM] [118] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [120] SetClientName
L 01/22/2021 - 11:04:17: [SM] [121] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [123] SetClientName
L 01/22/2021 - 11:04:17: [SM] [124] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [126] SetClientName
L 01/22/2021 - 11:04:17: [SM] [127] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [129] SetClientName
L 01/22/2021 - 11:04:17: [SM] [130] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:17: [SM] [132] SetClientName
L 01/22/2021 - 11:04:17: [SM] [133] Line 61, D:\scripting\Keep Player Name\addons\sourcemod\scripting\keep_player_n ame.sp::OnClientSettingsChanged
L 01/22/2021 - 11:04:21: World triggered "Round_Start"

Should be fixed

Tonblader 01-22-2021 22:35

Re: [ANY] Keep Player Name [Updated 23-01-2021] Version 1.1.0
 
Quote:

Originally Posted by Teamkiller324 (Post 2733812)
Should be fixed

In Left 4 Dead 2 Listen Server Windows, when i use sm_forcename Tonblader hola , my game crash, no errorlog.


All times are GMT -4. The time now is 03:35.

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