指令的话就这3个教学文....((不过ZP的比较麻烦.....
http://bbs.mychat.to/reads.php?tid=832252 http://bbs.mychat.to/reads.php?tid=828620 http://bbs.mychat.to/reads.php?tid=846982 写法的话((如楼上
//注册插件的内容
public plugin_init( )
{
register_plugin( "插件名称", "版本", "作者" )
register_clcmd( "add_hp", "addhp") //前者为指令,后者为所执行的public ,
}
public addhp(id)
{
if(!is_user_alive(id)) //如果id没有活着, ! 是否定的意思
{
client_print(id,print_chat,"你死了无法使用")
}
else
{
set_user_health(id,get_user_health(id) +300)
//设定玩家的血为(id,得到玩家的血量(id) +300)
client_print(id,print_chat,"你得到了300的血量")
}
}