|
楼主 |
发表于 2025-3-8 09:35:03
|
显示全部楼层
function onStartDungeon_Fighter(obj )
{
if(!obj) return;
if (sq_getGrowType(obj) == 1) //職業指向1是氣功
{
if (sq_GetSkillLevel(obj, 40) > 0)
{
obj.sq_IntVectClear();
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(40);//念氣環繞
obj.sq_IntVectPush(90);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(4);
obj.sq_IntVectPush(4);
obj.sq_AddSetStatePacket(13, STATE_PRIORITY_USER, true);
}
}
if (sq_getGrowType(obj) == 2) //職業指向2是散打
{
if (sq_GetSkillLevel(obj, 37) > 0)
{
obj.sq_IntVectClear();
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(37);//強拳
obj.sq_IntVectPush(90);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(4);
obj.sq_IntVectPush(4);
obj.sq_AddSetStatePacket(13, STATE_PRIORITY_USER, true);
}
}
return;
}
function onStartDungeon_ATFighter(obj )
{
if(!obj) return;
if (sq_getGrowType(obj) == 1) //職業指向1是氣功
{
if (sq_GetSkillLevel(obj, 40) > 0)
{
obj.sq_IntVectClear();
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(40);//念氣環繞
obj.sq_IntVectPush(90);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(4);
obj.sq_IntVectPush(4);
obj.sq_AddSetStatePacket(13, STATE_PRIORITY_USER, true);
}
}
if (sq_getGrowType(obj) == 2) //職業指向2是散打
{
if (sq_GetSkillLevel(obj, 37) > 0)
{
obj.sq_IntVectClear();
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(37);//強拳
obj.sq_IntVectPush(90);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(0);
obj.sq_IntVectPush(4);
obj.sq_IntVectPush(4);
obj.sq_AddSetStatePacket(13, STATE_PRIORITY_USER, true);
}
}
return;
} |
|