Because "info_deathmatch_start" doesn't exist ?
Make sure you have typed the correct name (the one in the first post is wrong)
This works for me :
PHP Code:
public plugin_precache()
{
RegisterHam(Ham_Spawn, "info_player_deathmatch", "SpawnPoint_Spawn")
RegisterHam(Ham_Spawn, "info_player_start", "SpawnPoint_Spawn")
}
public SpawnPoint_Spawn( iEnt )
{
server_print("New Spawn %d", iEnt)
}
Code:
New Spawn 56
New Spawn 57
New Spawn 58
New Spawn 59
New Spawn 60
__________________