
UID:3
点券:120
威望:0
贡献:33
在线时间:40 小时
  
|
马上注册,享用更多功能
您需要 登录 才可以下载或查看,没有账号?立即注册
×
- //以下函数写入swordman_common.nut
- function Berserker_double_knife(obj)
- {
- if (sq_getGrowType(obj) == 3)
- {
- if (obj.sq_GetSkillLevel(76) > 0)
- {
- obj.sq_IntVectClear();
- obj.sq_IntVectPush(0);
- obj.sq_IntVectPush(0);
- obj.sq_IntVectPush(76);
- obj.sq_IntVectPush(500);
- obj.sq_IntVectPush(350);
- obj.sq_IntVectPush(0);
- obj.sq_IntVectPush(4);
- obj.sq_IntVectPush(4);
- obj.sq_AddSetStatePacket(13, STATE_PRIORITY_USER, true);
- local skilllevel = sq_GetSkillLevel(obj, 76)
- obj.startSkillCoolTime(76, skilllevel, -1)
- }
- }
- }
- //以下函数注意重复
- function onStartDungeon_Swordman(obj)
- {
- if (!obj) return;
- Berserker_double_knife(obj);
- return;
- }
复制代码
文件来自于 贴吧ID:qyy8802
|
|