|
发表于 2010-6-10 04:38:29
|
显示全部楼层
来自 中国–广西–南宁
public bomb_planted(id)//安放C4
public bomb_explode(id,defuser)//C4爆炸
public bomb_defusing(id)//尝试拆除C4
public bomb_defused(id)//C4拆除成功
new num
if(is_user_alive(id)){
if(get_user_health(id) < 100) {
new num=get_user_health(id) + 10
if( num > 100)
{
set_user_health(id,100)
}
else
{
set_user_health(id,num)
}
}
} |
|