instead of using client_cmd(id
try using
Quote:
|
console_print ( id, const message[], ... )
|
Soo your code would look like this
Code:
public client_connect(id){
if (get_cvar_num("sv_allowdownload")==0){
console_print(id, "========================================================================")
console_print(id, "[KOA] This map is too big to download from the server.")
console_print(id, "[KOA] Please download this map from www.K-O-A.com.")
console_print(id, "========================================================================")
} else {
console_print(id, "========================================================================")
console_print(id, "[KOA] As this map is less than 4mb, you can download it from our server.")
console_print(id, "Visit <a href="http://www.K-O-A.com" target="_blank" rel="nofollow noopener">www.K-O-A.com</a> for more info.")
}
}
I hope that helps you out man
__________________