Hi, i'm extremly new to Small and its bynaries and syntax (confused already

) Here's my code so far :
Code:
#include <amxmodx>
#include <amxmisc>
new PLUGIN[]="You Are Stupid"
new AUTHOR[]="Kasc"
new VERSION[]="1.00"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("amx_urstupid","myfunction",AMX_HELP,"Declares that you think a specific person is stupid!")
}
public myfunction(id) {
}
As u can see its a plugin that anyone can use to declare tht u think sum1 is stupid! But i dont know what to do from here
Ive figured at tht i have to use get_user_name (tell me if im wrong)
Example:
u type in console : "amx_urstupid kasc"
and it would say in HUD : "|R3VO| Kasc has just been called stupid by |R3VO| Kasc"
Please help
Thanks
__________________