Thread: Auto Name
View Single Post
DJEarthQuake
Veteran Member
Join Date: Jan 2014
Location: Astral planes
Old 03-14-2024 , 21:04   Re: Auto Name
Reply With Quote #13

Code:
/*How to legally force name change across servers.*/ #include amxmodx static stock_name[] = "player"; public plugin_init() {     register_plugin("Stock name block", "1.0", ".sρiηX҉.") }     public client_connectex(id, const name[], const ip[], reason[128]) {     reason = "Please change name from 'player' to something more unique. Thank you."     if(equal(name, stock_name))             return PLUGIN_HANDLED_MAIN;     return PLUGIN_CONTINUE; }
__________________
DJEarthQuake is offline