I am having TONS of trouble getting my client_print command to work. I'm a newbie to coding so I don't know much. All I've learned i've learned by reading other plugin's code and making assumptions. I'm making a plugin to display a help file, and it works perfectly except the client_print command that I want to run when a user joins the server. I'll attach my code just for refrence, but the specific code:
public display_info( id ){
if (id) {
client_print(id,print_chat,"Server Plugins: Say /pluginhelp for Client help on using the server's Plugins")
client_print(id,print_chat,"Server Plugins: Say /pluginAhelp for Admin help on using the server's Plugins")
}
}
This is placed right after the public plugin_init() section (do i need PLUGIN CONTINUE somewhere maybe?). I've tried variations of the client_print command that i've seen in other plugins but to no avail. Please if anyone has any idea what is going on here help me!