Erm, as said above I
HIGHLY recommend you abandon this plugin NOW. Changing a user's config will resort in an uproar, it's a form of cheating.
Changing name's and such is fine, but not usually very nice. Changing config is very bad. As show, you use client_cmd to put a command into the clients console.
PHP Code:
client_cmd(id,"name %s",NewName)
//Or
client_cmd(id,"say Hello world!")
The command's must all be put in "". The first paramater of client_cmd is the ID of the user, as your using it on the client that executed the command you just use ID - provided you've put that in the function. The second paramater is the command you want to submit to the clients console. The third optional paramter are for any variables, like in my first example.
As with any command, every time you use a space you move to the next paramater. Only by using "" can you tell the compiler that everything inside that is one paramater.
__________________