you can edit source code it not so hard
this
PHP Code:
public Action:MSG(Handle:Timer, any:Client) {
new String:sname[80];
GetClientName(Client, sname, 80);
PrintCenterTextAll("Admin %s has connected!", sname);
PrintToChatAll("\x04\x01Admin \x04%s\x04\x01 has connected!", sname);
}
to any you want
PHP Code:
public Action:MSG(Handle:Timer, any:Client) {
new String:sname[80];
GetClientName(Client, sname, 80);
PrintCenterTextAll("Bout %s has arrived to the port!", sname);
PrintToChatAll("\x04\x01Bout \x04%s\x04\x01 has arrived to the port!", sname);
}
__________________