欢迎加入!

注册后,您将能够与我们社区的其他成员进行讨论、分享和私信。

无论您是想寻求帮助、分享经验,还是结识志同道合的朋友,我们都期待您的参与!一起探索更多精彩内容吧。

立即注册! 加入群聊
  • 所有的免费插件都是同步外网更新,所有都是最新版!
橱柜保护

橱柜保护 同步更新

没有下载权限
购买会员
Cupboard Protection 是一个插件,它使橱柜及其地基刀枪不入,任何人都无法通过传统方式摧毁。您能够删除一个的唯一方法是通过 Remover Tool 等插件。

配置

设置和选项可以在目录下的文件中进行配置。建议使用编辑器和验证器,以避免格式问题和语法错误。CupboardProtectionconfig
{
"Foundation Invincible?": true,
"TC Owner can Damage TC and Foundation?": false,
"Team can Damage TC and Foundation?": false
}

开发 人员

面向开发人员的 Hooks:

object CanDamageTc(BaseEntity Attacker, DecayEntity Cupboard)
Useful for modiying for cancelling the hit info of this event

object CanDamageTcFloor(BaseEntity Attacker, DecayEntity Floor)
Useful for modiying for cancelling the hit info of this event

例:


Copy
private const string permission_damagetc = "example.damagetc";

object CanDamageTc(BaseEntity Attacker, DecayEntity Cupboard) {
if(Attacker == null) return null;
var Player = Attacker as BasePlayer;
if(Player == null) return null;
return permission.UserHasPermission(Player.UserIDString, permission_damagetc);
}
作者
xiaoguan
下载
0
查看
11
首次发布
最后更新

评分

0.00 星 0 星

来自xiaoguan的更多资源

后退
顶部