Hello i have a Problem^^
MY PLUGIN
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <hamsandwich>
#define PLUGIN "Plugin Show"
#define VERSION "1.0"
#define AUTHOR "Domi"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
RegisterHam(Ham_Spawn, "player", "player_spawn", 1)
}
public player_spawn(id)
{
if(is_user_alive(id))
{
new zsName[32]
get_user_name(id, zsName, 31);
client_print(id,print_chat," Hello %s Type /plugins ", zsName)
}
}
So..

i have This
And i will make a plugin
Player say /plugins and then comes a List with
1:Resetscore ->resetscore.amxx
2:Roll the Dice ->roll_the_dice.amxx
3:Music ->Music.amxx
4:Sounds ->sank_sounds.amxx
and Press player 1 comes in chat /rs and player reset his sore
and 2 player say rtd
3 player say /music
4 player say /sounds
Can u make this for me pls?