Message command?
I am making a basic plugin, and I've read the documentation, but it hasn't given the straight forward message command. I just need to know the command for the plugin to display a message.
EDIT: I think I found it:
Code:
//This is a function that takes no parameters and returns 1.
//When activated, it uses the (non-existant) print function.
show()
{
print("Teh evil nerd has just cursed you!")
return 1 //End, return 1
}
//Activate like this:
show()
But that isn't specifically for Amxx is it? I need one that shows a HUD message to all players
|