try this (untested)
PHP Code:
#include <amxmodx>
#include <hamsandwich>
new PLUGIN[ ] = "website on death"
new VERSION[ ] = "1.0"
new AUTHOR[ ] = "FlyingHorse"
new websitename[ ] = "http://Your-website.com" // enter website here
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
RegisterHam(Ham_Killed, "player", "Event_Ham_Killed")
}
public Event_Ham_Killed(victim, attacker, shouldgib)
{
if(!is_user_alive(victim))
{
client_print(victim, print_chat, "%s", websitename)
}
}