whats the command
-
- New to forums
- Posts: 4
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Tue Apr 27, 2004 9:33 pm
whats the command
to sign into admin with amx mod?
The client must have the password entered on their side also. To do that, create a file in your ctrike folder called userconfig.cfg if you don't already have one. In it, have the client put setinfo _pw "password" in it. For example::
setinfo _pw "password"
The password field and password should match what you have on the server in users.ini
personally its alot easier to not set a password and have it rely off the steamid, which we explain in the AMX FAQ.
setinfo _pw "password"
The password field and password should match what you have on the server in users.ini
Code: Select all
// Name of setinfo which should store a password on a client
// (Example: setinfo _pw "password")
amx_password_field "_pw"
-Nick