11163 lines
337 KiB
C
11163 lines
337 KiB
C
![]() |
#include "version.h"
|
|||
|
#include<string.h>
|
|||
|
#include<stdlib.h>
|
|||
|
#include <time.h>
|
|||
|
#include "buf.h"
|
|||
|
#include"object.h"
|
|||
|
#include"char.h"
|
|||
|
#include"char_base.h"
|
|||
|
#include"char_data.h"
|
|||
|
#include"battle.h"
|
|||
|
#include"battle_event.h"
|
|||
|
#include"battle_command.h"
|
|||
|
#include"battle_ai.h"
|
|||
|
#include"configfile.h"
|
|||
|
#include"lssproto_serv.h"
|
|||
|
#include"encount.h"
|
|||
|
#include"enemy.h"
|
|||
|
#include"handletime.h"
|
|||
|
#include"readmap.h"
|
|||
|
#include"pet_skill.h"
|
|||
|
#include "npcutil.h"
|
|||
|
#include "magic.h"
|
|||
|
#include "npc_npcenemy.h"
|
|||
|
#include "log.h"
|
|||
|
#include "pet_skillinfo.h"
|
|||
|
#include "anim_tbl.h"
|
|||
|
#include "common.h"
|
|||
|
#include "battle_magic.h"
|
|||
|
#ifdef _Item_ReLifeAct
|
|||
|
#include "item.h"
|
|||
|
#endif
|
|||
|
#include "correct_bug.h"
|
|||
|
#ifdef _ALLBLUES_LUA
|
|||
|
#include "mylua/function.h"
|
|||
|
#include "mylua/mylua.h"
|
|||
|
extern MY_Lua MYLua;
|
|||
|
#endif
|
|||
|
#ifdef _AUTO_PK
|
|||
|
#include "npc_autopk.h"
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
#include "profession_skill.h"
|
|||
|
#include "skill.h"
|
|||
|
#endif
|
|||
|
|
|||
|
extern char *DebugMainFunction;
|
|||
|
//#define DANTAI
|
|||
|
static int Total_BattleNum=0;
|
|||
|
BATTLE *BattleArray;
|
|||
|
int BATTLE_battlenum;
|
|||
|
static int BATTLE_searchCnt = 0;
|
|||
|
|
|||
|
#ifdef _PET_LIMITLEVEL //ANDY_ADD
|
|||
|
void Pet_Check_Die( int petindex);
|
|||
|
#endif
|
|||
|
static int BATTLE_SearchTask( void );
|
|||
|
static int BATTLE_Battling( int battleindex );
|
|||
|
|
|||
|
#ifdef _Item_ReLifeAct
|
|||
|
BOOL CHECK_ITEM_RELIFE( int battleindex, int toindex);
|
|||
|
#endif
|
|||
|
#ifdef _LOSE_FINCH_
|
|||
|
BOOL CHECK_PET_RELIFE( int battleindex, int petindex);
|
|||
|
#endif
|
|||
|
char szAllBattleString[BATTLE_STRING_MAX];
|
|||
|
#ifdef _OTHER_MAGICSTAUTS
|
|||
|
void BATTLE_MagicStatusSeq( int charaindex );
|
|||
|
#endif
|
|||
|
|
|||
|
//Terry 2001/11/28
|
|||
|
char szBattleString[512];
|
|||
|
char *pszBattleTop,
|
|||
|
*pszBattleLast;
|
|||
|
|
|||
|
char szBadStatusString[1024];
|
|||
|
|
|||
|
int gWeponType;
|
|||
|
float gDamageDiv;
|
|||
|
int gItemCrushRate = 400000;
|
|||
|
|
|||
|
char afmwar[20480];
|
|||
|
char bfmwar[20480];
|
|||
|
char cfmwar[20480];
|
|||
|
char dfmwar[20480];
|
|||
|
char efmwar[20480];
|
|||
|
char ffmwar[20480];
|
|||
|
int afmwarnum = 0;
|
|||
|
int bfmwarnum = 0;
|
|||
|
int cfmwarnum = 0;
|
|||
|
int dfmwarnum = 0;
|
|||
|
int efmwarnum = 0;
|
|||
|
int ffmwarnum = 0;
|
|||
|
extern int autopkcnt;
|
|||
|
int BoomerangVsTbl[4][5] = {
|
|||
|
{ 4+5*0,2+5*0,0+5*0,1+5*0,3+5*0 },
|
|||
|
{ 4+5*1,2+5*1,0+5*1,1+5*1,3+5*1 },
|
|||
|
{ 4+5*2,2+5*2,0+5*2,1+5*2,3+5*2 },
|
|||
|
{ 4+5*3,2+5*3,0+5*3,1+5*3,3+5*3 },
|
|||
|
|
|||
|
};
|
|||
|
#ifdef _OFFLINE_SYSTEM
|
|||
|
static int offlineAttack(int battleindex,int charaindex,int side)
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
|
|||
|
BATTLE_ENTRY *pEntry = BattleArray[battleindex].Side[side].Entry;
|
|||
|
int iNum[10] = {9,7,5,6,8,4,2,0,1,3};
|
|||
|
int i;
|
|||
|
for( i = 0; i < 10; i ++ ){
|
|||
|
if( pEntry[iNum[i]].charaindex != -1 ){
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, iNum[i] + side * BATTLE_ENTRY_MAX);
|
|||
|
int At_SoubiIndex = CHAR_getItemIndex( charaindex, CHAR_ARM );
|
|||
|
if( ITEM_CHECKINDEX( At_SoubiIndex ) == TRUE )
|
|||
|
{
|
|||
|
if( ITEM_getInt( At_SoubiIndex, ITEM_TYPE ) == ITEM_BOOMERANG ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_BOOMERANG );
|
|||
|
#ifdef _PETSKILL_BECOMEFOX
|
|||
|
if( CHAR_getInt( charaindex, CHAR_BASEIMAGENUMBER)==101749
|
|||
|
|| CHAR_getWorkInt( charaindex, CHAR_WORKFOXROUND ) != -1 ){ //<2F><><EFBFBD>DZ<EFBFBD><C7B1><EFBFBD>С<EFBFBD><D0A1><EFBFBD>겻<EFBFBD><EAB2BB><EFBFBD><EFBFBD>ʹ<EFBFBD>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_BECOMEPIG
|
|||
|
if( CHAR_getInt( charaindex, CHAR_BECOMEPIG) > -1 ){//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
}
|
|||
|
#endif
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_SETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3, 1 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_C_OK );
|
|||
|
|
|||
|
return 1;
|
|||
|
}
|
|||
|
|
|||
|
static int offlineRecovery(int battleindex,int charaindex,int HP)
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
int toNO = BATTLE_Index2No(battleindex, charaindex);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_S_OFFLINE_RECOVERY );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, toNO);
|
|||
|
CHAR_SETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3, HP );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_C_OK );
|
|||
|
|
|||
|
return 1;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void OffLineCommand(int battleindex,int charaindex,int side)
|
|||
|
{
|
|||
|
side = 1 - side; //test
|
|||
|
if(CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER){
|
|||
|
if(CHAR_getInt(charaindex,CHAR_HP)<CHAR_getWorkInt(charaindex,CHAR_WORKMAXHP)*0.8 && BattleArray[battleindex].type != BATTLE_TYPE_P_vs_P){
|
|||
|
offlineRecovery(battleindex, charaindex, 800);
|
|||
|
}else{
|
|||
|
int pindex = CHAR_getCharPet(charaindex, CHAR_getInt(charaindex, CHAR_RIDEPET));
|
|||
|
if(CHAR_CHECKINDEX(pindex)){
|
|||
|
if(CHAR_getInt(pindex,CHAR_HP)<CHAR_getWorkInt(pindex,CHAR_WORKMAXHP)*0.8 && BattleArray[battleindex].type != BATTLE_TYPE_P_vs_P){
|
|||
|
offlineRecovery(battleindex, charaindex, 800);
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
offlineAttack(battleindex, charaindex, side);
|
|||
|
}
|
|||
|
}else{
|
|||
|
if(CHAR_getInt(charaindex,CHAR_HP)<CHAR_getWorkInt(charaindex,CHAR_WORKMAXHP)*0.8 && BattleArray[battleindex].type != BATTLE_TYPE_P_vs_P){
|
|||
|
offlineRecovery(battleindex, charaindex, 800);
|
|||
|
}else{
|
|||
|
offlineAttack(battleindex, charaindex, side);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
void BATTLE_BadStatusAllClr( int charaindex )
|
|||
|
{
|
|||
|
int i ;
|
|||
|
for( i = 1; i < BATTLE_ST_END; i ++ ){
|
|||
|
CHAR_setWorkInt( charaindex, StatusTbl[i], 0 );
|
|||
|
}
|
|||
|
#ifdef _OTHER_MAGICSTAUTS
|
|||
|
for( i = 1; i < MAXSTATUSTYPE; i++ ){
|
|||
|
CHAR_setWorkInt( charaindex, MagicTbl[i], 0);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_OTHERSTATUSNUMS, 0);
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _IMPRECATE_ITEM
|
|||
|
for( i=0; i<3; i++) {
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKIMPRECATENUM1+i, 0 );
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_SETDUCK
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLDUCK, 0);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLDUCKPOWER, 0 );
|
|||
|
#ifdef _MAGICPET_SKILL
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLSTR, 0);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLSTRPOWER, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLTGH, 0);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLTGHPOWER, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLDEX, 0);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLDEXPOWER, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MAGICPETMP, 0 );
|
|||
|
#endif
|
|||
|
#endif
|
|||
|
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISDIE, 0 );
|
|||
|
|
|||
|
#ifdef _BATTLE_PROPERTY
|
|||
|
{
|
|||
|
Char *ch;
|
|||
|
ch = CHAR_getCharPointer( charaindex);
|
|||
|
if( ch == NULL ) return;
|
|||
|
strcpysafe( ch->charfunctable[CHAR_BATTLEPROPERTY].string,
|
|||
|
sizeof( ch->charfunctable[CHAR_BATTLEPROPERTY]), "");//ս<><D5BD>
|
|||
|
CHAR_constructFunctable( charaindex);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLHIT, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_P_DUCK, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKMOD_P_DUCK, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_WEAPON, 0 ); // <20><><EFBFBD><EFBFBD>ר<EFBFBD><D7A8>
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>翹<EFBFBD><E7BFB9>
|
|||
|
for( i=0; i<3; i++)
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_F_RESIST+i, 0/*CHAR_getInt( charaindex, PROFESSION_FIRE_R+i )*/ );
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_BECOMEPIG
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER )
|
|||
|
{
|
|||
|
for( i =0; i < CHAR_MAXPETHAVE; i++){
|
|||
|
int pindex = CHAR_getCharPet( charaindex, i );
|
|||
|
if( !CHAR_CHECKINDEX( pindex ) )
|
|||
|
continue;
|
|||
|
CHAR_setInt( pindex, CHAR_BECOMEPIG, -1 );
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_getTopBattle( int battleindex )
|
|||
|
{
|
|||
|
|
|||
|
BATTLE *pBattleTop;
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE ) return -1;
|
|||
|
|
|||
|
pBattleTop = &BattleArray[battleindex];
|
|||
|
|
|||
|
while( pBattleTop != NULL ){
|
|||
|
pBattleTop = BattleArray[battleindex].pBefore;
|
|||
|
}
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( pBattleTop->battleindex ) == FALSE ){
|
|||
|
return -1;
|
|||
|
}else{
|
|||
|
return pBattleTop->battleindex;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
static int BATTLE_getBattleFieldNo( int floor, int x, int y )
|
|||
|
{
|
|||
|
int tile[2], map[3], iRet;
|
|||
|
if( !MAP_getTileAndObjData( floor, x, y, &tile[0], &tile[1] ) )
|
|||
|
return FALSE;
|
|||
|
map[0] = MAP_getImageInt( tile[0], MAP_BATTLEMAP );
|
|||
|
map[1] = MAP_getImageInt( tile[0], MAP_BATTLEMAP2 );
|
|||
|
map[2] = MAP_getImageInt( tile[0], MAP_BATTLEMAP3 );
|
|||
|
iRet = map[RAND( 0, 2 )];
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
|
|||
|
void BATTLE_BadStatusString( int defNo, int status )
|
|||
|
{
|
|||
|
char szWork[256];
|
|||
|
if( status < 1 || status >= BATTLE_ST_END ){
|
|||
|
status = 0;
|
|||
|
}
|
|||
|
sprintf( szWork, "BM|%X|%X|", defNo, status );
|
|||
|
strncat( szBadStatusString, szWork, sizeof( szBadStatusString ) );
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#ifdef _ATTACK_MAGIC
|
|||
|
|
|||
|
static int CharTableIdx[20][2] =
|
|||
|
{
|
|||
|
{ 3 , 2 } , { 3 , 1 } , { 3 , 3 } , { 3 , 0 } , { 3 , 4 } ,
|
|||
|
{ 2 , 2 } , { 2 , 1 } , { 2 , 3 } , { 2 , 0 } , { 2 , 4 } ,
|
|||
|
{ 0 , 2 } , { 0 , 1 } , { 0 , 3 } , { 0 , 0 } , { 0 , 4 } ,
|
|||
|
{ 1 , 2 } , { 1 , 1 } , { 1 , 3 } , { 1 , 0 } , { 1 , 4 }
|
|||
|
|
|||
|
};
|
|||
|
|
|||
|
typedef int ( *FUNCSORTLOC )( const void* , const void* );
|
|||
|
|
|||
|
static int SortLoc( const int *pEle1 , const int *pEle2 )
|
|||
|
{
|
|||
|
int ele1basex , ele1basey;
|
|||
|
int ele2basex , ele2basey;
|
|||
|
|
|||
|
ele1basex = CharTableIdx[*pEle1][1];
|
|||
|
ele1basey = CharTableIdx[*pEle1][0];
|
|||
|
ele2basex = CharTableIdx[*pEle2][1];
|
|||
|
ele2basey = CharTableIdx[*pEle2][0];
|
|||
|
|
|||
|
if( *pEle1 >= 10 ){
|
|||
|
if( ele1basey != ele2basey )
|
|||
|
return ( ele1basey - ele2basey );
|
|||
|
return ( ele1basex - ele2basex );
|
|||
|
}else{ // <20><><EFBFBD>·<EFBFBD>
|
|||
|
if( ele1basey != ele2basey )
|
|||
|
return ( ele2basey - ele1basey );
|
|||
|
return ( ele2basex - ele1basey );
|
|||
|
}
|
|||
|
return 0;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
int BATTLE_MultiList( int battleindex, int toNo, int ToList[] )
|
|||
|
{
|
|||
|
int j , i , cnt=0,nLife = 0,nLifeArea[10];
|
|||
|
#ifdef _ATTACK_MAGIC
|
|||
|
// <20><><EFBFBD>˹<EFBFBD><CBB9><EFBFBD>
|
|||
|
if(0 <= toNo && toNo <= 19){
|
|||
|
memset(nLifeArea,-1,sizeof(nLifeArea));
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><C2B7><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if(toNo >= 0 && toNo <= 9){
|
|||
|
for(i=0;i<10;i++){
|
|||
|
// ȷ<><C8B7><EFBFBD><EFBFBD><EFBFBD>ŵ<EFBFBD><C5B5><EFBFBD><EFBFBD><EFBFBD>,<2C><><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD>ŵ<EFBFBD><C5B5>˵ĺ<CBB5><C4BA><EFBFBD>
|
|||
|
if(BATTLE_TargetCheck(battleindex,i) == TRUE) nLifeArea[nLife++] = i;
|
|||
|
}
|
|||
|
}
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD><CFB7><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if(toNo >= 10 && toNo <= 19){
|
|||
|
for(i=10;i<20;i++){
|
|||
|
// ȷ<><C8B7><EFBFBD><EFBFBD><EFBFBD>ŵ<EFBFBD><C5B5><EFBFBD><EFBFBD><EFBFBD>,<2C><><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD>ŵ<EFBFBD><C5B5>˵ĺ<CBB5><C4BA><EFBFBD>
|
|||
|
if(BATTLE_TargetCheck(battleindex,i) == TRUE) nLifeArea[nLife++] = i;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// ȫ<><C8AB>(<28><>Ȼ<EFBFBD><C8BB>̫<EFBFBD><CCAB><EFBFBD><EFBFBD>,<2C><>..)
|
|||
|
if(nLife == 0){
|
|||
|
//print("\nAll die!!");
|
|||
|
return -1;
|
|||
|
}else{
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><D5BD><EFBFBD><EFBFBD>
|
|||
|
if(BATTLE_TargetCheck(battleindex,toNo) == FALSE)
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һֻ<D2BB><D6BB><EFBFBD><EFBFBD>
|
|||
|
while((toNo = nLifeArea[rand()%10]) == -1);
|
|||
|
}
|
|||
|
ToList[0] = toNo;
|
|||
|
ToList[1] = -1;
|
|||
|
cnt = 1;
|
|||
|
}
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD>й<EFBFBD><D0B9><EFBFBD>
|
|||
|
else if( TARGET_SIDE_0_B_ROW == toNo ){
|
|||
|
for( j = 0 , i = 0 ; i < SIDE_OFFSET / 2 ; i++ ){
|
|||
|
if( TRUE == BATTLE_TargetCheck( battleindex , i ) ){
|
|||
|
ToList[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD>Ŷ<EFBFBD>û<EFBFBD><C3BB><EFBFBD>˿<EFBFBD><CBBF>Դ<EFBFBD>
|
|||
|
if(j == 0){
|
|||
|
// <20><>ǰһ<C7B0><D2BB>
|
|||
|
for( j = 0 , i = SIDE_OFFSET / 2 ; i < SIDE_OFFSET ; i++ ){
|
|||
|
if( TRUE == BATTLE_TargetCheck( battleindex , i ) ){
|
|||
|
ToList[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
// <20><><EFBFBD><EFBFBD>ȫ<EFBFBD><C8AB>
|
|||
|
if(j == 0) return -1;
|
|||
|
toNo = TARGET_SIDE_0_F_ROW;
|
|||
|
}
|
|||
|
}
|
|||
|
// <20><><EFBFBD><EFBFBD>ǰһ<C7B0>й<EFBFBD><D0B9><EFBFBD>
|
|||
|
else if( TARGET_SIDE_0_F_ROW == toNo )
|
|||
|
{
|
|||
|
for( j = 0 , i = SIDE_OFFSET / 2 ; i < SIDE_OFFSET ; i++ )
|
|||
|
{
|
|||
|
if( TRUE == BATTLE_TargetCheck( battleindex , i ) )
|
|||
|
{
|
|||
|
ToList[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD>Ŷ<EFBFBD>û<EFBFBD><C3BB><EFBFBD>˿<EFBFBD><CBBF>Դ<EFBFBD>
|
|||
|
if(j == 0)
|
|||
|
{
|
|||
|
// <20><><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>
|
|||
|
for( j = 0 , i = 0 ; i < SIDE_OFFSET / 2 ; i++ )
|
|||
|
{
|
|||
|
if( TRUE == BATTLE_TargetCheck( battleindex , i ) )
|
|||
|
{
|
|||
|
ToList[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
// <20><><EFBFBD><EFBFBD>ȫ<EFBFBD><C8AB>
|
|||
|
if(j == 0) return -1;
|
|||
|
toNo = TARGET_SIDE_0_B_ROW;
|
|||
|
}
|
|||
|
}
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD>й<EFBFBD><D0B9><EFBFBD>
|
|||
|
else if( TARGET_SIDE_1_B_ROW == toNo )
|
|||
|
{
|
|||
|
for( j = 0 , i = SIDE_OFFSET ; i < SIDE_OFFSET + SIDE_OFFSET / 2 ; i++ )
|
|||
|
{
|
|||
|
if( TRUE == BATTLE_TargetCheck( battleindex , i ) )
|
|||
|
{
|
|||
|
ToList[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD>Ŷ<EFBFBD>û<EFBFBD><C3BB><EFBFBD>˿<EFBFBD><CBBF>Դ<EFBFBD>
|
|||
|
if(j == 0)
|
|||
|
{
|
|||
|
// <20><>ǰһ<C7B0><D2BB>
|
|||
|
for( j = 0 , i = SIDE_OFFSET + SIDE_OFFSET / 2 ; i < SIDE_OFFSET * 2 ; i++ )
|
|||
|
{
|
|||
|
if( TRUE == BATTLE_TargetCheck( battleindex , i ) )
|
|||
|
{
|
|||
|
ToList[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
// <20><><EFBFBD><EFBFBD>ȫ<EFBFBD><C8AB>
|
|||
|
if(j == 0) return -1;
|
|||
|
toNo = TARGET_SIDE_1_F_ROW;
|
|||
|
}
|
|||
|
}
|
|||
|
// <20><><EFBFBD><EFBFBD>ǰһ<C7B0>й<EFBFBD><D0B9><EFBFBD>
|
|||
|
else if( TARGET_SIDE_1_F_ROW == toNo )
|
|||
|
{
|
|||
|
for( j = 0 , i = SIDE_OFFSET + SIDE_OFFSET / 2 ; i < SIDE_OFFSET * 2 ; i++ )
|
|||
|
{
|
|||
|
if( TRUE == BATTLE_TargetCheck( battleindex , i ) )
|
|||
|
{
|
|||
|
ToList[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD>Ŷ<EFBFBD>û<EFBFBD><C3BB><EFBFBD>˿<EFBFBD><CBBF>Դ<EFBFBD>
|
|||
|
if(j == 0)
|
|||
|
{
|
|||
|
// <20><><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>
|
|||
|
for( j = 0 , i = SIDE_OFFSET ; i < SIDE_OFFSET + SIDE_OFFSET / 2 ; i++ )
|
|||
|
{
|
|||
|
if( TRUE == BATTLE_TargetCheck( battleindex , i ) )
|
|||
|
{
|
|||
|
ToList[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
// <20><><EFBFBD><EFBFBD>ȫ<EFBFBD><C8AB>
|
|||
|
if(j == 0) return -1;
|
|||
|
toNo = TARGET_SIDE_1_B_ROW;
|
|||
|
}
|
|||
|
}
|
|||
|
// <20><><EFBFBD>·<EFBFBD><C2B7><EFBFBD><EFBFBD>й<EFBFBD><D0B9><EFBFBD>
|
|||
|
else if( TARGET_SIDE_0 == toNo )
|
|||
|
{
|
|||
|
//print("BATTLE_MultiList(20)toNo->%d\n",toNo);
|
|||
|
for( j = 0 , i = 0 ; i < SIDE_OFFSET ; i++ )
|
|||
|
{
|
|||
|
if( TRUE == BATTLE_TargetCheck( battleindex , i ) )
|
|||
|
{
|
|||
|
ToList[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
}
|
|||
|
// <20><><EFBFBD>Ϸ<EFBFBD><CFB7><EFBFBD><EFBFBD>й<EFBFBD><D0B9><EFBFBD>
|
|||
|
else if( toNo == TARGET_SIDE_1 )
|
|||
|
{
|
|||
|
for( j = 0 , i = SIDE_OFFSET ; i < SIDE_OFFSET * 2 ; i++ )
|
|||
|
{
|
|||
|
if( TRUE == BATTLE_TargetCheck( battleindex , i ) )
|
|||
|
{
|
|||
|
ToList[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
}
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>˹<EFBFBD><CBB9><EFBFBD>
|
|||
|
else if( toNo == TARGET_ALL ){
|
|||
|
#ifdef _FIX_ARRAYBUG
|
|||
|
for( j = 0 , i = 0 ; i < SIDE_OFFSET * 2 ; i++ ){
|
|||
|
#else
|
|||
|
for( j = 0 , i = 0 ; i < SIDE_OFFSET * 2 ; i++ , j++ ) {
|
|||
|
#endif
|
|||
|
if( TRUE == BATTLE_TargetCheck( battleindex , i ) ){
|
|||
|
ToList[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[i] = -1;
|
|||
|
cnt = j;
|
|||
|
// won add ǰ<><C7B0><EFBFBD>Ź<EFBFBD><C5B9><EFBFBD>
|
|||
|
}else if( toNo == TARGER_THROUGH ){
|
|||
|
int toNo2=-1, count=0;
|
|||
|
|
|||
|
if(BATTLE_TargetCheck(battleindex,toNo) != FALSE){
|
|||
|
ToList[count] = toNo;
|
|||
|
count++;
|
|||
|
cnt = count;
|
|||
|
}
|
|||
|
|
|||
|
if( toNo < (SIDE_OFFSET/2) ) toNo2= toNo + (SIDE_OFFSET/2);
|
|||
|
else if( toNo < (SIDE_OFFSET) ) toNo2= toNo - (SIDE_OFFSET/2);
|
|||
|
else if( toNo < (SIDE_OFFSET*1.5) ) toNo2= toNo + (SIDE_OFFSET/2);
|
|||
|
else if( toNo < (SIDE_OFFSET*2) ) toNo2= toNo - (SIDE_OFFSET/2);
|
|||
|
|
|||
|
if(BATTLE_TargetCheck(battleindex,toNo2) != FALSE){
|
|||
|
ToList[count] = toNo2;
|
|||
|
count++;
|
|||
|
cnt = count;
|
|||
|
}
|
|||
|
}else{
|
|||
|
ToList[0] = toNo;
|
|||
|
ToList[1] = -1;
|
|||
|
cnt = 1;
|
|||
|
}
|
|||
|
|
|||
|
if( cnt > 1 ) qsort( ToList , cnt , sizeof( ToList[0] ) , ( FUNCSORTLOC )SortLoc );
|
|||
|
return toNo;
|
|||
|
|
|||
|
#else
|
|||
|
if( 0 <= toNo && toNo <= 19 )
|
|||
|
{
|
|||
|
if( BATTLE_TargetCheck( battleindex, toNo ) == TRUE )
|
|||
|
{
|
|||
|
ToList[0] = toNo;
|
|||
|
ToList[1] = -1;
|
|||
|
cnt = 1;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
ToList[0] = -1;
|
|||
|
ToList[1] = -1;
|
|||
|
cnt = 0;
|
|||
|
}
|
|||
|
}
|
|||
|
else if( toNo == TARGET_SIDE_0 )
|
|||
|
{
|
|||
|
for( j = 0, i = 0; i < SIDE_OFFSET; i ++)
|
|||
|
{
|
|||
|
if( BATTLE_TargetCheck( battleindex, i ) == TRUE )
|
|||
|
{
|
|||
|
ToList[j] = i;
|
|||
|
j ++ ;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
}
|
|||
|
else if( toNo == TARGET_SIDE_1 )
|
|||
|
{
|
|||
|
for( j = 0, i = SIDE_OFFSET; i < SIDE_OFFSET*2; i ++ )
|
|||
|
{
|
|||
|
if( BATTLE_TargetCheck( battleindex, i ) == TRUE )
|
|||
|
{
|
|||
|
ToList[j] = i;
|
|||
|
j ++ ;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
cnt = j;
|
|||
|
}
|
|||
|
else if( toNo == TARGET_ALL ){
|
|||
|
for( j = 0, i = 0; i < SIDE_OFFSET*2; i ++, j ++ ){
|
|||
|
if( BATTLE_TargetCheck( battleindex, i ) == TRUE ){
|
|||
|
ToList[j] = i;
|
|||
|
j ++ ;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[i] = -1;
|
|||
|
cnt = j;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
ToList[0] = toNo;
|
|||
|
ToList[1] = -1;
|
|||
|
cnt = 1;
|
|||
|
}
|
|||
|
|
|||
|
return 1;
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
void BATTLE_MultiListDead( int battleindex, int toNo, int ToList[] )
|
|||
|
{
|
|||
|
int j, i;
|
|||
|
if( 0 <= toNo && toNo <= 19 ){
|
|||
|
if( BATTLE_TargetCheckDead( battleindex, toNo ) == TRUE ){
|
|||
|
ToList[0] = toNo;
|
|||
|
ToList[1] = -1;
|
|||
|
}else{
|
|||
|
ToList[0] = -1;
|
|||
|
ToList[1] = -1;
|
|||
|
}
|
|||
|
}else
|
|||
|
if( toNo == TARGET_SIDE_0 ){
|
|||
|
for( j = 0, i = 0; i < SIDE_OFFSET; i ++){
|
|||
|
if( BATTLE_TargetCheckDead( battleindex, i ) == TRUE ){
|
|||
|
ToList[j] = i;
|
|||
|
j ++ ;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
}else
|
|||
|
if( toNo == TARGET_SIDE_1 ){
|
|||
|
for( j = 0, i = SIDE_OFFSET; i < SIDE_OFFSET*2; i ++ ){
|
|||
|
if( BATTLE_TargetCheckDead( battleindex, i ) == TRUE ){
|
|||
|
ToList[j] = i;
|
|||
|
j ++ ;
|
|||
|
}
|
|||
|
}
|
|||
|
ToList[j] = -1;
|
|||
|
}else{
|
|||
|
if( toNo == TARGET_ALL ){
|
|||
|
#ifdef _FIX_ARRAYBUG
|
|||
|
for( j = 0, i = 0; i < SIDE_OFFSET*2; i ++){
|
|||
|
#else
|
|||
|
for( j = 0, i = 0; i < SIDE_OFFSET*2; i ++, j ++ ){
|
|||
|
#endif
|
|||
|
if( BATTLE_TargetCheckDead( battleindex, i ) == TRUE ){
|
|||
|
ToList[j] = i;
|
|||
|
j ++ ;
|
|||
|
}
|
|||
|
}
|
|||
|
#ifdef _FIX_ITEMRELIFE // WON ADD <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
ToList[j] = -1;
|
|||
|
#else
|
|||
|
ToList[i] = -1;
|
|||
|
#endif
|
|||
|
}else{
|
|||
|
ToList[0] = toNo;
|
|||
|
ToList[1] = -1;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
BOOL BATTLE_IsThrowWepon( int itemindex){
|
|||
|
int itemtype;
|
|||
|
if( ITEM_CHECKINDEX( itemindex ) == FALSE ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
itemtype = ITEM_getInt( itemindex, ITEM_TYPE );
|
|||
|
if( itemtype == ITEM_BOOMERANG
|
|||
|
|| itemtype == ITEM_BOW
|
|||
|
|| itemtype == ITEM_BREAKTHROW
|
|||
|
|| itemtype == ITEM_BOUNDTHROW ){
|
|||
|
return TRUE;
|
|||
|
}else{
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_ClearGetExp( int charaindex )
|
|||
|
{
|
|||
|
int i, pindex;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE ){
|
|||
|
return BATTLE_ERR_CHARAINDEX;
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKGETEXP, 0 );
|
|||
|
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
|
|||
|
pindex = CHAR_getCharPet( charaindex, i );
|
|||
|
if( CHAR_CHECKINDEX( pindex ) == FALSE )continue;
|
|||
|
CHAR_setWorkInt( pindex, CHAR_WORKGETEXP, 0 );
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
INLINE void _BATTLE_ExitAll( char *file, int line, int battleindex)
|
|||
|
{
|
|||
|
int j,i, charaindex;
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = BattleArray[battleindex].Side[j].Entry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
BATTLE_Exit( charaindex, battleindex );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE,
|
|||
|
BATTLE_CHARMODE_NONE );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void BATTLE_AllCharaFinishSet( int battleindex )
|
|||
|
{
|
|||
|
int j,i, charaindex;
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = BattleArray[battleindex].Side[j].Entry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE,
|
|||
|
BATTLE_CHARMODE_FINAL );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
BOOL BATTLE_IsCharge( int charaindex )
|
|||
|
{
|
|||
|
int com;
|
|||
|
com = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 );
|
|||
|
if( com == BATTLE_COM_S_CHARGE
|
|||
|
|| com == BATTLE_COM_S_EARTHROUND1
|
|||
|
|| com == BATTLE_COM_S_EARTHROUND0
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
|| CHAR_getWorkInt( charaindex, CHAR_DOOMTIME ) > 0
|
|||
|
#endif
|
|||
|
){
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
void BATTLE_AllCharaCWaitSet( int battleindex )
|
|||
|
{
|
|||
|
int j,i, charaindex;
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = BattleArray[battleindex].Side[j].Entry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
|
|||
|
if( BATTLE_IsCharge( charaindex ) == TRUE ){
|
|||
|
}else{
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1,
|
|||
|
BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE,
|
|||
|
BATTLE_CHARMODE_C_WAIT );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void BATTLE_AllCharaWatchWaitSet( int battleindex )
|
|||
|
{
|
|||
|
int i, charaindex;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = BattleArray[battleindex].Side[0].Entry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE )
|
|||
|
!= BATTLE_CHARMODE_WATCHINIT
|
|||
|
){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE,
|
|||
|
BATTLE_CHARMODE_C_WAIT );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void BATTLE_SurpriseSet(
|
|||
|
int battleindex,
|
|||
|
int side
|
|||
|
)
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
int i, charaindex;
|
|||
|
|
|||
|
pEntry = BattleArray[battleindex].Side[side].Entry;
|
|||
|
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = pEntry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPET ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_C_OK );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
BOOL BATTLE_initBattleArray(
|
|||
|
int battlenum
|
|||
|
)
|
|||
|
{
|
|||
|
|
|||
|
int i;
|
|||
|
BATTLE_battlenum = battlenum;
|
|||
|
|
|||
|
BattleArray = allocateMemory( sizeof( BATTLE ) * BATTLE_battlenum );
|
|||
|
if( BattleArray == NULL ) return FALSE;
|
|||
|
for( i = 0 ; i < BATTLE_battlenum ; i ++ ){
|
|||
|
memset( &BattleArray[i], 0 , sizeof( BATTLE ));
|
|||
|
}
|
|||
|
print("<EFBFBD><EFBFBD><EFBFBD><EFBFBD> %4.2f MB <20>ռ<EFBFBD>...", ((float)sizeof( Char )*BATTLE_battlenum)/1024.0/1024.0);
|
|||
|
strcpy(afmwar,"-1,");
|
|||
|
strcpy(bfmwar,"-1,");
|
|||
|
strcpy(cfmwar,"-1,");
|
|||
|
strcpy(dfmwar,"-1,");
|
|||
|
return TRUE;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
static void EntryInit( BATTLE_ENTRY *pEntry ){
|
|||
|
int i;
|
|||
|
pEntry->charaindex = -1;
|
|||
|
pEntry->bid = -1;
|
|||
|
pEntry->escape = 0;
|
|||
|
for( i = 0; i < GETITEM_MAX; i ++ ){
|
|||
|
pEntry->getitem[i] = -1;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_CreateBattle( int charaindex )
|
|||
|
{
|
|||
|
int battleindex, i, j;
|
|||
|
BATTLE *pBattle;
|
|||
|
battleindex = BATTLE_SearchTask( );
|
|||
|
// NUKE 0701
|
|||
|
if( battleindex < 0 )return -1;
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
// NUKE 0701
|
|||
|
if (pBattle==NULL) return -1;
|
|||
|
pBattle->use = TRUE;
|
|||
|
pBattle->mode = BATTLE_MODE_INIT;
|
|||
|
pBattle->turn = 0;
|
|||
|
pBattle->dpbattle = 0;
|
|||
|
pBattle->norisk = 0;
|
|||
|
pBattle->flg = 0;
|
|||
|
pBattle->field_att = BATTLE_ATTR_NONE;
|
|||
|
pBattle->att_count = 0;
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
EntryInit( &pBattle->Side[j].Entry[i] );
|
|||
|
}
|
|||
|
}
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX*2; i ++ ){
|
|||
|
pBattle->iEntryBack[i] = -1;
|
|||
|
pBattle->iEntryBack2[i] = -1;
|
|||
|
}
|
|||
|
pBattle->WinFunc = NULL;
|
|||
|
pBattle->pNext = NULL;
|
|||
|
pBattle->pBefore = NULL;
|
|||
|
pBattle->battleindex = battleindex;
|
|||
|
Total_BattleNum ++;
|
|||
|
#ifdef _BATTLECOMMAND_TIME
|
|||
|
pBattle->PartTime = 0;
|
|||
|
#endif
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
/* pBattle->ice_count = 0;
|
|||
|
for( i = 0; i < 20; i ++ ){
|
|||
|
pBattle->ice_bout[i]=0;
|
|||
|
pBattle->ice_use[i]=FALSE;
|
|||
|
pBattle->ice_toNo[i]=0;
|
|||
|
pBattle->ice_level[i]=0;
|
|||
|
pBattle->ice_array[i]=0;
|
|||
|
pBattle->ice_attackNo[i]=0;
|
|||
|
pBattle->ice_charaindex[i]=-1;
|
|||
|
}*/
|
|||
|
#endif
|
|||
|
pBattle->floor = CHAR_getInt(charaindex,CHAR_FLOOR);
|
|||
|
time_t timep;
|
|||
|
time(&timep);
|
|||
|
pBattle->battletime = timep;
|
|||
|
return battleindex;
|
|||
|
}
|
|||
|
|
|||
|
static int BATTLE_SearchTask( void )
|
|||
|
{
|
|||
|
int i, j;
|
|||
|
i = BATTLE_searchCnt;
|
|||
|
for( j = 0; j < BATTLE_battlenum; j ++ ){
|
|||
|
if( i >= BATTLE_battlenum ) i = 0;
|
|||
|
if( BattleArray[i].use == FALSE ){
|
|||
|
if(i>=getBattlenum()) return -1;
|
|||
|
BATTLE_searchCnt = i + 1;
|
|||
|
return i;
|
|||
|
}
|
|||
|
i ++;
|
|||
|
}
|
|||
|
return -1;
|
|||
|
}
|
|||
|
|
|||
|
void BATTLE_DeleteItem( int battleindex )
|
|||
|
{
|
|||
|
int i, j, k;
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
pEntry = &BattleArray[battleindex].Side[j].Entry[i];
|
|||
|
for( k = 0; k < GETITEM_MAX; k ++ ){
|
|||
|
if( pEntry->getitem[k] >= 0 ){
|
|||
|
// print( "// <20><>Ѱ(<28><>ȥ)<29><><EFBFBD><EFBFBD>(%d),(%s)\n", pEntry->getitem[k], ITEM_getAppropriateName(pEntry->getitem[k]) );
|
|||
|
ITEM_endExistItemsOne( pEntry->getitem[k] );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
int BATTLE_DeleteBattle(
|
|||
|
int battleindex
|
|||
|
)
|
|||
|
{
|
|||
|
int i, j;
|
|||
|
BATTLE *pBattle;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE ){
|
|||
|
//fprint( "err:battle index error\n" );
|
|||
|
return BATTLE_ERR_BATTLEINDEX;
|
|||
|
}
|
|||
|
if( BATTLE_WatchUnLink( battleindex ) == FALSE ){
|
|||
|
//fprint( "err:battle link <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n" );
|
|||
|
}
|
|||
|
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
pBattle->use = FALSE;
|
|||
|
pBattle->mode = BATTLE_MODE_NONE;
|
|||
|
if(pBattle->type == BATTLE_TYPE_P_vs_P){
|
|||
|
if(pBattle->floor == 1042){
|
|||
|
char atmpbuf[64];
|
|||
|
sprintf(atmpbuf,",%d,",battleindex);
|
|||
|
char *newafmwar = replace(afmwar,atmpbuf,",");
|
|||
|
strcpy(afmwar,newafmwar);
|
|||
|
if(afmwarnum>0)
|
|||
|
afmwarnum--;
|
|||
|
}else if(pBattle->floor == 2032){
|
|||
|
char btmpbuf[64];
|
|||
|
sprintf(btmpbuf,",%d,",battleindex);
|
|||
|
char *newbfmwar = replace(bfmwar,btmpbuf,",");
|
|||
|
strcpy(bfmwar,newbfmwar);
|
|||
|
if(bfmwarnum>0)
|
|||
|
bfmwarnum--;
|
|||
|
}else if(pBattle->floor == 3032){
|
|||
|
char ctmpbuf[64];
|
|||
|
sprintf(ctmpbuf,",%d,",battleindex);
|
|||
|
char *newcfmwar = replace(cfmwar,ctmpbuf,",");
|
|||
|
strcpy(cfmwar,newcfmwar);
|
|||
|
if(cfmwarnum>0)
|
|||
|
cfmwarnum--;
|
|||
|
}else if(pBattle->floor == 4032){
|
|||
|
char dtmpbuf[64];
|
|||
|
sprintf(dtmpbuf,",%d,",battleindex);
|
|||
|
char *newdfmwar = replace(dfmwar,dtmpbuf,",");
|
|||
|
strcpy(dfmwar,newdfmwar);
|
|||
|
if(dfmwarnum>0)
|
|||
|
dfmwarnum--;
|
|||
|
}else if(pBattle->floor == 20000){
|
|||
|
char etmpbuf[64];
|
|||
|
sprintf(etmpbuf,",%d,",battleindex);
|
|||
|
char *newefmwar = replace(efmwar,etmpbuf,",");
|
|||
|
strcpy(efmwar,newefmwar);
|
|||
|
if(efmwarnum>0)
|
|||
|
efmwarnum--;
|
|||
|
}else if(pBattle->floor == 51000){
|
|||
|
char ftmpbuf[64];
|
|||
|
sprintf(ftmpbuf,",%d,",battleindex);
|
|||
|
char *newffmwar = replace(ffmwar,ftmpbuf,",");
|
|||
|
strcpy(ffmwar,newffmwar);
|
|||
|
if(ffmwarnum>0)
|
|||
|
ffmwarnum--;
|
|||
|
}
|
|||
|
}
|
|||
|
pBattle->floor = -1;
|
|||
|
pBattle->battletime = 0;
|
|||
|
BATTLE_DeleteItem( battleindex );
|
|||
|
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
EntryInit( &pBattle->Side[j].Entry[i] );
|
|||
|
}
|
|||
|
}
|
|||
|
Total_BattleNum--;
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
int BATTLE_No2Index(
|
|||
|
int battleindex,
|
|||
|
int bid
|
|||
|
)
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return -1;
|
|||
|
if( BATTLE_CHECKNO( bid ) == FALSE )return -1;
|
|||
|
|
|||
|
if( bid >= 10 ){
|
|||
|
pEntry = BattleArray[battleindex].Side[1].Entry;
|
|||
|
bid -= SIDE_OFFSET;
|
|||
|
}else{
|
|||
|
pEntry = BattleArray[battleindex].Side[0].Entry;
|
|||
|
}
|
|||
|
if( CHAR_CHECKINDEX( pEntry[bid].charaindex ) == FALSE )return -1;
|
|||
|
|
|||
|
return pEntry[bid].charaindex;
|
|||
|
|
|||
|
}
|
|||
|
#ifdef _Item_ReLifeAct
|
|||
|
int BATTLE_getBattleDieIndex( int battleindex, int bid )
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return -1;
|
|||
|
if( BATTLE_CHECKNO( bid ) == FALSE )return -1;
|
|||
|
|
|||
|
if( bid >= 10 ){
|
|||
|
pEntry = BattleArray[battleindex].Side[1].Entry;
|
|||
|
bid -= SIDE_OFFSET;
|
|||
|
}else{
|
|||
|
pEntry = BattleArray[battleindex].Side[0].Entry;
|
|||
|
}
|
|||
|
if( CHAR_CHECKINDEX( pEntry[bid].charaindex ) == FALSE )return -1;
|
|||
|
if( pEntry[bid].flg & BENT_FLG_ULTIMATE ) return -1;
|
|||
|
|
|||
|
return pEntry[bid].charaindex;
|
|||
|
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
BOOL BATTLE_BattleUltimate( int battleindex, int bid ) //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>λ<EFBFBD>D<EFBFBD><44><EFBFBD>Ƿ<C7B7><F1B1BBB4><EFBFBD>
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return FALSE;
|
|||
|
if( BATTLE_CHECKNO( bid ) == FALSE )return FALSE;
|
|||
|
if( bid >= 10 ){
|
|||
|
pEntry = BattleArray[battleindex].Side[1].Entry;
|
|||
|
bid -= SIDE_OFFSET;
|
|||
|
}else{
|
|||
|
pEntry = BattleArray[battleindex].Side[0].Entry;
|
|||
|
}
|
|||
|
if( pEntry[bid].flg & BENT_FLG_ULTIMATE ) return TRUE;
|
|||
|
else return TRUE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
int BATTLE_Index2No(
|
|||
|
int battleindex,
|
|||
|
int charaindex
|
|||
|
)
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
int i, j;
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return -1;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return -1;
|
|||
|
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
pEntry = BattleArray[battleindex].Side[j].Entry;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
if( pEntry[i].charaindex == charaindex ){
|
|||
|
return i + j * SIDE_OFFSET;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return -1;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
char *BATTLE_CharTitle( int charaindex )
|
|||
|
{
|
|||
|
char *pName;
|
|||
|
static char Len0Buff[2] = "";
|
|||
|
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPET ){
|
|||
|
pName = Len0Buff;
|
|||
|
}else{
|
|||
|
pName = CHAR_getChar( charaindex, CHAR_OWNTITLE );
|
|||
|
if( pName[0] == 0 ){
|
|||
|
pName = Len0Buff;
|
|||
|
}
|
|||
|
}
|
|||
|
return pName;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
int BATTLE_CharaBackUp( int battleindex )
|
|||
|
{
|
|||
|
int i, j, k, charaindex;
|
|||
|
BATTLE *pBattle;
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE ){
|
|||
|
return BATTLE_ERR_BATTLEINDEX;
|
|||
|
}
|
|||
|
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
k = 0;
|
|||
|
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
k = j * SIDE_OFFSET;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX/2; i ++ ){
|
|||
|
charaindex = pBattle->Side[j].Entry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == TRUE
|
|||
|
&& CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER
|
|||
|
){
|
|||
|
pBattle->iEntryBack[k] = pBattle->Side[j].Entry[i].charaindex;
|
|||
|
pBattle->iEntryBack2[k] = pBattle->Side[j].Entry[i].charaindex;
|
|||
|
}else{
|
|||
|
pBattle->iEntryBack[k] = -1;
|
|||
|
pBattle->iEntryBack2[k] = -1;
|
|||
|
}
|
|||
|
k ++;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
int BATTLE_NewEntry(
|
|||
|
int charaindex,
|
|||
|
int battleindex,
|
|||
|
int side
|
|||
|
)
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
BATTLE *pBattle;
|
|||
|
int i, iEntryMax, iEntryFirst;
|
|||
|
|
|||
|
if( BATTLE_CHECKSIDE( side ) == FALSE )return BATTLE_ERR_PARAM;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return BATTLE_ERR_CHARAINDEX;
|
|||
|
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
|
|||
|
if( pBattle->use == FALSE )return BATTLE_ERR_NOUSE;
|
|||
|
|
|||
|
if( side < 0 || side > 1 ){
|
|||
|
return BATTLE_ERR_PARAM;
|
|||
|
}
|
|||
|
#ifdef _PET_BUG
|
|||
|
if(CHAR_getInt( charaindex, CHAR_WHICHTYPE )==CHAR_TYPEPLAYER){
|
|||
|
int petarray = CHAR_getInt( charaindex, CHAR_DEFAULTPET);
|
|||
|
if(petarray>-1){
|
|||
|
int petindex = CHAR_getCharPet( charaindex, petarray);
|
|||
|
if(CHAR_getInt(petindex,CHAR_VITAL)>=getPetPoint(0)*20 || CHAR_getInt(petindex,CHAR_STR)>=getPetPoint(1)*80 || CHAR_getInt(petindex,CHAR_TOUGH)>=getPetPoint(2)*80 || CHAR_getInt(petindex,CHAR_DEX)>=getPetPoint(3)*100)
|
|||
|
return BATTLE_ERR_PARAM;
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
switch( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) ){
|
|||
|
int work;
|
|||
|
|
|||
|
case CHAR_TYPEPLAYER:
|
|||
|
if( pBattle->Side[side].type != BATTLE_S_TYPE_PLAYER ){
|
|||
|
return BATTLE_ERR_TYPE;
|
|||
|
}
|
|||
|
iEntryFirst = 0;
|
|||
|
iEntryMax = BATTLE_PLAYER_MAX;
|
|||
|
break;
|
|||
|
case CHAR_TYPEENEMY:
|
|||
|
if( pBattle->Side[side].type != BATTLE_S_TYPE_ENEMY ){
|
|||
|
return BATTLE_ERR_TYPE;
|
|||
|
}
|
|||
|
iEntryFirst = 0;
|
|||
|
iEntryMax = BATTLE_ENTRY_MAX;
|
|||
|
break;
|
|||
|
case CHAR_TYPEPET:
|
|||
|
if( pBattle->Side[side].type != BATTLE_S_TYPE_PLAYER ){
|
|||
|
return BATTLE_ERR_TYPE;
|
|||
|
}
|
|||
|
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKPLAYERINDEX );
|
|||
|
pEntry = pBattle->Side[side].Entry;
|
|||
|
|
|||
|
work = BATTLE_Index2No( battleindex, work );
|
|||
|
work -= side * SIDE_OFFSET;
|
|||
|
work += 5;
|
|||
|
iEntryFirst = work;
|
|||
|
iEntryMax = work+1;
|
|||
|
break;
|
|||
|
#ifdef _PLAYER_NPC
|
|||
|
case CHAR_TYPEPLAYERNPC:
|
|||
|
iEntryFirst = 0;
|
|||
|
iEntryMax = BATTLE_ENTRY_MAX;
|
|||
|
break;
|
|||
|
|
|||
|
case CHAR_TYPEPLAYERPETNPC:
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKPLAYERINDEX );
|
|||
|
pEntry = pBattle->Side[side].Entry;
|
|||
|
|
|||
|
work = BATTLE_Index2No( battleindex, work );
|
|||
|
work -= side * SIDE_OFFSET;
|
|||
|
work += 5;
|
|||
|
iEntryFirst = work;
|
|||
|
iEntryMax = work+1;
|
|||
|
break;
|
|||
|
#endif
|
|||
|
default:
|
|||
|
//print( "<22><><EFBFBD><EFBFBD>(%s)(%d)\n",
|
|||
|
//CHAR_getUseName( charaindex ),
|
|||
|
//CHAR_getInt( charaindex, CHAR_WHICHTYPE ) );
|
|||
|
return BATTLE_ERR_TYPE;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
pEntry = pBattle->Side[side].Entry;
|
|||
|
|
|||
|
for( i = iEntryFirst; i < iEntryMax; i ++ ){
|
|||
|
if( pEntry[i].charaindex == -1 )break;
|
|||
|
}
|
|||
|
|
|||
|
if( i == iEntryMax ){
|
|||
|
return BATTLE_ERR_ENTRYMAX;
|
|||
|
}
|
|||
|
|
|||
|
EntryInit( &pEntry[i] );
|
|||
|
|
|||
|
pEntry[i].charaindex = charaindex;
|
|||
|
|
|||
|
pEntry[i].bid = i + side * SIDE_OFFSET;
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEINDEX,
|
|||
|
battleindex );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE,
|
|||
|
BATTLE_CHARMODE_INIT );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKDBATTLEESCAPE,
|
|||
|
0 );
|
|||
|
// shan 2001/12/27 Begin
|
|||
|
{
|
|||
|
int fd;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE)==CHAR_TYPEPLAYER ){
|
|||
|
fd = CHAR_getWorkInt( charaindex, CHAR_WORKFD);
|
|||
|
CONNECT_SetBattleRecvTime( fd, &NowTime);
|
|||
|
}
|
|||
|
}
|
|||
|
// End
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLESIDE, side );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEFLG, 0 );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, -1 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, -1 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM3, -1 );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKMODATTACK, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKMODDEFENCE, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKMODQUICK, 0 );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKDAMAGEABSROB, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKDAMAGEREFLEC, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKDAMAGEVANISH, 0 );
|
|||
|
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKMODCAPTURE, 0 );
|
|||
|
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISATTACKED, 1 );
|
|||
|
|
|||
|
BATTLE_BadStatusAllClr( charaindex );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEWATCH, 0 );
|
|||
|
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKTRAP, 0 ); //<2F><><EFBFBD><EFBFBD>
|
|||
|
BATTLE_ProfessionStatus_init( battleindex, charaindex );
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_ACUPUNCTURE
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKACUPUNCTURE, 0 );//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_RETRACE
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKRETRACE, 0 );//<><D7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_BECOMEFOX //<2F><><EFBFBD>Ļ<EFBFBD><C4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ-1
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFOXROUND, -1 );
|
|||
|
#endif
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXEARTHAT_BOUNDARY, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXWATERAT_BOUNDARY, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXFIREAT_BOUNDARY, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXWINDAT_BOUNDARY, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_DOOMTIME, 0 );//<2F><><EFBFBD><EFBFBD>ĩ<EFBFBD>ռ<EFBFBD><D5BC><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_com1, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_toNo, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_mode, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_skill_level, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_array, 0 );
|
|||
|
#endif
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
INLINE int _BATTLE_Exit( char *file, int line, int charaindex ,int battleindex)
|
|||
|
{
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKBATTLEREVERSE,0);
|
|||
|
#ifdef _NPCENEMY_1
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKBATTLEHELP,0);
|
|||
|
#endif
|
|||
|
#ifdef _WARNPC_CTRL
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKNPCENEMYBATTLETIME,0);
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKNPCBATTLESAMEIP,0);
|
|||
|
#endif
|
|||
|
#ifdef _BATTLEEND_FIX
|
|||
|
if(getBattleEndMode()==1){
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKPARTYMODE )
|
|||
|
!= CHAR_PARTY_CLIENT ){
|
|||
|
int myfloor=CHAR_getInt(charaindex,CHAR_FLOOR);
|
|||
|
if(myfloor==getBattleFloor(1) ||
|
|||
|
myfloor==getBattleFloor(2) ||
|
|||
|
myfloor==getBattleFloor(3) ||
|
|||
|
myfloor==getBattleFloor(4) ||
|
|||
|
myfloor==getBattleFloor(5) ||
|
|||
|
myfloor==1042 ||
|
|||
|
myfloor==2032 ||
|
|||
|
myfloor==3032 ||
|
|||
|
myfloor==4032){
|
|||
|
time_t timep;
|
|||
|
struct tm *p;
|
|||
|
time(&timep);
|
|||
|
p=localtime(&timep); /*ȡ<>õ<EFBFBD><C3B5><EFBFBD>ʱ<EFBFBD><CAB1>*/
|
|||
|
timep=mktime(p);
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKBALLTELENDTIME,timep);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
int i, j, k;
|
|||
|
BATTLE *pBattle;
|
|||
|
char szPet[32];
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return BATTLE_ERR_CHARAINDEX;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE ){
|
|||
|
return BATTLE_ERR_BATTLEINDEX;
|
|||
|
}
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER ){
|
|||
|
#ifdef _ALLBLUES_LUA_1_4
|
|||
|
BattleFinish(battleindex, charaindex);
|
|||
|
#endif
|
|||
|
}
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKPETSKILLBT,0);
|
|||
|
//#ifdef _PETSKILL_NONO_FIX
|
|||
|
// CHAR_setWorkInt(charaindex,CHAR_WORKLISTPAGE,0);
|
|||
|
//#endif
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_DOOMTIME, 0 );//<2F><><EFBFBD><EFBFBD>ĩ<EFBFBD>ռ<EFBFBD><D5BC><EFBFBD>
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_BECOMEFOX // <20>뿪ս<EBBFAA><D5BD>ʱ<EFBFBD><CAB1><EFBFBD>Ļ<EFBFBD><C4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɵı<C9B5><C4B1><EFBFBD>Ч<EFBFBD><D0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//print("\n<><6E><EFBFBD><EFBFBD>ͼ<EFBFBD><CDBC>:%s,%d", CHAR_getChar( charaindex, CHAR_NAME), CHAR_getInt( charaindex, CHAR_BASEIMAGENUMBER));
|
|||
|
|
|||
|
if( CHAR_getInt( charaindex, CHAR_BASEIMAGENUMBER)==101749
|
|||
|
|| CHAR_getWorkInt( charaindex, CHAR_WORKFOXROUND ) != -1 ){ //<2F><><EFBFBD><EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD>
|
|||
|
CHAR_setInt( charaindex, CHAR_BASEIMAGENUMBER, CHAR_getInt( charaindex, CHAR_BASEBASEIMAGENUMBER) );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFOXROUND, -1);
|
|||
|
//print("\n<><6E><EFBFBD><EFBFBD>ȥ:%d",CHAR_getInt( charaindex, CHAR_BASEIMAGENUMBER));
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_BECOMEPIG
|
|||
|
if( CHAR_getInt( charaindex, CHAR_BECOMEPIG) > -1
|
|||
|
&& CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER ){
|
|||
|
CHAR_setInt( charaindex, CHAR_BASEIMAGENUMBER, CHAR_getInt( charaindex, CHAR_BECOMEPIG_BBI ) );
|
|||
|
CHAR_complianceParameter( charaindex );
|
|||
|
CHAR_sendCToArroundCharacter( CHAR_getWorkInt( charaindex , CHAR_WORKOBJINDEX ));
|
|||
|
CHAR_send_P_StatusString( charaindex , CHAR_P_STRING_BASEBASEIMAGENUMBER);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _MAP_HEAL
|
|||
|
{
|
|||
|
int mymap;
|
|||
|
int n;
|
|||
|
mymap = CHAR_getInt(charaindex,CHAR_FLOOR);
|
|||
|
for(n=0;n<10;n++)
|
|||
|
{
|
|||
|
if(getMapHeal(n)==-1) break;
|
|||
|
if(mymap == getMapHeal(n) && CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER)
|
|||
|
{
|
|||
|
NPC_HealerAllHeal(charaindex);
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>Զ<EFBFBD><EFBFBD>ָ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
#ifdef _MAGIC_NOCAST // <20><><EFBFBD><EFBFBD>:<3A><>Ĭ
|
|||
|
// WON ADD
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER )
|
|||
|
lssproto_NC_send( getfdFromCharaIndex( charaindex ), 0);//<2F><>ԭ
|
|||
|
#endif
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
if( pBattle->use == FALSE )
|
|||
|
return BATTLE_ERR_NOUSE;
|
|||
|
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
pEntry = pBattle->Side[j].Entry;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
if( pEntry[i].charaindex != charaindex )
|
|||
|
continue;
|
|||
|
pEntry[i].charaindex = -1;
|
|||
|
pEntry[i].escape = 0;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_FINAL );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEINDEX, -1 );
|
|||
|
#ifdef _LOSE_FINCH_
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKSPETRELIFE, 0);
|
|||
|
#endif
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEENEMY ){
|
|||
|
CHAR_endCharOneArray( charaindex );
|
|||
|
#ifdef _PLAYER_NPC
|
|||
|
}else if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYERNPC
|
|||
|
|| CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYERPETNPC ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_NONE );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEINDEX, -1 );
|
|||
|
{
|
|||
|
CHAR_setInt( charaindex , CHAR_HP ,CHAR_getWorkInt( charaindex, CHAR_WORKMAXHP ) );
|
|||
|
CHAR_setInt( charaindex , CHAR_MP ,CHAR_getWorkInt( charaindex, CHAR_WORKMAXMP ) );
|
|||
|
for(i = 0 ; i < CHAR_MAXPETHAVE; i ++) {
|
|||
|
int petindex = CHAR_getCharPet( charaindex, i);
|
|||
|
if( CHAR_CHECKINDEX( petindex) == FALSE ) continue;
|
|||
|
CHAR_setFlg( petindex, CHAR_ISDIE, 0);
|
|||
|
CHAR_setInt( petindex , CHAR_HP ,CHAR_getWorkInt( petindex, CHAR_WORKMAXHP ) );
|
|||
|
CHAR_setInt( petindex , CHAR_MP ,CHAR_getWorkInt( petindex, CHAR_WORKMAXMP ) );
|
|||
|
}
|
|||
|
}
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == TRUE ){
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISDIE, FALSE );
|
|||
|
}
|
|||
|
BATTLE_BadStatusAllClr( charaindex );
|
|||
|
CHAR_complianceParameter( charaindex );
|
|||
|
CHAR_sendBattleEffect( charaindex, OFF);
|
|||
|
#endif
|
|||
|
}else if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER ){
|
|||
|
#ifdef _OFFLINE_SYSTEM
|
|||
|
if(CHAR_getWorkInt( charaindex, CHAR_WORK_OFFLINE ) != 0){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_NONE );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEINDEX, -1 );
|
|||
|
CHAR_sendBattleEffect( charaindex, OFF);
|
|||
|
}
|
|||
|
#endif
|
|||
|
int petindex = pEntry[i+5].charaindex;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == TRUE
|
|||
|
|| CHAR_getInt( charaindex, CHAR_HP ) == TRUE )
|
|||
|
{
|
|||
|
|
|||
|
#ifdef _FIX_SPEED_UPLEVEL // WON ADD <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
// Robin cancel
|
|||
|
//if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == TRUE ){
|
|||
|
//}else
|
|||
|
{
|
|||
|
// Robin cancel
|
|||
|
//if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1) != BATTLE_COM_ESCAPE )
|
|||
|
{
|
|||
|
unsigned int Dtimes;
|
|||
|
unsigned int battletime;
|
|||
|
int fd = getfdFromCharaIndex( charaindex );
|
|||
|
Dtimes = BattleArray[battleindex].CreateTime;
|
|||
|
battletime = (unsigned int)(BattleArray[battleindex].flgTime/100);
|
|||
|
|
|||
|
//if( CHAR_getWorkInt( charaindex, CHAR_WORKFLG) & WORKFLG_DEBUGMODE ){
|
|||
|
//}else
|
|||
|
{
|
|||
|
CheckDefBTime( charaindex, fd, Dtimes, battletime, 10);//lowTime<6D>ӳ<EFBFBD>ʱ<EFBFBD><CAB1>
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISDIE, 0 );
|
|||
|
CHAR_setInt( charaindex, CHAR_HP, 1 );
|
|||
|
// CoolFish: Faily PK 2001/8/3
|
|||
|
CHAR_setWorkInt(charaindex, CHAR_WORKFMPKFLAG, -1);
|
|||
|
|
|||
|
}else {
|
|||
|
#ifdef _BATTLE_TIMESPEED
|
|||
|
// Robin cancel
|
|||
|
//if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1) != BATTLE_COM_ESCAPE )
|
|||
|
#ifdef _OFFLINE_SYSTEM
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORK_OFFLINE) == 0 )
|
|||
|
#endif
|
|||
|
{
|
|||
|
unsigned int Dtimes;
|
|||
|
unsigned int battletime;
|
|||
|
|
|||
|
int fd = getfdFromCharaIndex( charaindex );
|
|||
|
Dtimes = BattleArray[battleindex].CreateTime;
|
|||
|
battletime = (unsigned int)(BattleArray[battleindex].flgTime/100);
|
|||
|
//if( CHAR_getWorkInt( charaindex, CHAR_WORKFLG) & WORKFLG_DEBUGMODE ) {
|
|||
|
//}else
|
|||
|
{
|
|||
|
CheckDefBTime( charaindex, fd, Dtimes, battletime, 0);//lowTime<6D>ӳ<EFBFBD>ʱ<EFBFBD><CAB1>
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
}
|
|||
|
if( CHAR_CHECKINDEX( petindex ) == TRUE ){
|
|||
|
pEntry[i+5].charaindex = -1;
|
|||
|
CHAR_setWorkInt( petindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_NONE );
|
|||
|
CHAR_setWorkInt( petindex, CHAR_WORKBATTLEINDEX, -1 );
|
|||
|
}
|
|||
|
BATTLE_BadStatusAllClr( charaindex );
|
|||
|
CHAR_complianceParameter( charaindex );
|
|||
|
CHAR_Skillupsend( charaindex );
|
|||
|
// Robin 0730
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKPETFALL) )
|
|||
|
{
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKPETFALL, 0 );
|
|||
|
CHAR_setInt( charaindex, CHAR_RIDEPET, -2 );
|
|||
|
}
|
|||
|
CHAR_send_P_StatusString( charaindex ,
|
|||
|
CHAR_P_STRING_HP|CHAR_P_STRING_EXP|
|
|||
|
CHAR_P_STRING_MP|CHAR_P_STRING_DUELPOINT|
|
|||
|
CHAR_P_STRING_CHARM |
|
|||
|
CHAR_P_STRING_EARTH |
|
|||
|
CHAR_P_STRING_WATER |
|
|||
|
CHAR_P_STRING_FIRE |
|
|||
|
CHAR_P_STRING_WIND |
|
|||
|
CHAR_P_STRING_RIDEPET
|
|||
|
);
|
|||
|
// Robin 0730
|
|||
|
if( CHAR_getInt( charaindex, CHAR_RIDEPET ) == -2 ){
|
|||
|
CHAR_setInt( charaindex, CHAR_RIDEPET, -1 );
|
|||
|
}
|
|||
|
for( k = 0; k < CHAR_MAXPETHAVE; k ++ ){
|
|||
|
petindex = CHAR_getCharPet( charaindex, k );
|
|||
|
if( CHAR_CHECKINDEX( petindex ) == FALSE )continue;
|
|||
|
if( CHAR_getInt( petindex, CHAR_MAILMODE) != CHAR_PETMAIL_NONE ) continue;
|
|||
|
if( CHAR_getFlg( petindex, CHAR_ISDIE ) == TRUE
|
|||
|
|| CHAR_getInt( petindex, CHAR_HP ) <= 0 ){
|
|||
|
CHAR_setFlg( petindex, CHAR_ISDIE, 0 );
|
|||
|
CHAR_setInt( petindex, CHAR_HP, 1 );
|
|||
|
}
|
|||
|
CHAR_setWorkInt( petindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_NONE );
|
|||
|
#ifdef _LOSE_FINCH_
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKSPETRELIFE, 0);
|
|||
|
#endif
|
|||
|
#ifdef _VARY_WOLF
|
|||
|
if( CHAR_getInt( petindex, CHAR_BASEBASEIMAGENUMBER) != CHAR_getInt( petindex, CHAR_BASEIMAGENUMBER) ) // Robin fix
|
|||
|
{
|
|||
|
CHAR_setInt( petindex, CHAR_BASEIMAGENUMBER, CHAR_getInt( petindex, CHAR_BASEBASEIMAGENUMBER));
|
|||
|
sprintf( szPet, "K%d", k);
|
|||
|
CHAR_sendStatusString( charaindex , szPet);
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
// <20><><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getWorkInt( petindex, CHAR_WORKOBLIVION ) > 0 ) // Robin fix
|
|||
|
{
|
|||
|
int pet_no = CHAR_getInt( charaindex, CHAR_DEFAULTPET );
|
|||
|
CHAR_setWorkInt( petindex, CHAR_WORKOBLIVION, 0 );
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
sprintf( szPet, "W%d", pet_no);
|
|||
|
CHAR_sendStatusString( charaindex , szPet);
|
|||
|
}
|
|||
|
#endif
|
|||
|
BATTLE_BadStatusAllClr( petindex );
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
CHAR_send_K_StatusString( charaindex , k,
|
|||
|
CHAR_K_STRING_HP|CHAR_K_STRING_EXP|
|
|||
|
CHAR_K_STRING_AI| CHAR_K_STRING_MP |
|
|||
|
CHAR_K_STRING_ATK | CHAR_K_STRING_DEF |
|
|||
|
CHAR_K_STRING_QUICK |
|
|||
|
CHAR_K_STRING_EARTH |
|
|||
|
CHAR_K_STRING_WATER |
|
|||
|
CHAR_K_STRING_FIRE |
|
|||
|
CHAR_K_STRING_WIND
|
|||
|
);
|
|||
|
}
|
|||
|
if( BattleArray[battleindex].type == BATTLE_TYPE_P_vs_P ){
|
|||
|
int flg = 0;
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISDUEL, 0);
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISPARTY)) flg |= CHAR_FS_PARTY;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDUEL)) flg |= CHAR_FS_DUEL;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISPARTYCHAT)) flg |= CHAR_FS_PARTYCHAT;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISTRADECARD)) flg |= CHAR_FS_TRADECARD;
|
|||
|
#ifdef _CHANNEL_MODIFY
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISTELL)) flg |= CHAR_FS_TELL;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISFM)) flg |= CHAR_FS_FM;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISOCC)) flg |= CHAR_FS_OCC;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISCHAT)) flg |= CHAR_FS_CHAT;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISSAVE)) flg |= CHAR_FS_SAVE;
|
|||
|
if(getSaType()==95){
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISWORLD)) flg |= CHAR_FS_WORLD;
|
|||
|
}
|
|||
|
#endif
|
|||
|
lssproto_FS_send( getfdFromCharaIndex(charaindex), flg);
|
|||
|
}
|
|||
|
|
|||
|
lssproto_XYD_send( getfdFromCharaIndex(charaindex),
|
|||
|
CHAR_getInt( charaindex, CHAR_X ),
|
|||
|
CHAR_getInt( charaindex, CHAR_Y ),
|
|||
|
CHAR_getInt( charaindex, CHAR_DIR ) );
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_PartyUpdate( charaindex, CHAR_N_STRING_HP );
|
|||
|
|
|||
|
#ifdef _TIME_TICKET
|
|||
|
{
|
|||
|
int nowtime = time(NULL);
|
|||
|
int tickettime = CHAR_getWorkInt( charaindex, CHAR_WORKTICKETTIME);
|
|||
|
int totaltime;
|
|||
|
char msg[1024];
|
|||
|
if( tickettime > 0 && tickettime < nowtime ) {
|
|||
|
//int floor, x, y;
|
|||
|
CHAR_talkToCli( charaindex, -1, "лл<EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKTICKETTIMESTART) > 0 ) {
|
|||
|
totaltime = nowtime - CHAR_getWorkInt( charaindex, CHAR_WORKTICKETTIMESTART);
|
|||
|
sprintf( msg, "<EFBFBD><EFBFBD><EFBFBD>볡ʱ<EFBFBD><EFBFBD>%d<><64>%d<>롣", totaltime/60, totaltime%60);
|
|||
|
CHAR_talkToCli( charaindex, -1, msg, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKTICKETTIME, 0);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKTICKETTIMESTART, 0);
|
|||
|
/*if( CHAR_getElderPosition( CHAR_getInt( charaindex, CHAR_LASTTALKELDER), &floor, &x, &y ) != TRUE ) {
|
|||
|
CHAR_warpToSpecificPoint( charaindex, 1006, 15, 15);
|
|||
|
}
|
|||
|
else {
|
|||
|
CHAR_warpToSpecificPoint( charaindex, floor, x, y);
|
|||
|
}*/
|
|||
|
CHAR_warpToSpecificPoint( charaindex, 2006, 20, 17);
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
//51000<30><30>ͼս<CDBC><D5BD><EFBFBD>ؼ<F3B7B5BB>¼<EFBFBD><C2BC>
|
|||
|
if(CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER && CHAR_getInt( charaindex, CHAR_FLOOR )==51000){
|
|||
|
int floor = 0, x = 0, y = 0;
|
|||
|
CHAR_getElderPosition( CHAR_getInt( charaindex, CHAR_LASTTALKELDER), &floor, &x, &y );
|
|||
|
CHAR_warpToSpecificPoint( charaindex, floor, x, y);
|
|||
|
}
|
|||
|
lssproto_XYD_send(getfdFromCharaIndex( charaindex ),CHAR_getInt( charaindex, CHAR_X ),CHAR_getInt( charaindex, CHAR_Y ),CHAR_getInt( charaindex, CHAR_DIR ) );
|
|||
|
if(CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER){
|
|||
|
CHAR_CheckItemTime(charaindex);
|
|||
|
}
|
|||
|
return BATTLE_ERR_NONE;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
int BATTLE_PetDefaultExit(
|
|||
|
int charaindex,
|
|||
|
int battleindex
|
|||
|
)
|
|||
|
{
|
|||
|
int pno, pindex, iRet;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return BATTLE_ERR_CHARAINDEX;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER) return 0;
|
|||
|
pno = CHAR_getInt( charaindex, CHAR_DEFAULTPET );
|
|||
|
if( pno < 0 )return 0;
|
|||
|
pindex = CHAR_getCharPet( charaindex, pno );
|
|||
|
|
|||
|
iRet = BATTLE_Exit( pindex, battleindex );
|
|||
|
|
|||
|
if( iRet ){
|
|||
|
iRet *= -1;
|
|||
|
}else{
|
|||
|
return 1;
|
|||
|
}
|
|||
|
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
int BATTLE_PetDefaultEntry(
|
|||
|
int charaindex,
|
|||
|
int battleindex,
|
|||
|
int side
|
|||
|
)
|
|||
|
{
|
|||
|
int pindex;
|
|||
|
|
|||
|
#if 1
|
|||
|
int pno;
|
|||
|
|
|||
|
int ret = 0;
|
|||
|
|
|||
|
pno = CHAR_getInt( charaindex, CHAR_DEFAULTPET );
|
|||
|
if( pno == -1 ) return 0;
|
|||
|
pindex = CHAR_getCharPet( charaindex, pno );
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( pindex ) &&
|
|||
|
|
|||
|
!CHAR_getFlg( pindex, CHAR_ISDIE ) &&
|
|||
|
CHAR_getInt( pindex, CHAR_HP ) > 0 )
|
|||
|
{
|
|||
|
if( BATTLE_NewEntry( pindex, battleindex, side ) ){
|
|||
|
}else{
|
|||
|
ret = 0;
|
|||
|
}
|
|||
|
}
|
|||
|
else {
|
|||
|
#ifdef _PLAYER_NPC
|
|||
|
if(CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYERNPC)
|
|||
|
#endif
|
|||
|
// if(CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYERNPC)
|
|||
|
CHAR_setInt( charaindex, CHAR_DEFAULTPET, -1 );
|
|||
|
}
|
|||
|
|
|||
|
return ret;
|
|||
|
#else
|
|||
|
|
|||
|
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
|
|||
|
pindex = CHAR_getCharPet( charaindex, i );
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( pindex ) == FALSE )continue;
|
|||
|
|
|||
|
if( CHAR_getFlg( pindex, CHAR_ISDIE ) == TRUE )continue;
|
|||
|
if( CHAR_getInt( pindex, CHAR_HP ) <= 0 )continue;
|
|||
|
|
|||
|
if( BATTLE_NewEntry( pindex, battleindex, side ) ){
|
|||
|
}else{
|
|||
|
CHAR_setInt( charaindex, CHAR_DEFAULTPET, i );
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if( i == CHAR_MAXPETHAVE ){
|
|||
|
CHAR_setInt( charaindex, CHAR_DEFAULTPET, -1 );
|
|||
|
}
|
|||
|
return 0;
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_RescueEntry( int charaindex, int toindex )
|
|||
|
{
|
|||
|
int iRet = 0, battleindex, fd, pindex;
|
|||
|
char szBuffer[256]="";
|
|||
|
|
|||
|
#ifdef _BATTLE_TIMESPEED
|
|||
|
fd = getfdFromCharaIndex( charaindex);
|
|||
|
if( CONNECT_getBDTime( fd) > time( NULL) ) {
|
|||
|
return 1;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
battleindex = CHAR_getWorkInt( toindex, CHAR_WORKBATTLEINDEX );
|
|||
|
if( !BATTLE_CHECKINDEX( battleindex) ) return 1;
|
|||
|
if( ( fd = getfdFromCharaIndex(charaindex) ) < 0 ) return 1;
|
|||
|
|
|||
|
//<2F><><EFBFBD><EFBFBD>BUG
|
|||
|
int pi;
|
|||
|
for( pi = 0; pi < CHAR_PARTYMAX; pi ++ ) {
|
|||
|
int index = CHAR_getWorkInt( toindex, pi + CHAR_WORKPARTYINDEX1);
|
|||
|
if( CHAR_CHECKINDEX(index)) {
|
|||
|
if(index == charaindex) return 1;
|
|||
|
}
|
|||
|
}
|
|||
|
#ifdef _PET_BUG
|
|||
|
int petarray = CHAR_getInt( charaindex, CHAR_DEFAULTPET);
|
|||
|
if(petarray>-1){
|
|||
|
int petindex = CHAR_getCharPet( charaindex, petarray);
|
|||
|
if(CHAR_getInt(petindex,CHAR_VITAL)>=getPetPoint(0)*20 || CHAR_getInt(petindex,CHAR_STR)>=getPetPoint(1)*80 || CHAR_getInt(petindex,CHAR_TOUGH)>=getPetPoint(2)*80 || CHAR_getInt(petindex,CHAR_DEX)>=getPetPoint(3)*100)
|
|||
|
return 1;
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _WARNPC_CTRL
|
|||
|
int mapi;
|
|||
|
for(mapi=0;mapi<10;mapi++){
|
|||
|
int floorid = getPartyMap(mapi);
|
|||
|
if(floorid==-1) break;
|
|||
|
if(CHAR_getInt(charaindex,CHAR_FLOOR)==floorid){
|
|||
|
int sameipnum = getMapSameIp(mapi);
|
|||
|
int partyi;
|
|||
|
unsigned ip=CONNECT_get_userip(getfdFromCharaIndex(charaindex));
|
|||
|
unsigned teseip = ip;
|
|||
|
unsigned toip;
|
|||
|
int a, b, c, d,ipcnt=1;
|
|||
|
char ipstr[32];
|
|||
|
a=(teseip % 0x100); teseip=teseip / 0x100;
|
|||
|
b=(teseip % 0x100); teseip=teseip / 0x100;
|
|||
|
c=(teseip % 0x100); teseip=teseip / 0x100;
|
|||
|
d=(teseip % 0x100);
|
|||
|
sprintf(ipstr,"%d.%d.%d.%d",a,b,c,d);
|
|||
|
if(strcmp(ipstr,getNoAttIp(0))==0 || strcmp(ipstr,getNoAttIp(1))==0 || strcmp(ipstr,getNoAttIp(2))==0 || strcmp(ipstr,getNoAttIp(3))==0 || strcmp(ipstr,getNoAttIp(4))==0)
|
|||
|
break;
|
|||
|
if( CHAR_getWorkInt( toindex, CHAR_WORKPARTYMODE) == CHAR_PARTY_NONE ) {
|
|||
|
toip=CONNECT_get_userip(getfdFromCharaIndex(toindex));
|
|||
|
if(ip==toip){
|
|||
|
ipcnt++;
|
|||
|
if(ipcnt>sameipnum){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>˵<EFBFBD>ͼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD>IP<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޡ<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
return 1;
|
|||
|
}
|
|||
|
else
|
|||
|
break;
|
|||
|
}
|
|||
|
break;
|
|||
|
}else{
|
|||
|
for( partyi = 0; partyi < CHAR_PARTYMAX; partyi ++ ) {
|
|||
|
int index = CHAR_getWorkInt( toindex, partyi + CHAR_WORKPARTYINDEX1);
|
|||
|
if( CHAR_CHECKINDEX(index)) {
|
|||
|
toip = CONNECT_get_userip(getfdFromCharaIndex(index));
|
|||
|
if(ip==toip){
|
|||
|
ipcnt++;
|
|||
|
if(ipcnt>sameipnum){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>˵<EFBFBD>ͼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD>IP<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޡ<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
return 1;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if(CHAR_getWorkInt(toindex,CHAR_WORKNPCBATTLESAMEIP)>0){
|
|||
|
int sameipnum = CHAR_getWorkInt(toindex,CHAR_WORKNPCBATTLESAMEIP);
|
|||
|
int partyi;
|
|||
|
unsigned ip=CONNECT_get_userip(getfdFromCharaIndex(charaindex));
|
|||
|
unsigned teseip = ip;
|
|||
|
unsigned toip;
|
|||
|
int a, b, c, d,ipcnt=1;
|
|||
|
char ipstr[32];
|
|||
|
a=(teseip % 0x100); teseip=teseip / 0x100;
|
|||
|
b=(teseip % 0x100); teseip=teseip / 0x100;
|
|||
|
c=(teseip % 0x100); teseip=teseip / 0x100;
|
|||
|
d=(teseip % 0x100);
|
|||
|
sprintf(ipstr,"%d.%d.%d.%d",a,b,c,d);
|
|||
|
if(strcmp(ipstr,getNoAttIp(0))==0 || strcmp(ipstr,getNoAttIp(1))==0 || strcmp(ipstr,getNoAttIp(2))==0 || strcmp(ipstr,getNoAttIp(3))==0 || strcmp(ipstr,getNoAttIp(4))==0){
|
|||
|
}else{
|
|||
|
if( CHAR_getWorkInt( toindex, CHAR_WORKPARTYMODE) == CHAR_PARTY_NONE ) {
|
|||
|
toip=CONNECT_get_userip(getfdFromCharaIndex(toindex));
|
|||
|
if(ip==toip){
|
|||
|
ipcnt++;
|
|||
|
if(ipcnt>sameipnum){
|
|||
|
CHAR_talkToCli( charaindex, -1, "ͬIP<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
return 1;
|
|||
|
}
|
|||
|
}
|
|||
|
}else{
|
|||
|
for( partyi = 0; partyi < CHAR_PARTYMAX; partyi ++ ) {
|
|||
|
int index = CHAR_getWorkInt( toindex, partyi + CHAR_WORKPARTYINDEX1);
|
|||
|
if( CHAR_CHECKINDEX(index)) {
|
|||
|
toip = CONNECT_get_userip(getfdFromCharaIndex(index));
|
|||
|
if(ip==toip){
|
|||
|
ipcnt++;
|
|||
|
if(ipcnt>sameipnum){
|
|||
|
CHAR_talkToCli( charaindex, -1, "ͬIP<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ޣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
return 1;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
if( CHAR_getWorkInt( toindex, CHAR_WORKBATTLEMODE ) == BATTLE_CHARMODE_FINAL
|
|||
|
|| CHAR_getWorkInt( toindex, CHAR_WORKBATTLEINDEX ) == -1 ){
|
|||
|
iRet = 1;
|
|||
|
}
|
|||
|
|
|||
|
if( BattleArray[battleindex].type == BATTLE_TYPE_P_vs_P ){
|
|||
|
iRet = 1;
|
|||
|
}else{
|
|||
|
iRet = BATTLE_NewEntry(
|
|||
|
charaindex,
|
|||
|
battleindex,
|
|||
|
CHAR_getWorkInt( toindex, CHAR_WORKBATTLESIDE ) );
|
|||
|
}
|
|||
|
|
|||
|
if( iRet == 0 ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_RESCUE );
|
|||
|
iRet = BATTLE_PetDefaultEntry(
|
|||
|
charaindex,
|
|||
|
battleindex,
|
|||
|
CHAR_getWorkInt( toindex, CHAR_WORKBATTLESIDE )
|
|||
|
);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
if( iRet == 0 ){
|
|||
|
int flg;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_DEFAULTPET ) >= 0 ){
|
|||
|
pindex = CHAR_getCharPet( charaindex, CHAR_getInt( charaindex, CHAR_DEFAULTPET ) );
|
|||
|
CHAR_setWorkInt( pindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_RESCUE );
|
|||
|
}
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ), "(%s)<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>",
|
|||
|
// CHAR_getUseName( charaindex ) );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
if( ( fd = getfdFromCharaIndex(charaindex) ) != -1 ){
|
|||
|
lssproto_EN_send( fd, BattleArray[battleindex].type, BattleArray[battleindex].field_no );
|
|||
|
}
|
|||
|
flg = (BattleArray[battleindex].Side[
|
|||
|
CHAR_getWorkInt( toindex, CHAR_WORKBATTLESIDE)].flg
|
|||
|
& BSIDE_FLG_HELP_OK)? TRUE:FALSE;
|
|||
|
lssproto_HL_send( fd, flg);
|
|||
|
sprintf( szBuffer, "BP|%X|%X|%X",
|
|||
|
BATTLE_Index2No( battleindex, charaindex ), BP_FLG_JOIN, CHAR_getInt(charaindex, CHAR_MP ) );
|
|||
|
BATTLE_CommandSend( charaindex, szBuffer );
|
|||
|
}else{
|
|||
|
snprintf( szBuffer, sizeof( szBuffer ), "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><EFBFBD>" );
|
|||
|
CHAR_talkToCli( charaindex, -1, szBuffer, CHAR_COLORYELLOW);
|
|||
|
if( ( fd = getfdFromCharaIndex(charaindex) ) != -1 ){
|
|||
|
lssproto_EN_send( fd, FALSE, BattleArray[battleindex].field_no );
|
|||
|
}
|
|||
|
}
|
|||
|
BATTLE_ClearGetExp( charaindex );
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
|
|||
|
BOOL BATTLE_RescueTry( int charaindex)
|
|||
|
{
|
|||
|
int x,y;
|
|||
|
OBJECT object;
|
|||
|
int pfound = FALSE;
|
|||
|
int result = FALSE;
|
|||
|
int fd;
|
|||
|
int i;
|
|||
|
int cnt;
|
|||
|
|
|||
|
fd = getfdFromCharaIndex( charaindex);
|
|||
|
if( fd == -1 ) return FALSE;
|
|||
|
#if 1 // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ò<EFBFBD>ս<EFBFBD>ظ<EFBFBD><D8B8><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><D5BD> Robin
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE) != BATTLE_CHARMODE_NONE) {
|
|||
|
CHAR_talkToCli( charaindex, -1, " <20>ظ<EFBFBD><D8B8><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>! ", CHAR_COLORRED);
|
|||
|
//print("\n <20>ķ<EFBFBD><C4B7><EFBFBD>!!<21>ظ<EFBFBD><D8B8><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>!:%s ", CHAR_getChar( charaindex, CHAR_CDKEY) );
|
|||
|
//lssproto_EN_send( fd, FALSE, 0 );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKPARTYMODE) != CHAR_PARTY_NONE ) {
|
|||
|
lssproto_EN_send( fd, FALSE, 0 );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
#ifdef _BATTLE_TIMESPEED
|
|||
|
if( CONNECT_getBDTime( fd) > time( NULL) ) {
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _PET_BUG
|
|||
|
int petarray = CHAR_getInt( charaindex, CHAR_DEFAULTPET);
|
|||
|
if(petarray>-1){
|
|||
|
int petindex = CHAR_getCharPet( charaindex, petarray);
|
|||
|
if(CHAR_getInt(petindex,CHAR_VITAL)>=getPetPoint(0)*20 || CHAR_getInt(petindex,CHAR_STR)>=getPetPoint(1)*80 || CHAR_getInt(petindex,CHAR_TOUGH)>=getPetPoint(2)*80 || CHAR_getInt(petindex,CHAR_DEX)>=getPetPoint(3)*100)
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
for( i = 0; i < CONNECT_WINDOWBUFSIZE; i ++ ) {
|
|||
|
CONNECT_setBattlecharaindex(fd,i,-1);
|
|||
|
}
|
|||
|
CHAR_getCoordinationDir( CHAR_getInt( charaindex, CHAR_DIR ) ,
|
|||
|
CHAR_getInt( charaindex , CHAR_X ),
|
|||
|
CHAR_getInt( charaindex , CHAR_Y ) ,
|
|||
|
1 , &x , &y );
|
|||
|
|
|||
|
cnt = 0;
|
|||
|
for( object = MAP_getTopObj( CHAR_getInt( charaindex, CHAR_FLOOR),x,y) ;
|
|||
|
object ;
|
|||
|
object = NEXT_OBJECT(object ) )
|
|||
|
{
|
|||
|
int toindex;
|
|||
|
int objindex = GET_OBJINDEX(object);
|
|||
|
if( OBJECT_getType( objindex) != OBJTYPE_CHARA) continue;
|
|||
|
toindex = OBJECT_getIndex( objindex);
|
|||
|
if( CHAR_getInt( toindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYER
|
|||
|
#ifdef _PLAYER_NPC
|
|||
|
&& CHAR_getInt( toindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYERNPC
|
|||
|
#endif
|
|||
|
// && CHAR_getInt( toindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYERNPC
|
|||
|
) continue;
|
|||
|
pfound = TRUE;
|
|||
|
if( CHAR_getWorkInt( toindex, CHAR_WORKBATTLEMODE) == BATTLE_CHARMODE_NONE ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
if( BattleArray[ CHAR_getWorkInt( toindex, CHAR_WORKBATTLEINDEX)].type
|
|||
|
!= BATTLE_TYPE_P_vs_E ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
if( !(BattleArray[CHAR_getWorkInt( toindex,CHAR_WORKBATTLEINDEX)].Side[
|
|||
|
CHAR_getWorkInt( toindex, CHAR_WORKBATTLESIDE)].flg
|
|||
|
& BSIDE_FLG_HELP_OK)){
|
|||
|
continue;
|
|||
|
}
|
|||
|
CONNECT_setBattlecharaindex( fd, cnt, toindex );
|
|||
|
cnt++;
|
|||
|
if( cnt == CONNECT_WINDOWBUFSIZE ) break;
|
|||
|
}
|
|||
|
if( cnt == 0 ) {
|
|||
|
if( pfound == FALSE ) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><EFBFBD><EFBFBD>κ<EFBFBD><EFBFBD>ˡ<EFBFBD>",
|
|||
|
CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
lssproto_EN_send( fd, FALSE, 0 );
|
|||
|
}else if( cnt == 1 ) {
|
|||
|
if( BATTLE_RescueEntry( charaindex,
|
|||
|
CONNECT_getBattlecharaindex(fd,0) ) ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}else {
|
|||
|
result = TRUE;
|
|||
|
}
|
|||
|
}else if( cnt > 1 ) {
|
|||
|
int strlength;
|
|||
|
char msgbuf[1024];
|
|||
|
char escapebuf[2048];
|
|||
|
strcpysafe( msgbuf,sizeof(msgbuf), "1\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˭<EFBFBD><EFBFBD>ս<EFBFBD><EFBFBD><EFBFBD>أ<EFBFBD>\n");
|
|||
|
strlength = strlen( msgbuf);
|
|||
|
for( i = 0;
|
|||
|
CONNECT_getBattlecharaindex( fd,i ) != -1
|
|||
|
&& i< CONNECT_WINDOWBUFSIZE; i ++ ){
|
|||
|
char *a = CHAR_getChar( CONNECT_getBattlecharaindex(fd,i), CHAR_NAME);
|
|||
|
char buf[256];
|
|||
|
snprintf( buf, sizeof( buf),"%s\n", a);
|
|||
|
if( strlength + strlen( buf) > arraysizeof( msgbuf)){
|
|||
|
//print( "\nerr:%s:%d <20>Ӵ<EFBFBD><D3B4><EFBFBD>ѶϢ<D1B6><CFA2><EFBFBD>岻<EFBFBD><E5B2BB>\n",
|
|||
|
//__FILE__,__LINE__);
|
|||
|
break;
|
|||
|
}
|
|||
|
strcpy( &msgbuf[strlength], buf);
|
|||
|
strlength += strlen(buf);
|
|||
|
}
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_SELECT,
|
|||
|
WINDOW_BUTTONTYPE_CANCEL,
|
|||
|
CHAR_WINDOWTYPE_SELECTBATTLE,
|
|||
|
-1,
|
|||
|
makeEscapeString( msgbuf, escapebuf, sizeof(escapebuf)));
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
return result;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
BOOL BATTLE_RescueParentTry( int charaindex, int pindex)
|
|||
|
{
|
|||
|
int result = FALSE;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE)) return FALSE;
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKPARTYINDEX1) != pindex ) return FALSE;
|
|||
|
if( CHAR_getWorkInt( pindex, CHAR_WORKBATTLEMODE) == BATTLE_CHARMODE_NONE ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
if( BATTLE_RescueEntry( charaindex, pindex ) ){
|
|||
|
result = FALSE;
|
|||
|
}else{
|
|||
|
result = TRUE;
|
|||
|
}
|
|||
|
if( result == FALSE ) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
return result;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_PartyNewEntry(
|
|||
|
int charaindex,
|
|||
|
int battleindex,
|
|||
|
int side
|
|||
|
)
|
|||
|
{
|
|||
|
int iRet = 0, i, work;
|
|||
|
#if 1
|
|||
|
|
|||
|
iRet = BATTLE_NewEntry( charaindex, battleindex, side );
|
|||
|
if( iRet )return iRet;
|
|||
|
CAflush( charaindex );
|
|||
|
CDflush( charaindex );
|
|||
|
iRet = BATTLE_PetDefaultEntry( charaindex, battleindex, side );
|
|||
|
if( iRet )return iRet;
|
|||
|
BATTLE_ClearGetExp( charaindex );
|
|||
|
#endif
|
|||
|
|
|||
|
for( i = 1; i < CHAR_PARTYMAX; i ++ ){
|
|||
|
work = CHAR_getWorkInt( charaindex, i + CHAR_WORKPARTYINDEX1 );
|
|||
|
if( CHAR_CHECKINDEX( work ) == FALSE )continue;
|
|||
|
if( CHAR_getWorkInt( work, CHAR_WORKBATTLEMODE ) != 0 ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
iRet = BATTLE_NewEntry( work, battleindex, side );
|
|||
|
if( iRet )break;
|
|||
|
CAflush( work );
|
|||
|
CDflush( work );
|
|||
|
iRet = BATTLE_PetDefaultEntry( work, battleindex, side );
|
|||
|
if( iRet )return iRet;
|
|||
|
BATTLE_ClearGetExp( work );
|
|||
|
}
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#if 1
|
|||
|
|
|||
|
int BATTLE_WatchNewEntry(
|
|||
|
int charaindex,
|
|||
|
int battleindex,
|
|||
|
int side
|
|||
|
)
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
BATTLE *pBattle;
|
|||
|
int iEntryFirst = 0, iEntryMax = BATTLE_ENTRY_MAX, i;
|
|||
|
|
|||
|
if( BATTLE_CHECKSIDE( side ) == FALSE )return BATTLE_ERR_PARAM;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return BATTLE_ERR_CHARAINDEX;
|
|||
|
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
|
|||
|
if( pBattle->use == FALSE )return BATTLE_ERR_NOUSE;
|
|||
|
|
|||
|
if( side < 0 || side > 1 ){
|
|||
|
return BATTLE_ERR_PARAM;
|
|||
|
}
|
|||
|
|
|||
|
switch( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) ){
|
|||
|
|
|||
|
|
|||
|
case CHAR_TYPEPLAYER:
|
|||
|
if( pBattle->Side[side].type != BATTLE_S_TYPE_PLAYER ){
|
|||
|
return BATTLE_ERR_TYPE;
|
|||
|
}
|
|||
|
iEntryFirst = 0;
|
|||
|
iEntryMax = BATTLE_PLAYER_MAX;
|
|||
|
break;
|
|||
|
default:
|
|||
|
//print( "<22><><EFBFBD><EFBFBD>(%s)(%d)\n",
|
|||
|
//CHAR_getUseName( charaindex ),
|
|||
|
//CHAR_getInt( charaindex, CHAR_WHICHTYPE ) );
|
|||
|
return BATTLE_ERR_TYPE;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
pEntry = pBattle->Side[side].Entry;
|
|||
|
|
|||
|
for( i = iEntryFirst; i < iEntryMax; i ++ ){
|
|||
|
if( pEntry[i].charaindex == -1 )break;
|
|||
|
}
|
|||
|
|
|||
|
if( i == iEntryMax ){
|
|||
|
return BATTLE_ERR_ENTRYMAX;
|
|||
|
}
|
|||
|
|
|||
|
EntryInit( &pEntry[i] );
|
|||
|
|
|||
|
pEntry[i].charaindex = charaindex;
|
|||
|
|
|||
|
pEntry[i].bid = i + side * SIDE_OFFSET;
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEINDEX,
|
|||
|
battleindex );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE,
|
|||
|
BATTLE_CHARMODE_WATCHINIT );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLESIDE, side );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEFLG, 0 );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, -1 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, -1 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM3, -1 );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEWATCH, 1 );
|
|||
|
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
int BATTLE_WatchPartyNewEntry(
|
|||
|
int charaindex,
|
|||
|
int battleindex,
|
|||
|
int side
|
|||
|
)
|
|||
|
{
|
|||
|
int iRet = 0, i, work;
|
|||
|
#if 1
|
|||
|
|
|||
|
iRet = BATTLE_WatchNewEntry( charaindex, battleindex, side );
|
|||
|
if( iRet )return iRet;
|
|||
|
|
|||
|
CAflush( charaindex );
|
|||
|
|
|||
|
CDflush( charaindex );
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
for( i = 1; i < CHAR_PARTYMAX; i ++ ){
|
|||
|
|
|||
|
work = CHAR_getWorkInt( charaindex, i + CHAR_WORKPARTYINDEX1 );
|
|||
|
if( CHAR_CHECKINDEX( work ) == FALSE )continue;
|
|||
|
|
|||
|
if( CHAR_getWorkInt( work, CHAR_WORKBATTLEMODE ) != 0 ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
iRet = BATTLE_WatchNewEntry( work, battleindex, side );
|
|||
|
|
|||
|
if( iRet )break;
|
|||
|
|
|||
|
CAflush( work );
|
|||
|
CDflush( work );
|
|||
|
}
|
|||
|
return iRet;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
int BATTLE_CreateForWatcher( int charaindex, int topbattleindex );
|
|||
|
|
|||
|
int BATTLE_WatchEntry(
|
|||
|
int charaindex,
|
|||
|
int toindex
|
|||
|
)
|
|||
|
{
|
|||
|
int iRet = 0, battleindex, fd;
|
|||
|
char szBuffer[256]="";
|
|||
|
|
|||
|
battleindex = CHAR_getWorkInt( toindex, CHAR_WORKBATTLEINDEX );
|
|||
|
|
|||
|
if( CHAR_getWorkInt( toindex, CHAR_WORKBATTLEMODE ) == BATTLE_CHARMODE_FINAL
|
|||
|
|| CHAR_getWorkInt( toindex, CHAR_WORKBATTLEMODE ) == BATTLE_CHARMODE_NONE
|
|||
|
|| CHAR_getWorkInt( toindex, CHAR_WORKBATTLEINDEX ) == -1
|
|||
|
){
|
|||
|
iRet = 1;
|
|||
|
}
|
|||
|
|
|||
|
if( iRet == 0 ){
|
|||
|
iRet = BATTLE_CreateForWatcher( charaindex, battleindex );
|
|||
|
}
|
|||
|
if( iRet == 0 ){
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ), "(%s)<29><>ʼ<EFBFBD><CABC>ս<EFBFBD><D5BD>",
|
|||
|
// CHAR_getUseName( charaindex ) );
|
|||
|
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
if( ( fd = getfdFromCharaIndex(charaindex) ) != -1 ){
|
|||
|
lssproto_EN_send( fd, BattleArray[battleindex].type, BattleArray[battleindex].field_no );
|
|||
|
}
|
|||
|
|
|||
|
sprintf( szBuffer, "BP|%X|%X|%X",
|
|||
|
20, BP_FLG_JOIN, CHAR_getInt(charaindex, CHAR_MP ) );
|
|||
|
BATTLE_CommandSend( charaindex, szBuffer );
|
|||
|
|
|||
|
}else{
|
|||
|
snprintf( szBuffer, sizeof( szBuffer ), "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><EFBFBD>" );
|
|||
|
CHAR_talkToCli( charaindex, -1, szBuffer, CHAR_COLORYELLOW);
|
|||
|
|
|||
|
if( ( fd = getfdFromCharaIndex(charaindex) ) != -1 ){
|
|||
|
lssproto_EN_send( fd, FALSE, 0 );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
BOOL BATTLE_WatchTry( int charaindex )
|
|||
|
{
|
|||
|
int x,y;
|
|||
|
OBJECT object;
|
|||
|
int pfound = FALSE;
|
|||
|
int result = FALSE;
|
|||
|
int fd;
|
|||
|
int i;
|
|||
|
int cnt;
|
|||
|
|
|||
|
|
|||
|
fd = getfdFromCharaIndex( charaindex);
|
|||
|
if( fd == -1 )return FALSE;
|
|||
|
|
|||
|
for( i = 0; i < CONNECT_WINDOWBUFSIZE ; i ++ ) {
|
|||
|
CONNECT_setBattlecharaindex( fd,i,-1);
|
|||
|
}
|
|||
|
CHAR_getCoordinationDir( CHAR_getInt( charaindex, CHAR_DIR ) ,
|
|||
|
CHAR_getInt( charaindex , CHAR_X ),
|
|||
|
CHAR_getInt( charaindex , CHAR_Y ) ,
|
|||
|
1 , &x , &y );
|
|||
|
|
|||
|
cnt = 0;
|
|||
|
/*<2A><><EFBFBD>м<EFBFBD> <20><>ƽ<F3A1BCB0>ҷ<EFBFBD>ë<EFBFBD><C3AB> <20><><EFBFBD><EFBFBD> */
|
|||
|
for( object = MAP_getTopObj( CHAR_getInt( charaindex, CHAR_FLOOR),x,y) ;
|
|||
|
object ;
|
|||
|
object = NEXT_OBJECT(object ) )
|
|||
|
{
|
|||
|
int toindex;
|
|||
|
int objindex = GET_OBJINDEX(object);
|
|||
|
/* ƽ<>ҷ<EFBFBD><D2B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԫ<EFBFBD><D4AA>ئ<EFBFBD><D8A6> */
|
|||
|
if( OBJECT_getType( objindex) != OBJTYPE_CHARA) continue;
|
|||
|
toindex = OBJECT_getIndex( objindex);
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԫ<EFBFBD><D4AA>ئ<EFBFBD><D8A6> */
|
|||
|
if( CHAR_getInt( toindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYER
|
|||
|
#ifdef _PLAYER_NPC
|
|||
|
&& CHAR_getInt( toindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYERNPC
|
|||
|
#endif
|
|||
|
// && CHAR_getInt( toindex, CHAR_WHICHTYPE) != CHAR_TYPEPLAYERNPC
|
|||
|
) continue;
|
|||
|
pfound = TRUE;
|
|||
|
/* <20><> ƥئ<C6A5><D8A6>ئ<EFBFBD><D8A6><EFBFBD>ݳ<EFBFBD> */
|
|||
|
if( CHAR_getWorkInt( toindex, CHAR_WORKBATTLEMODE) == BATTLE_CHARMODE_NONE ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
CONNECT_setBattlecharaindex( fd,cnt, toindex );
|
|||
|
cnt++;
|
|||
|
if( cnt == CONNECT_WINDOWBUFSIZE ) break;
|
|||
|
}
|
|||
|
if( cnt == 0 ) {
|
|||
|
if( pfound == FALSE ) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><EFBFBD><EFBFBD>κ<EFBFBD><EFBFBD>ˡ<EFBFBD>",
|
|||
|
CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
// <20><>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD>ئ<EFBFBD>ʻ<EFBFBD><CABB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
lssproto_EN_send( fd, FALSE, 0 );
|
|||
|
}
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD>ƾ<EFBFBD><C6BE><EFBFBD>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
else if( cnt == 1 ) {
|
|||
|
if( BATTLE_WatchEntry( charaindex,CONNECT_getBattlecharaindex(fd,0)) )
|
|||
|
{
|
|||
|
result = FALSE;
|
|||
|
} else {
|
|||
|
result = TRUE;
|
|||
|
}
|
|||
|
}
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ū<EFBFBD><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD>ƻ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
else if( cnt > 1 ) {
|
|||
|
int strlength;
|
|||
|
char msgbuf[1024];
|
|||
|
char escapebuf[2048];
|
|||
|
strcpysafe( msgbuf,sizeof(msgbuf), "1\n<EFBFBD>ۿ<EFBFBD>˭<EFBFBD><EFBFBD>ս<EFBFBD><EFBFBD><EFBFBD>أ<EFBFBD>\n");
|
|||
|
strlength = strlen( msgbuf);
|
|||
|
/* <20><>ū<EFBFBD><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
* <EFBFBD><EFBFBD> <EFBFBD><EFBFBD>ƽ<EFBFBD>ҷ¼<EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*/
|
|||
|
for( i = 0;
|
|||
|
CONNECT_getBattlecharaindex( fd,i ) != -1
|
|||
|
&& i< CONNECT_WINDOWBUFSIZE;
|
|||
|
i ++ )
|
|||
|
{
|
|||
|
char *a = CHAR_getChar( CONNECT_getBattlecharaindex(fd,i),
|
|||
|
CHAR_NAME);
|
|||
|
char buf[256];
|
|||
|
snprintf( buf, sizeof( buf),"%s\n", a);
|
|||
|
if( strlength + strlen( buf) > arraysizeof( msgbuf)){
|
|||
|
//print( "\nerr:%s:%d <20>Ӵ<EFBFBD><D3B4><EFBFBD>ѶϢ<D1B6><CFA2><EFBFBD>岻<EFBFBD><E5B2BB>\n",
|
|||
|
//__FILE__,__LINE__);
|
|||
|
break;
|
|||
|
}
|
|||
|
strcpy( &msgbuf[strlength], buf);
|
|||
|
strlength += strlen(buf);
|
|||
|
}
|
|||
|
lssproto_WN_send( fd, WINDOW_MESSAGETYPE_SELECT,
|
|||
|
WINDOW_BUTTONTYPE_CANCEL,
|
|||
|
CHAR_WINDOWTYPE_SELECTBATTLEWATCH,
|
|||
|
-1,
|
|||
|
makeEscapeString( msgbuf, escapebuf, sizeof(escapebuf)));
|
|||
|
}
|
|||
|
|
|||
|
return result;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#define MAX_DOUJYOUENEMY 64
|
|||
|
static int DoujyouEnemyTbl[10]; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
/***************************************************************
|
|||
|
* <EFBFBD><EFBFBD>ƹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ñ<EFBFBD><EFBFBD><EFBFBD>ƽ<EFBFBD>ҷ<EFBFBD><EFBFBD><EFBFBD>
|
|||
|
***************************************************************/
|
|||
|
int *Doujyou_GetEnemy( int meindex, int charaindex )
|
|||
|
{
|
|||
|
int i;
|
|||
|
char argstr[NPC_UTIL_GETARGSTR_BUFSIZE];
|
|||
|
char buf[1024];
|
|||
|
int ret;
|
|||
|
int insert;
|
|||
|
int WorkEnemyTbl[MAX_DOUJYOUENEMY];
|
|||
|
|
|||
|
NPC_Util_GetArgStr( meindex, argstr, sizeof( argstr));
|
|||
|
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
for( i = 0; i < arraysizeof(WorkEnemyTbl); i ++ ) {
|
|||
|
WorkEnemyTbl[i] = -1;
|
|||
|
}
|
|||
|
|
|||
|
if( NPC_Util_GetStrFromStrWithDelim( argstr, "enemyno", buf, sizeof( buf))
|
|||
|
== NULL )
|
|||
|
{
|
|||
|
return NULL;
|
|||
|
}
|
|||
|
|
|||
|
insert = 0;
|
|||
|
/* ¦<>ѱ<EFBFBD>̤<EFBFBD>л<EFBFBD>ؤ<EFBFBD>³<EFBFBD>ë<EFBFBD><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
for( i = 0; i < MAX_DOUJYOUENEMY; i ++ ) {
|
|||
|
int curEnemy;
|
|||
|
char data[128];
|
|||
|
|
|||
|
ret = getStringFromIndexWithDelim( buf,",", i + 1,data, sizeof(data));
|
|||
|
if( ret == FALSE) {
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
curEnemy = ENEMY_getEnemyArrayFromId( atoi( data));
|
|||
|
if( !ENEMY_CHECKINDEX( curEnemy) ) continue;
|
|||
|
WorkEnemyTbl[insert] = curEnemy;
|
|||
|
insert ++;
|
|||
|
}
|
|||
|
// <20><>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ¡<DEB7>
|
|||
|
if( insert <= 0 )return NULL;
|
|||
|
|
|||
|
// <20><> <20>¼<EFBFBD>ĸةɬ<D8A9><C9AC>
|
|||
|
DoujyouEnemyTbl[0] = WorkEnemyTbl[RAND( 0, insert-1 )];
|
|||
|
|
|||
|
|
|||
|
if( NPC_Util_GetStrFromStrWithDelim( argstr, "enemypetno", buf, sizeof( buf))
|
|||
|
== NULL )
|
|||
|
{
|
|||
|
// <20><>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̤<EFBFBD><CCA4>ئ<EFBFBD><D8A6>
|
|||
|
DoujyouEnemyTbl[1] = -1;
|
|||
|
}else{
|
|||
|
insert = 0;
|
|||
|
/* ¦<>ѱ<EFBFBD>̤<EFBFBD>л<EFBFBD>ؤ<EFBFBD>³<EFBFBD>ë<EFBFBD><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
for( i = 0; i < MAX_DOUJYOUENEMY; i ++ ) {
|
|||
|
int curEnemy;
|
|||
|
char data[128];
|
|||
|
|
|||
|
ret = getStringFromIndexWithDelim( buf,",", i + 1,data, sizeof(data));
|
|||
|
if( ret == FALSE) {
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
curEnemy = ENEMY_getEnemyArrayFromId( atoi( data));
|
|||
|
if( !ENEMY_CHECKINDEX( curEnemy) ) continue;
|
|||
|
WorkEnemyTbl[insert] = curEnemy;
|
|||
|
insert ++;
|
|||
|
}
|
|||
|
// <20><> <20>¼<EFBFBD>ĸةɬ<D8A9><C9AC>
|
|||
|
DoujyouEnemyTbl[1] = WorkEnemyTbl[RAND( 0, insert-1 )];
|
|||
|
}
|
|||
|
|
|||
|
// <20><> <20><>
|
|||
|
DoujyouEnemyTbl[2] = -1;
|
|||
|
|
|||
|
return DoujyouEnemyTbl;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
static int DoujyouWeponTbl[] = {
|
|||
|
-1,
|
|||
|
ITEM_FIST,
|
|||
|
ITEM_AXE,
|
|||
|
ITEM_CLUB,
|
|||
|
ITEM_SPEAR,
|
|||
|
ITEM_BOW,
|
|||
|
ITEM_BOOMERANG,
|
|||
|
ITEM_BOUNDTHROW,
|
|||
|
ITEM_BREAKTHROW,
|
|||
|
};
|
|||
|
int DoujyouRandomWeponSet( int charaindex ){
|
|||
|
int wepon = -1, itemindex;
|
|||
|
int work = RAND( 0, arraysizeof( DoujyouWeponTbl ) - 1 );
|
|||
|
switch( DoujyouWeponTbl[work] ){
|
|||
|
case ITEM_AXE: wepon = 0;break;
|
|||
|
case ITEM_CLUB: wepon = 100;break;
|
|||
|
case ITEM_SPEAR: wepon = 200;break;
|
|||
|
case ITEM_BOW: wepon = 2498;break;
|
|||
|
case ITEM_BOOMERANG:wepon = 500;break;
|
|||
|
case ITEM_BOUNDTHROW:wepon = 600;break;
|
|||
|
case ITEM_BREAKTHROW:wepon = 700;break;
|
|||
|
}
|
|||
|
itemindex = CHAR_getItemIndex( charaindex, CHAR_ARM );
|
|||
|
if( ITEM_CHECKINDEX( itemindex ) == TRUE ){
|
|||
|
ITEM_endExistItemsOne( itemindex );
|
|||
|
}
|
|||
|
|
|||
|
if( wepon >= 0 ){
|
|||
|
itemindex = ITEM_makeItemAndRegist( wepon ) ;
|
|||
|
CHAR_setItemIndex( charaindex, CHAR_ARM, itemindex );
|
|||
|
ITEM_setWorkInt( itemindex, ITEM_WORKCHARAINDEX, charaindex );
|
|||
|
ITEM_setWorkInt( itemindex, ITEM_WORKOBJINDEX, -1 );
|
|||
|
}
|
|||
|
switch( DoujyouWeponTbl[work] ){
|
|||
|
case -1:
|
|||
|
case ITEM_AXE:
|
|||
|
case ITEM_CLUB:
|
|||
|
case ITEM_SPEAR:
|
|||
|
return 0;
|
|||
|
}
|
|||
|
return 1;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
static int BattleERSkill1[]={
|
|||
|
3, 10, 11, 12, 30, 31, 40, 41, 50, 51, 52, 60, 61, 80, 90, 110, 120, 150, 210,
|
|||
|
303, 309, 315, 321, 503, 504, 506, 507, 541, 542, 543, 544, 545, 546, 547, 575, 579, 580,
|
|||
|
606, 613, 615 };
|
|||
|
|
|||
|
static int BattleERSkill2[]={
|
|||
|
12, 13, 20, 41, 52, 152, 210, 306, 312, 318, 324, 325, 500, 501, 502, 505,
|
|||
|
508, 541, 542, 543, 544, 545, 546, 547, 576, 580, 594, 606, 613, 616 };
|
|||
|
|
|||
|
void BATTLE_EnemyRandowSetSkill( int enemyindex, int skillType)
|
|||
|
{
|
|||
|
int i;
|
|||
|
switch( skillType){
|
|||
|
case 1:
|
|||
|
for( i=0; i<7; i++){
|
|||
|
int skillarray, skillID, Ri;
|
|||
|
Ri = RAND( 0, arraysizeof( BattleERSkill1) - 1 );
|
|||
|
skillID = BattleERSkill1[Ri];
|
|||
|
skillarray = PETSKILL_getPetskillArray( skillID);
|
|||
|
if( PETSKILL_CHECKINDEX( skillarray) == FALSE ){
|
|||
|
CHAR_setPetSkill( enemyindex, i, 1);
|
|||
|
//andy_log
|
|||
|
//print("ANDY EnemyRandowSetSkill( ) skillID:%d array:%d err \n",
|
|||
|
//skillID, skillarray );
|
|||
|
continue;
|
|||
|
}
|
|||
|
CHAR_setPetSkill( enemyindex, i, skillID);
|
|||
|
}
|
|||
|
break;
|
|||
|
case 2:
|
|||
|
for( i=0; i<7; i++){
|
|||
|
int skillarray, skillID, Ri;
|
|||
|
Ri = RAND( 0, arraysizeof( BattleERSkill2) - 1 );
|
|||
|
skillID = BattleERSkill2[Ri];
|
|||
|
skillarray = PETSKILL_getPetskillArray( skillID);
|
|||
|
if( PETSKILL_CHECKINDEX( skillarray) == FALSE ){
|
|||
|
CHAR_setPetSkill( enemyindex, i, 1);
|
|||
|
//andy_log
|
|||
|
//print("ANDY *EnemyRandowSetSkill( ) skillID:%d array:%d err \n",
|
|||
|
//skillID, skillarray );
|
|||
|
continue;
|
|||
|
}
|
|||
|
CHAR_setPetSkill( enemyindex, i, skillID);
|
|||
|
}
|
|||
|
break;
|
|||
|
default : return;
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_CreateVsEnemyNew( int charaindex, int npcindex, int *table )
|
|||
|
{
|
|||
|
int battleindex, iRet = 0, enemyindex, i, pindex;
|
|||
|
int fd, field_no, baselevel = 0;
|
|||
|
int skillType=0;
|
|||
|
int EnemyList[20];
|
|||
|
|
|||
|
int *enemytable = table;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return BATTLE_ERR_CHARAINDEX;
|
|||
|
#ifdef _PLAYER_NPC
|
|||
|
if(CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER)
|
|||
|
#endif
|
|||
|
// if(CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER)
|
|||
|
{
|
|||
|
#ifdef _STREET_VENDOR
|
|||
|
// <20><>̯<EFBFBD>в<EFBFBD><D0B2>ɽ<EFBFBD><C9BD><EFBFBD>ս<EFBFBD><D5BD>
|
|||
|
if( CHAR_getWorkInt(charaindex,CHAR_WORKSTREETVENDOR) > -1) return BATTLE_ERR_END;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _ANGEL_SUMMON // װ<><D7B0>ʹ<EFBFBD><CAB9><EFBFBD><EFBFBD><EFBFBD>ﲻ<EFBFBD><EFB2BB><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getWorkInt(charaindex,CHAR_WORKANGELMODE) == TRUE ) return BATTLE_ERR_END;
|
|||
|
#endif
|
|||
|
}
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE ) != BATTLE_CHARMODE_NONE ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
return BATTLE_ERR_ALREADYBATTLE;
|
|||
|
}
|
|||
|
battleindex = BATTLE_CreateBattle(charaindex);
|
|||
|
if( battleindex < 0 )return BATTLE_ERR_NOTASK;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( npcindex) ){
|
|||
|
skillType = CHAR_getWorkInt( npcindex, CHAR_NPCWORKINT11);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
field_no = BATTLE_getBattleFieldNo(
|
|||
|
CHAR_getInt( charaindex, CHAR_FLOOR ) ,
|
|||
|
CHAR_getInt( charaindex, CHAR_X ) ,
|
|||
|
CHAR_getInt( charaindex, CHAR_Y ) );
|
|||
|
if( field_no > BATTLE_MAP_MAX || field_no < 0 ){
|
|||
|
field_no = RAND( 0, BATTLE_MAP_MAX );
|
|||
|
}
|
|||
|
|
|||
|
BattleArray[battleindex].Side[0].type = BATTLE_S_TYPE_PLAYER;
|
|||
|
BattleArray[battleindex].Side[1].type = BATTLE_S_TYPE_ENEMY;
|
|||
|
BattleArray[battleindex].leaderindex = charaindex;
|
|||
|
BattleArray[battleindex].type = BATTLE_TYPE_P_vs_E;
|
|||
|
BattleArray[battleindex].createindex = npcindex;
|
|||
|
BattleArray[battleindex].field_no = field_no;
|
|||
|
BattleArray[battleindex].BattleFloor = CHAR_getInt( charaindex, CHAR_FLOOR );
|
|||
|
|
|||
|
BattleArray[battleindex].Side[0].flg &= ~BSIDE_FLG_HELP_OK;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( npcindex) ){
|
|||
|
if(CHAR_getInt( npcindex, CHAR_LV )>1){
|
|||
|
baselevel = CHAR_getInt( npcindex, CHAR_LV );
|
|||
|
}
|
|||
|
CHAR_setWorkInt( npcindex, CHAR_WORKBATTLEINDEX, battleindex );
|
|||
|
}else if( npcindex == -1 ){
|
|||
|
enemytable = ENEMY_getEnemy( charaindex,
|
|||
|
CHAR_getInt( charaindex, CHAR_X),
|
|||
|
CHAR_getInt( charaindex, CHAR_Y));
|
|||
|
}
|
|||
|
|
|||
|
BattleArray[battleindex].norisk = 0;
|
|||
|
if( enemytable == NULL ) {
|
|||
|
iRet = BATTLE_ERR_NOENEMY;
|
|||
|
goto BATTLE_CreateVsEnemy_End;
|
|||
|
}
|
|||
|
|
|||
|
for( i = 0; *(enemytable+i)!= -1 && i < arraysizeof( EnemyList )-1; i ++ ){
|
|||
|
EnemyList[i] = *(enemytable+i);
|
|||
|
}
|
|||
|
EnemyList[i] = -1;
|
|||
|
|
|||
|
#ifdef _BATTLE_TIMESPEED
|
|||
|
fd = getfdFromCharaIndex( charaindex );
|
|||
|
BattleArray[battleindex].CreateTime = time(NULL);
|
|||
|
BattleArray[battleindex].flgTime = 200; // 1/100 sec
|
|||
|
#endif
|
|||
|
for( i = 0; EnemyList[i] != -1; i ++ ){
|
|||
|
int work;
|
|||
|
enemyindex = ENEMY_createEnemy( EnemyList[i], baselevel );
|
|||
|
|
|||
|
if( !CHAR_CHECKINDEX( enemyindex ) ){
|
|||
|
iRet = BATTLE_ERR_NOENEMY;
|
|||
|
goto BATTLE_CreateVsEnemy_End;
|
|||
|
}
|
|||
|
CHAR_setInt(enemyindex, CHAR_WHICHTYPE, CHAR_TYPEENEMY);
|
|||
|
if( skillType > 0 ){
|
|||
|
//int ENEMY_RandomChange( int enemyindex, int tempno ){
|
|||
|
BATTLE_EnemyRandowSetSkill( enemyindex, skillType);
|
|||
|
}
|
|||
|
#ifdef _ALLBLUES_LUA_1_9
|
|||
|
SetBattleEnmeyFunction(npcindex, enemyindex, i);
|
|||
|
#endif
|
|||
|
|
|||
|
if( ( iRet = BATTLE_NewEntry( enemyindex, battleindex, 1 ) ) ){
|
|||
|
goto BATTLE_CreateVsEnemy_End;
|
|||
|
}
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_DUELPOINT ) > 0 ){
|
|||
|
BattleArray[battleindex].dpbattle = 1;
|
|||
|
}
|
|||
|
work = CHAR_getInt( enemyindex, CHAR_BASEBASEIMAGENUMBER );
|
|||
|
if( 100466 <= work && work <= 100471 ){
|
|||
|
CHAR_setWorkInt( enemyindex, CHAR_WORKBATTLEFLG,
|
|||
|
CHAR_getWorkInt( enemyindex, CHAR_WORKBATTLEFLG ) | CHAR_BATTLEFLG_ABIO );
|
|||
|
//print( "(%s)<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n", CHAR_getUseName( enemyindex ) );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if( (iRet = BATTLE_PartyNewEntry( charaindex, battleindex, 0 ) ) ){
|
|||
|
goto BATTLE_CreateVsEnemy_End;
|
|||
|
}
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pEntry, EntryWork;
|
|||
|
pEntry = BattleArray[battleindex].Side[1].Entry;
|
|||
|
for( i = 0; i < 5; i ++ ){
|
|||
|
EntryWork = pEntry[i];
|
|||
|
pEntry[i] = pEntry[i+5];
|
|||
|
pEntry[i+5] = EntryWork;
|
|||
|
pEntry[i].bid = i + SIDE_OFFSET;
|
|||
|
pEntry[i+5].bid = i + 5 + SIDE_OFFSET;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
BATTLE_CreateVsEnemy_End:;
|
|||
|
fd = getfdFromCharaIndex( charaindex);
|
|||
|
if( iRet ){
|
|||
|
BATTLE_ExitAll( battleindex );
|
|||
|
BATTLE_DeleteBattle( battleindex );
|
|||
|
if( fd != -1 )lssproto_EN_send( fd, FALSE, field_no );
|
|||
|
}else{
|
|||
|
// if(npcindex > -1){
|
|||
|
if( fd != -1 ){
|
|||
|
if( BattleArray[battleindex].dpbattle ){
|
|||
|
lssproto_EN_send( fd, BATTLE_TYPE_DP_BATTLE, field_no );
|
|||
|
}else{
|
|||
|
lssproto_EN_send( fd, BATTLE_TYPE_BOSS_BATTLE, field_no );
|
|||
|
}
|
|||
|
} else {
|
|||
|
#ifdef _OFFLINE_SYSTEM
|
|||
|
if(CHAR_getWorkInt( charaindex, CHAR_WORK_OFFLINE ) == 0)
|
|||
|
#endif
|
|||
|
{
|
|||
|
BATTLE_ExitAll( battleindex );
|
|||
|
BATTLE_DeleteBattle( battleindex );
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
}
|
|||
|
// }
|
|||
|
|
|||
|
for( i = 1; i < CHAR_PARTYMAX; i ++ ){
|
|||
|
pindex = CHAR_getWorkInt( charaindex, i + CHAR_WORKPARTYINDEX1 );
|
|||
|
if( CHAR_CHECKINDEX( pindex ) == FALSE )continue;
|
|||
|
if( CHAR_getWorkInt( pindex, CHAR_WORKBATTLEMODE ) == BATTLE_CHARMODE_FINAL ) continue;
|
|||
|
fd = getfdFromCharaIndex(pindex);
|
|||
|
|
|||
|
if( fd != -1 ){
|
|||
|
lssproto_EN_send( fd, BATTLE_TYPE_BOSS_BATTLE, field_no );
|
|||
|
}
|
|||
|
}
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKACTION) != -1 ) {
|
|||
|
CHAR_sendWatchEvent(
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKOBJINDEX),
|
|||
|
CHAR_ACTSTAND,
|
|||
|
NULL, 0, FALSE);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKACTION, -1);
|
|||
|
}
|
|||
|
CHAR_sendBattleEffect( charaindex, ON);
|
|||
|
for( i = 1; i < CHAR_PARTYMAX; i ++ ){
|
|||
|
pindex = CHAR_getWorkInt( charaindex, i + CHAR_WORKPARTYINDEX1 );
|
|||
|
if( CHAR_CHECKINDEX( pindex ) == FALSE )continue;
|
|||
|
if( CHAR_getWorkInt( pindex, CHAR_WORKACTION) != -1 ) {
|
|||
|
CHAR_sendWatchEvent(
|
|||
|
CHAR_getWorkInt( pindex, CHAR_WORKOBJINDEX),
|
|||
|
CHAR_ACTSTAND,
|
|||
|
NULL, 0, FALSE);
|
|||
|
CHAR_setWorkInt( pindex, CHAR_WORKACTION, -1);
|
|||
|
}
|
|||
|
|
|||
|
CHAR_sendBattleEffect( pindex, ON);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_CreateVsEnemy( int charaindex, int mode, int npcindex )
|
|||
|
{
|
|||
|
int battleindex, iRet = 0, enemyindex, i, pindex;
|
|||
|
int *enemytable = NULL, fd, field_no, baselevel = 0;
|
|||
|
int skillType=0;
|
|||
|
int EnemyList[20];
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return BATTLE_ERR_CHARAINDEX;
|
|||
|
|
|||
|
#ifdef _STREET_VENDOR
|
|||
|
// <20><>̯<EFBFBD>в<EFBFBD><D0B2>ɽ<EFBFBD><C9BD><EFBFBD>ս<EFBFBD><D5BD>
|
|||
|
if( CHAR_getWorkInt(charaindex,CHAR_WORKSTREETVENDOR) > -1) return BATTLE_ERR_END;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _ANGEL_SUMMON // װ<><D7B0>ʹ<EFBFBD><CAB9><EFBFBD><EFBFBD><EFBFBD>ﲻ<EFBFBD><EFB2BB><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getWorkInt(charaindex,CHAR_WORKANGELMODE) == TRUE ) return BATTLE_ERR_END;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PET_BUG
|
|||
|
int petarray = CHAR_getInt( charaindex, CHAR_DEFAULTPET);
|
|||
|
if(petarray>-1){
|
|||
|
int petindex = CHAR_getCharPet( charaindex, petarray);
|
|||
|
if(CHAR_getInt(petindex,CHAR_VITAL)>=getPetPoint(0)*20 || CHAR_getInt(petindex,CHAR_STR)>=getPetPoint(1)*80 || CHAR_getInt(petindex,CHAR_TOUGH)>=getPetPoint(2)*80 || CHAR_getInt(petindex,CHAR_DEX)>=getPetPoint(3)*100)
|
|||
|
return BATTLE_ERR_END;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE ) != BATTLE_CHARMODE_NONE ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
return BATTLE_ERR_ALREADYBATTLE;
|
|||
|
}
|
|||
|
#ifdef _BATTLEMAP_CTRL
|
|||
|
int j;
|
|||
|
for(j=0;j<10;j++){
|
|||
|
if(getBattleTimeFloor(j)==-1) break;
|
|||
|
if(CHAR_getInt(charaindex,CHAR_FLOOR)==getBattleTimeFloor(j) && CHAR_getPartyNum(charaindex)<=getBattleTimePlayerNum(j)){
|
|||
|
time_t timep;
|
|||
|
struct tm *p;
|
|||
|
time(&timep);
|
|||
|
p=localtime(&timep); /*ȡ<>õ<EFBFBD><C3B5><EFBFBD>ʱ<EFBFBD><CAB1>*/
|
|||
|
timep = mktime(p);
|
|||
|
if(timep-CHAR_getWorkInt(charaindex,CHAR_WORKBATTLETIME)<=getBattleTimeSec(j)){
|
|||
|
return BATTLE_ERR_END;
|
|||
|
}else{
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKBATTLETIME,timep);
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
battleindex = BATTLE_CreateBattle( charaindex );
|
|||
|
if( battleindex < 0 )return BATTLE_ERR_NOTASK;
|
|||
|
#ifdef _WAN_FIX
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKBATTLEPROTYPE,1);
|
|||
|
#endif
|
|||
|
if( CHAR_CHECKINDEX( npcindex) ){
|
|||
|
skillType = CHAR_getWorkInt( npcindex, CHAR_NPCWORKINT11);
|
|||
|
}
|
|||
|
|
|||
|
field_no = BATTLE_getBattleFieldNo(
|
|||
|
CHAR_getInt( charaindex, CHAR_FLOOR ) ,
|
|||
|
CHAR_getInt( charaindex, CHAR_X ) ,
|
|||
|
CHAR_getInt( charaindex, CHAR_Y ) );
|
|||
|
if( field_no > BATTLE_MAP_MAX || field_no < 0 ){
|
|||
|
field_no = RAND( 0, BATTLE_MAP_MAX );
|
|||
|
}
|
|||
|
|
|||
|
BattleArray[battleindex].Side[0].type = BATTLE_S_TYPE_PLAYER;
|
|||
|
BattleArray[battleindex].Side[1].type = BATTLE_S_TYPE_ENEMY;
|
|||
|
BattleArray[battleindex].leaderindex = charaindex;
|
|||
|
BattleArray[battleindex].type = BATTLE_TYPE_P_vs_E;
|
|||
|
BattleArray[battleindex].createindex = npcindex;
|
|||
|
BattleArray[battleindex].field_no = field_no;
|
|||
|
//andy_edit 2002/10/23
|
|||
|
/*
|
|||
|
if( (iRet = BATTLE_PartyNewEntry( charaindex, battleindex, 0 ) ) ){
|
|||
|
goto BATTLE_CreateVsEnemy_End;
|
|||
|
}
|
|||
|
*/
|
|||
|
BattleArray[battleindex].Side[0].flg &= ~BSIDE_FLG_HELP_OK;
|
|||
|
if( mode == 0 ) {
|
|||
|
enemytable = ENEMY_getEnemy( charaindex,
|
|||
|
CHAR_getInt( charaindex, CHAR_X),
|
|||
|
CHAR_getInt( charaindex, CHAR_Y));
|
|||
|
}else if( mode == 1 ) {
|
|||
|
enemytable = NPC_Util_getEnemy( npcindex, charaindex);
|
|||
|
}else if( mode == 2 ) {
|
|||
|
enemytable = Doujyou_GetEnemy( npcindex, charaindex );
|
|||
|
baselevel = CHAR_getInt( npcindex, CHAR_LV );
|
|||
|
BattleArray[battleindex].norisk = 1;
|
|||
|
}
|
|||
|
if( enemytable == NULL ) {
|
|||
|
iRet = BATTLE_ERR_NOENEMY;
|
|||
|
goto BATTLE_CreateVsEnemy_End;
|
|||
|
}
|
|||
|
|
|||
|
for( i = 0; *(enemytable+i)!= -1 && i < arraysizeof( EnemyList )-1; i ++ ){
|
|||
|
EnemyList[i] = *(enemytable+i);
|
|||
|
}
|
|||
|
EnemyList[i] = -1;
|
|||
|
|
|||
|
#ifdef _BATTLE_TIMESPEED
|
|||
|
fd = getfdFromCharaIndex( charaindex );
|
|||
|
BattleArray[battleindex].CreateTime = time(NULL);
|
|||
|
BattleArray[battleindex].flgTime = 200; // 1/100 sec
|
|||
|
#endif
|
|||
|
for( i = 0; EnemyList[i] != -1; i ++ ){
|
|||
|
int work;
|
|||
|
enemyindex = ENEMY_createEnemy( EnemyList[i], baselevel );
|
|||
|
if( skillType > 0 ){
|
|||
|
//int ENEMY_RandomChange( int enemyindex, int tempno ){
|
|||
|
BATTLE_EnemyRandowSetSkill( enemyindex, skillType);
|
|||
|
}
|
|||
|
if( enemyindex < 0 ){
|
|||
|
iRet = BATTLE_ERR_NOENEMY;
|
|||
|
goto BATTLE_CreateVsEnemy_End;
|
|||
|
}
|
|||
|
|
|||
|
if( mode == 2 ){
|
|||
|
if( i == 0 ){
|
|||
|
CHAR_setInt( enemyindex, CHAR_BASEBASEIMAGENUMBER,
|
|||
|
CHAR_getInt( npcindex, CHAR_BASEBASEIMAGENUMBER ) );
|
|||
|
CHAR_setInt( enemyindex, CHAR_BASEIMAGENUMBER,
|
|||
|
CHAR_getInt( npcindex, CHAR_BASEBASEIMAGENUMBER ) );
|
|||
|
CHAR_setChar( enemyindex, CHAR_NAME,
|
|||
|
CHAR_getChar( npcindex, CHAR_NAME ) );
|
|||
|
CHAR_complianceParameter( enemyindex );
|
|||
|
}
|
|||
|
}
|
|||
|
if( ( iRet = BATTLE_NewEntry( enemyindex, battleindex, 1 ) ) ){
|
|||
|
goto BATTLE_CreateVsEnemy_End;
|
|||
|
}
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_DUELPOINT ) > 0 ){
|
|||
|
BattleArray[battleindex].dpbattle = 1;
|
|||
|
}
|
|||
|
work = CHAR_getInt( enemyindex, CHAR_BASEBASEIMAGENUMBER );
|
|||
|
if( 100466 <= work && work <= 100471 ){
|
|||
|
CHAR_setWorkInt( enemyindex, CHAR_WORKBATTLEFLG,
|
|||
|
CHAR_getWorkInt( enemyindex, CHAR_WORKBATTLEFLG ) | CHAR_BATTLEFLG_ABIO );
|
|||
|
//print( "(%s)<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n", CHAR_getUseName( enemyindex ) );
|
|||
|
}
|
|||
|
}
|
|||
|
//andy_edit 2002/10/23
|
|||
|
if( (iRet = BATTLE_PartyNewEntry( charaindex, battleindex, 0 ) ) ){
|
|||
|
goto BATTLE_CreateVsEnemy_End;
|
|||
|
}
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pEntry, EntryWork;
|
|||
|
pEntry = BattleArray[battleindex].Side[1].Entry;
|
|||
|
for( i = 0; i < 5; i ++ ){
|
|||
|
EntryWork = pEntry[i];
|
|||
|
pEntry[i] = pEntry[i+5];
|
|||
|
pEntry[i+5] = EntryWork;
|
|||
|
pEntry[i].bid = i + SIDE_OFFSET;
|
|||
|
pEntry[i+5].bid = i + 5 + SIDE_OFFSET;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
BATTLE_CreateVsEnemy_End:;
|
|||
|
fd = getfdFromCharaIndex( charaindex);
|
|||
|
|
|||
|
if( iRet ){
|
|||
|
BATTLE_ExitAll( battleindex );
|
|||
|
BATTLE_DeleteBattle( battleindex );
|
|||
|
if( fd != -1 )lssproto_EN_send( fd, FALSE, field_no );
|
|||
|
}else{
|
|||
|
if( fd != -1 ){
|
|||
|
if( BattleArray[battleindex].dpbattle ){
|
|||
|
lssproto_EN_send( fd, BATTLE_TYPE_DP_BATTLE, field_no );
|
|||
|
}else{
|
|||
|
if( mode == 1 ){
|
|||
|
lssproto_EN_send( fd, BATTLE_TYPE_BOSS_BATTLE, field_no );
|
|||
|
}else{
|
|||
|
lssproto_EN_send( fd, BattleArray[battleindex].type, field_no );
|
|||
|
}
|
|||
|
}
|
|||
|
}else {
|
|||
|
#ifdef _OFFLINE_SYSTEM
|
|||
|
if(CHAR_getWorkInt( charaindex, CHAR_WORK_OFFLINE ) == 0)
|
|||
|
#endif
|
|||
|
{
|
|||
|
BATTLE_ExitAll( battleindex );
|
|||
|
BATTLE_DeleteBattle( battleindex );
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
for( i = 1; i < CHAR_PARTYMAX; i ++ ){
|
|||
|
pindex = CHAR_getWorkInt( charaindex, i + CHAR_WORKPARTYINDEX1 );
|
|||
|
if( CHAR_CHECKINDEX( pindex ) == FALSE )continue;
|
|||
|
if( CHAR_getWorkInt( pindex, CHAR_WORKBATTLEMODE ) ==
|
|||
|
BATTLE_CHARMODE_FINAL ) continue;
|
|||
|
fd = getfdFromCharaIndex(pindex);
|
|||
|
if( fd != -1 ){
|
|||
|
if( mode == 1 ){
|
|||
|
lssproto_EN_send( fd, BATTLE_TYPE_BOSS_BATTLE, field_no );
|
|||
|
}else{
|
|||
|
lssproto_EN_send( fd, BattleArray[battleindex].type, field_no );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKACTION) != -1 ) {
|
|||
|
CHAR_sendWatchEvent(
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKOBJINDEX),
|
|||
|
CHAR_ACTSTAND,
|
|||
|
NULL, 0, FALSE);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKACTION, -1);
|
|||
|
}
|
|||
|
CHAR_sendBattleEffect( charaindex, ON);
|
|||
|
for( i = 1; i < CHAR_PARTYMAX; i ++ ){
|
|||
|
pindex = CHAR_getWorkInt( charaindex, i + CHAR_WORKPARTYINDEX1 );
|
|||
|
if( CHAR_CHECKINDEX( pindex ) == FALSE )continue;
|
|||
|
if( CHAR_getWorkInt( pindex, CHAR_WORKACTION) != -1 ) {
|
|||
|
CHAR_sendWatchEvent(
|
|||
|
CHAR_getWorkInt( pindex, CHAR_WORKOBJINDEX),
|
|||
|
CHAR_ACTSTAND,
|
|||
|
NULL, 0, FALSE);
|
|||
|
CHAR_setWorkInt( pindex, CHAR_WORKACTION, -1);
|
|||
|
}
|
|||
|
CHAR_sendBattleEffect( pindex, ON);
|
|||
|
}
|
|||
|
}
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_CreateVsPlayer( int charaindex0, int charaindex1 )
|
|||
|
{
|
|||
|
int battleindex, pindex, field_no,
|
|||
|
i, j, charaindex[2],
|
|||
|
parent[2], fd,
|
|||
|
iRet = 0;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( charaindex0 ) == FALSE )return BATTLE_ERR_CHARAINDEX;
|
|||
|
if( CHAR_CHECKINDEX( charaindex1 ) == FALSE )return BATTLE_ERR_CHARAINDEX;
|
|||
|
|
|||
|
if( CHAR_getWorkInt( charaindex0, CHAR_WORKBATTLEMODE ) != BATTLE_CHARMODE_NONE ){
|
|||
|
CHAR_talkToCli( charaindex0, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
CHAR_talkToCli( charaindex1, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
return BATTLE_ERR_ALREADYBATTLE;
|
|||
|
}
|
|||
|
if( CHAR_getWorkInt( charaindex1, CHAR_WORKBATTLEMODE ) != BATTLE_CHARMODE_NONE ){
|
|||
|
CHAR_talkToCli( charaindex0, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
CHAR_talkToCli( charaindex1, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
return BATTLE_ERR_ALREADYBATTLE;
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _BATTLEEND_FIX
|
|||
|
if(getBattleEndMode()==1){
|
|||
|
int myfloor=CHAR_getInt(charaindex0,CHAR_FLOOR);
|
|||
|
if(myfloor==getBattleFloor(1) ||
|
|||
|
myfloor==getBattleFloor(2) ||
|
|||
|
myfloor==getBattleFloor(3) ||
|
|||
|
myfloor==getBattleFloor(4) ||
|
|||
|
myfloor==getBattleFloor(5) ||
|
|||
|
myfloor==1042 ||
|
|||
|
myfloor==2032 ||
|
|||
|
myfloor==3032 ||
|
|||
|
myfloor==4032)
|
|||
|
{
|
|||
|
time_t timep;
|
|||
|
struct tm *p;
|
|||
|
time(&timep);
|
|||
|
p=localtime(&timep); /*ȡ<>õ<EFBFBD><C3B5><EFBFBD>ʱ<EFBFBD><CAB1>*/
|
|||
|
timep = mktime(p);
|
|||
|
if(CHAR_getWorkInt(charaindex1,CHAR_WORKBALLTELENDTIME)+120>timep){
|
|||
|
char bmsg[256];
|
|||
|
sprintf(bmsg,"<EFBFBD>Է<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>㱣<EFBFBD><EFBFBD><EFBFBD>У<EFBFBD>ʣ<EFBFBD><EFBFBD>ʱ<EFBFBD>䣺%d<>룬<EFBFBD>Է<EFBFBD><D4B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƶ<EFBFBD><C6B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",CHAR_getWorkInt(charaindex1,CHAR_WORKBALLTELENDTIME)+120-timep);
|
|||
|
CHAR_talkToCli( charaindex0, -1, bmsg, CHAR_COLORYELLOW );
|
|||
|
return BATTLE_ERR_ALREADYBATTLE;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _PET_BUG
|
|||
|
int petindex;
|
|||
|
int petarray0 = CHAR_getInt( charaindex0, CHAR_DEFAULTPET);
|
|||
|
int petarray1 = CHAR_getInt( charaindex1, CHAR_DEFAULTPET);
|
|||
|
if(petarray0>-1){
|
|||
|
petindex = CHAR_getCharPet( charaindex0, petarray0);
|
|||
|
if(CHAR_getInt(petindex,CHAR_VITAL)>=getPetPoint(0)*20 || CHAR_getInt(petindex,CHAR_STR)>=getPetPoint(1)*80 || CHAR_getInt(petindex,CHAR_TOUGH)>=getPetPoint(2)*80 || CHAR_getInt(petindex,CHAR_DEX)>=getPetPoint(3)*100)
|
|||
|
return BATTLE_ERR_END;
|
|||
|
}
|
|||
|
if(petarray1>-1){
|
|||
|
petindex = CHAR_getCharPet( charaindex1, petarray1);
|
|||
|
if(CHAR_getInt(petindex,CHAR_VITAL)>=getPetPoint(0)*20 || CHAR_getInt(petindex,CHAR_STR)>=getPetPoint(1)*80 || CHAR_getInt(petindex,CHAR_TOUGH)>=getPetPoint(2)*80 || CHAR_getInt(petindex,CHAR_DEX)>=getPetPoint(3)*100)
|
|||
|
return BATTLE_ERR_END;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
field_no = BATTLE_getBattleFieldNo(
|
|||
|
CHAR_getInt( charaindex0, CHAR_FLOOR ) ,
|
|||
|
CHAR_getInt( charaindex0, CHAR_X ),
|
|||
|
CHAR_getInt( charaindex0, CHAR_Y ) );
|
|||
|
|
|||
|
int tmpi = RAND(1,10);
|
|||
|
if(tmpi<=5){
|
|||
|
charaindex[0] = charaindex1;
|
|||
|
charaindex[1] = charaindex0;
|
|||
|
}else{
|
|||
|
charaindex[0] = charaindex0;
|
|||
|
charaindex[1] = charaindex1;
|
|||
|
}
|
|||
|
charaindex0 = charaindex[0];
|
|||
|
charaindex1 = charaindex[1];
|
|||
|
//charaindex[0] = charaindex0;
|
|||
|
//charaindex[1] = charaindex1;
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
if( CHAR_getWorkInt( charaindex[j], CHAR_WORKBATTLEMODE ) != 0 ){
|
|||
|
return BATTLE_ERR_ALREADYBATTLE;
|
|||
|
}
|
|||
|
}
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
if( CHAR_getWorkInt( charaindex[j], CHAR_WORKPARTYMODE ) == CHAR_PARTY_LEADER ){
|
|||
|
parent[j] = charaindex[j];
|
|||
|
}else
|
|||
|
if( CHAR_getWorkInt( charaindex[j], CHAR_WORKPARTYMODE ) == CHAR_PARTY_CLIENT ){
|
|||
|
parent[j] = CHAR_getWorkInt( charaindex[j], CHAR_WORKPARTYINDEX1 );
|
|||
|
}else{
|
|||
|
parent[j] = -1;
|
|||
|
}
|
|||
|
}
|
|||
|
if( parent[0] != -1 && parent[0] == parent[1] ){
|
|||
|
return BATTLE_ERR_SAMEPARTY;
|
|||
|
}
|
|||
|
battleindex = BATTLE_CreateBattle(charaindex0 );
|
|||
|
if( battleindex < 0 )return BATTLE_ERR_NOTASK;
|
|||
|
|
|||
|
if(CHAR_getInt(charaindex0,CHAR_FLOOR)==1042){
|
|||
|
sprintf(afmwar,"%s%d,",afmwar,battleindex);
|
|||
|
afmwarnum++;
|
|||
|
}else if(CHAR_getInt(charaindex0,CHAR_FLOOR)==2032){
|
|||
|
sprintf(bfmwar,"%s%d,",bfmwar,battleindex);
|
|||
|
bfmwarnum++;
|
|||
|
}else if(CHAR_getInt(charaindex0,CHAR_FLOOR)==3032){
|
|||
|
sprintf(cfmwar,"%s%d,",cfmwar,battleindex);
|
|||
|
cfmwarnum++;
|
|||
|
}else if(CHAR_getInt(charaindex0,CHAR_FLOOR)==4032){
|
|||
|
sprintf(dfmwar,"%s%d,",dfmwar,battleindex);
|
|||
|
dfmwarnum++;
|
|||
|
}else if(CHAR_getInt(charaindex0,CHAR_FLOOR)==20000){
|
|||
|
sprintf(efmwar,"%s%d,",efmwar,battleindex);
|
|||
|
efmwarnum++;
|
|||
|
}else if(CHAR_getInt(charaindex0,CHAR_FLOOR)==51000){
|
|||
|
sprintf(ffmwar,"%s%d,",ffmwar,battleindex);
|
|||
|
ffmwarnum++;
|
|||
|
}
|
|||
|
#ifdef _WAN_FIX
|
|||
|
CHAR_setWorkInt(charaindex0,CHAR_WORKBATTLEPROTYPE,1);
|
|||
|
CHAR_setWorkInt(charaindex1,CHAR_WORKBATTLEPROTYPE,1);
|
|||
|
#endif
|
|||
|
BattleArray[battleindex].Side[0].type = BATTLE_S_TYPE_PLAYER;
|
|||
|
BattleArray[battleindex].Side[1].type = BATTLE_S_TYPE_PLAYER;
|
|||
|
BattleArray[battleindex].leaderindex = charaindex0;
|
|||
|
#ifdef _AUTO_PK
|
|||
|
memset(BattleArray[battleindex].leadercdkey, 0, sizeof(BattleArray[battleindex].leadercdkey));
|
|||
|
memset(BattleArray[battleindex].leadername, 0, sizeof(BattleArray[battleindex].leadername));
|
|||
|
memset(BattleArray[battleindex].rivalcdkey, 0, sizeof(BattleArray[battleindex].rivalcdkey));
|
|||
|
memset(BattleArray[battleindex].rivalname, 0, sizeof(BattleArray[battleindex].rivalname));
|
|||
|
strcpysafe(BattleArray[battleindex].leadercdkey,sizeof(BattleArray[battleindex].leadercdkey),CHAR_getChar(charaindex0,CHAR_CDKEY));
|
|||
|
strcpysafe(BattleArray[battleindex].leadername,sizeof(BattleArray[battleindex].leadername),CHAR_getChar(charaindex0,CHAR_NAME));
|
|||
|
BattleArray[battleindex].rivalindex = charaindex1;
|
|||
|
strcpysafe(BattleArray[battleindex].rivalcdkey,sizeof(BattleArray[battleindex].rivalcdkey),CHAR_getChar(charaindex1,CHAR_CDKEY));
|
|||
|
strcpysafe(BattleArray[battleindex].rivalname,sizeof(BattleArray[battleindex].rivalname),CHAR_getChar(charaindex1,CHAR_NAME));
|
|||
|
#endif
|
|||
|
BattleArray[battleindex].type = BATTLE_TYPE_P_vs_P;
|
|||
|
BattleArray[battleindex].dpbattle = 1;
|
|||
|
BattleArray[battleindex].field_no = field_no;
|
|||
|
#ifdef _BATTLE_TIMESPEED
|
|||
|
BattleArray[battleindex].CreateTime = time(NULL);
|
|||
|
#endif
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
iRet = BATTLE_PartyNewEntry( charaindex[j], battleindex, j );
|
|||
|
if( iRet ){
|
|||
|
goto BATTLE_CreateVsPlayer_End;
|
|||
|
}
|
|||
|
BattleArray[battleindex].Side[j].flg &= ~BSIDE_FLG_HELP_OK;
|
|||
|
}
|
|||
|
BATTLE_CreateVsPlayer_End:;
|
|||
|
if( iRet ){
|
|||
|
BATTLE_ExitAll( battleindex );
|
|||
|
BATTLE_DeleteBattle( battleindex );
|
|||
|
fd = getfdFromCharaIndex(charaindex[0]);
|
|||
|
if( fd != -1 )lssproto_EN_send( fd, FALSE, field_no );
|
|||
|
}else{
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
fd = getfdFromCharaIndex(charaindex[j]);
|
|||
|
if( fd != -1 )lssproto_EN_send( fd, BattleArray[battleindex].type, field_no );
|
|||
|
if( CHAR_getWorkInt( charaindex[j], CHAR_WORKACTION) != -1 ) {
|
|||
|
CHAR_sendWatchEvent(
|
|||
|
CHAR_getWorkInt( charaindex[j], CHAR_WORKOBJINDEX),
|
|||
|
CHAR_ACTSTAND,
|
|||
|
NULL, 0, FALSE);
|
|||
|
CHAR_setWorkInt( charaindex[j], CHAR_WORKACTION, -1);
|
|||
|
|
|||
|
}
|
|||
|
CHAR_sendBattleEffect( charaindex[j], ON);
|
|||
|
for( i = 1; i < CHAR_PARTYMAX; i ++ ){
|
|||
|
pindex = CHAR_getWorkInt( charaindex[j], i + CHAR_WORKPARTYINDEX1 );
|
|||
|
if( CHAR_CHECKINDEX( pindex ) == FALSE )continue;
|
|||
|
if( CHAR_getWorkInt( pindex, CHAR_WORKBATTLEMODE ) ==
|
|||
|
BATTLE_CHARMODE_FINAL ) continue;
|
|||
|
|
|||
|
fd = getfdFromCharaIndex(pindex);
|
|||
|
if( fd != -1 )lssproto_EN_send( fd, BattleArray[battleindex].type, field_no );
|
|||
|
if( CHAR_getWorkInt( pindex, CHAR_WORKACTION) != -1 ) {
|
|||
|
CHAR_sendWatchEvent(
|
|||
|
CHAR_getWorkInt( pindex, CHAR_WORKOBJINDEX),
|
|||
|
CHAR_ACTSTAND,
|
|||
|
NULL, 0, FALSE);
|
|||
|
CHAR_setWorkInt( pindex, CHAR_WORKACTION, -1);
|
|||
|
|
|||
|
}
|
|||
|
CHAR_sendBattleEffect( pindex, ON );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
//*********************************************************
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ëܰ<C3AB>ѣ<EFBFBD><D1A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݱ<EFBFBD>ɬ<EFBFBD><C9AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
int BATTLE_WatchLink( int topbattleindex, int battleindex )
|
|||
|
//
|
|||
|
//
|
|||
|
//*********************************************************
|
|||
|
{
|
|||
|
BATTLE *pWork, *pTop;
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE ){
|
|||
|
//fprint( "err:battle index <20><><EFBFBD><EFBFBD>(%d)\n", battleindex );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
if( BATTLE_CHECKINDEX( topbattleindex ) == FALSE ){
|
|||
|
//fprint( "err:battle index <20><><EFBFBD><EFBFBD>(%d)\n", topbattleindex );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
pTop = &BattleArray[topbattleindex];
|
|||
|
|
|||
|
if( BATTLE_CHECKADDRESS( pTop ) == FALSE ){
|
|||
|
//fprint( "err:battle address <20><><EFBFBD><EFBFBD>(%p)\n", pTop );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
pWork = pTop->pNext; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD><CAA7><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
if( pWork ){
|
|||
|
if( BATTLE_CHECKADDRESS( pWork ) == FALSE ){
|
|||
|
//fprint( "err:battle address <20><><EFBFBD><EFBFBD>(%p)\n", pWork );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>ë<C3AB>ݱ<EFBFBD><DDB1><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
pTop->pNext = &BattleArray[battleindex];
|
|||
|
// <20><><EFBFBD>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ëɬ<C3AB><C9AC>
|
|||
|
BattleArray[battleindex].pBefore = pTop;
|
|||
|
// <20><><EFBFBD>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ëɬ<C3AB><C9AC>
|
|||
|
BattleArray[battleindex].pNext = pWork;
|
|||
|
// <20>ݼ<EFBFBD><EFBFBD><F3A1B7B4><EFBFBD><EFBFBD>
|
|||
|
if( pWork ){
|
|||
|
pWork->pBefore = &BattleArray[battleindex];
|
|||
|
}
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
//*********************************************************
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD>繴 <20><>
|
|||
|
//
|
|||
|
int BATTLE_WatchUnLink( int battleindex )
|
|||
|
//
|
|||
|
//
|
|||
|
//*********************************************************
|
|||
|
{
|
|||
|
BATTLE *pTop;
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE ){
|
|||
|
//fprint( "err:battle index <20><><EFBFBD><EFBFBD>(%d)\n", battleindex );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>ë<C3AB><F3A1BCB0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
pTop = BattleArray[battleindex].pBefore;
|
|||
|
|
|||
|
if( pTop ){
|
|||
|
if( BATTLE_CHECKADDRESS( pTop ) == FALSE ){
|
|||
|
//fprint( "err:battle address <20><><EFBFBD><EFBFBD>(%p)\n", pTop );
|
|||
|
}else{
|
|||
|
// <20><>ئ<EFBFBD><D8A6>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD>
|
|||
|
pTop->pNext = BattleArray[battleindex].pNext;
|
|||
|
}
|
|||
|
}
|
|||
|
if( BattleArray[battleindex].pNext ){
|
|||
|
if( BATTLE_CHECKADDRESS( BattleArray[battleindex].pNext ) == FALSE ){
|
|||
|
//fprint( "err:battle address <20><><EFBFBD><EFBFBD>(%p)\n", BattleArray[battleindex].pNext );
|
|||
|
}else{
|
|||
|
BattleArray[battleindex].pNext->pBefore = pTop;
|
|||
|
}
|
|||
|
}
|
|||
|
// <20><><EFBFBD>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ëɬ<C3AB><C9AC>
|
|||
|
BattleArray[battleindex].pBefore = NULL;
|
|||
|
// <20><><EFBFBD>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ﷴ <20><>
|
|||
|
BattleArray[battleindex].pNext = NULL;
|
|||
|
|
|||
|
return TRUE;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
//*********************************************************
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>ñ<EFBFBD><C3B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
int BATTLE_CreateForWatcher( int charaindex, int topbattleindex )
|
|||
|
//
|
|||
|
// Ի<><D4BB> BATTLE_ERR
|
|||
|
//
|
|||
|
//*********************************************************
|
|||
|
{
|
|||
|
int battleindex, field_no , pindex,
|
|||
|
i, fd,
|
|||
|
iRet = 0;
|
|||
|
|
|||
|
// <20>ɷ¶<C9B7><C2B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return BATTLE_ERR_CHARAINDEX;
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE ) != BATTLE_CHARMODE_NONE ){
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
return BATTLE_ERR_ALREADYBATTLE;
|
|||
|
}
|
|||
|
|
|||
|
// <20><>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD> ƥئ<C6A5>о<EFBFBD>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE ) != 0 ){
|
|||
|
return BATTLE_ERR_ALREADYBATTLE;
|
|||
|
}
|
|||
|
|
|||
|
if(CHAR_getInt(charaindex,CHAR_FLOOR)==20000){
|
|||
|
CHAR_talkToCli( charaindex, -1, "PK<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>У<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڹ<EFBFBD>ս<EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
return BATTLE_ERR_ALREADYBATTLE;
|
|||
|
}
|
|||
|
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
battleindex = BATTLE_CreateBattle(charaindex );
|
|||
|
if( battleindex < 0 )return BATTLE_ERR_NOTASK;// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> έƥ<CEAD><C6A5>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD>¡<DEB7>
|
|||
|
#ifdef _WAN_FIX
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKBATTLEPROTYPE,1);
|
|||
|
#endif
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>ռ<EFBFBD><D5BC><EFBFBD><EFBFBD>ɷ<EFBFBD><C9B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥؤ<C6A5><D8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>£<EFBFBD>
|
|||
|
BattleArray[battleindex].Side[0].type = BATTLE_S_TYPE_PLAYER;
|
|||
|
// <20><><EFBFBD><EFBFBD><F0B5A4B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥؤ<C6A5><D8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>£<EFBFBD>
|
|||
|
BattleArray[battleindex].Side[1].type = BATTLE_S_TYPE_PLAYER;
|
|||
|
// <20><><EFBFBD><EFBFBD>ĸ<EFBFBD><C4B8>ë<EFBFBD><C3AB><EFBFBD><EFBFBD>
|
|||
|
BattleArray[battleindex].leaderindex = charaindex;
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
BattleArray[battleindex].type = BATTLE_TYPE_WATCH;
|
|||
|
BattleArray[battleindex].mode = BATTLE_MODE_WATCHBC;
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ū<EFBFBD><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD> į
|
|||
|
field_no = BattleArray[battleindex].field_no = BattleArray[topbattleindex].field_no;
|
|||
|
BattleArray[battleindex].turn = BattleArray[topbattleindex].turn;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>ͽ<EFBFBD><CDBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( BATTLE_WatchLink( topbattleindex, battleindex ) == FALSE ){
|
|||
|
//fprint( "err:battle link error(%d),(%d)\n",
|
|||
|
//topbattleindex, battleindex );
|
|||
|
// <20>¡<DEB7><C2A1><EFBFBD> ƥ<><C6A5> GOTO
|
|||
|
goto BATTLE_CreateForWatcher_End;
|
|||
|
}
|
|||
|
|
|||
|
// <20>ɡ<EFBFBD> ū<><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
iRet = BATTLE_WatchPartyNewEntry( charaindex, battleindex, 0 );
|
|||
|
if( iRet ){
|
|||
|
// <20>¡<DEB7><C2A1><EFBFBD> ƥ<><C6A5> GOTO
|
|||
|
goto BATTLE_CreateForWatcher_End;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
// <20>¡<DEB7><C2A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʲ<EFBFBD><CAB2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>
|
|||
|
BATTLE_CreateForWatcher_End:;
|
|||
|
|
|||
|
if( iRet ){ // <20>¡<DEB7><C2A1><EFBFBD>ؤ<EFBFBD><D8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>
|
|||
|
// <20>幻 <20><><EFBFBD><EFBFBD>
|
|||
|
BATTLE_ExitAll( battleindex );
|
|||
|
//<2F><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><CDB4><EFBFBD>
|
|||
|
BATTLE_DeleteBattle( battleindex );
|
|||
|
fd = getfdFromCharaIndex( charaindex );
|
|||
|
if( fd != -1 )lssproto_EN_send( fd, FALSE, field_no );
|
|||
|
}else{
|
|||
|
fd = getfdFromCharaIndex( charaindex );
|
|||
|
/* <20><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ë<><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
if( fd != -1 )lssproto_EN_send( fd, BattleArray[battleindex].type, field_no );
|
|||
|
/* <20>к̡<D0BA><CCA1><EFBFBD>˪<EFBFBD><CBAA> */
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKACTION) != -1 ) {
|
|||
|
CHAR_sendWatchEvent(
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKOBJINDEX),
|
|||
|
CHAR_ACTSTAND,
|
|||
|
NULL, 0, FALSE);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKACTION, -1);
|
|||
|
}
|
|||
|
/* <20><> ʧ<><CAA7><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>CA˪<41><CBAA> */
|
|||
|
CHAR_sendBattleWatch( CHAR_getWorkInt( charaindex, CHAR_WORKOBJINDEX ), ON);
|
|||
|
|
|||
|
// <20><><EFBFBD>ޱ<EFBFBD><DEB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
for( i = 1; i < CHAR_PARTYMAX; i ++ ){
|
|||
|
pindex = CHAR_getWorkInt( charaindex, i + CHAR_WORKPARTYINDEX1 );
|
|||
|
if( CHAR_CHECKINDEX( pindex ) == FALSE )continue;
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD>廯ئ<E5BBAF><D8A6>ئ<EFBFBD><D8A6>˪<EFBFBD><CBAA>ئ<EFBFBD><D8A6>
|
|||
|
// FINAL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><F3A1BCB0> έ<><CEAD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getWorkInt( pindex, CHAR_WORKBATTLEMODE ) ==
|
|||
|
BATTLE_CHARMODE_FINAL ) continue;
|
|||
|
|
|||
|
fd = getfdFromCharaIndex(pindex);
|
|||
|
/* <20><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
if( fd != -1 )lssproto_EN_send( fd, BattleArray[battleindex].type, field_no );
|
|||
|
/* <20>к̡<D0BA><CCA1><EFBFBD>˪<EFBFBD><CBAA> */
|
|||
|
if( CHAR_getWorkInt( pindex, CHAR_WORKACTION) != -1 ) {
|
|||
|
CHAR_sendWatchEvent(
|
|||
|
CHAR_getWorkInt( pindex, CHAR_WORKOBJINDEX),
|
|||
|
CHAR_ACTSTAND,
|
|||
|
NULL, 0, FALSE);
|
|||
|
CHAR_setWorkInt( pindex, CHAR_WORKACTION, -1);
|
|||
|
}
|
|||
|
/* <20><> ʧ<><CAA7><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>CA˪<41><CBAA> */
|
|||
|
CHAR_sendBattleWatch( CHAR_getWorkInt( charaindex, CHAR_WORKOBJINDEX ), ON);
|
|||
|
}
|
|||
|
/*
|
|||
|
print( "<EFBFBD><EFBFBD>(%s)Ϊ<><CEAA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>о<EFBFBD><D0BE><EFBFBD><EFBFBD>֡<EFBFBD>",
|
|||
|
CHAR_getChar( charaindex, CHAR_NAME ) );
|
|||
|
*/
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
/*------------------------------------------------------------
|
|||
|
* <EFBFBD><EFBFBD> ë Ӭ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
------------------------------------------------------------*/
|
|||
|
void BATTLE_WatchStop( int charaindex )
|
|||
|
{
|
|||
|
int battleindex;
|
|||
|
|
|||
|
battleindex = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEINDEX );
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return;
|
|||
|
// ƽ<>ҷ<EFBFBD><D2B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
BATTLE_Exit( charaindex, battleindex );
|
|||
|
// <20>ɡ<EFBFBD> ū <20><><EFBFBD><EFBFBD>
|
|||
|
CHAR_DischargePartyNoMsg( charaindex );
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex, -1,
|
|||
|
"ս<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֹ<EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
|
|||
|
lssproto_B_send( getfdFromCharaIndex( charaindex ), "BU" );
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
//*************************************************************
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ Ӽ<><D3BC><EFBFBD><EFBFBD><EFBFBD>ɷ¶<C9B7><C2B6><EFBFBD><EFBFBD><EFBFBD>ëٴ<C3AB><D9B4><EFBFBD>ƻ<EFBFBD><C6BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
void BATTLE_TurnParam(
|
|||
|
int charaindex,
|
|||
|
int fixkind,
|
|||
|
int mod,
|
|||
|
int last
|
|||
|
)
|
|||
|
//
|
|||
|
//
|
|||
|
//*************************************************************
|
|||
|
{
|
|||
|
int modparam, fixparam, lastparam;
|
|||
|
|
|||
|
if( fixkind == -1 ){
|
|||
|
fixparam = 0; // <20>绥 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
}else{
|
|||
|
fixparam = CHAR_getWorkInt( charaindex, fixkind );
|
|||
|
}
|
|||
|
if( last == -1 ){
|
|||
|
lastparam = 0;
|
|||
|
}else{
|
|||
|
lastparam = CHAR_getWorkInt( charaindex, last );
|
|||
|
}
|
|||
|
modparam = CHAR_getWorkInt( charaindex, mod );
|
|||
|
// <20><><EFBFBD><EFBFBD>ƥ <20><> <20><> <20><> ëέ<C3AB><CEAD><EFBFBD><EFBFBD>
|
|||
|
// <20><><EFBFBD><EFBFBD>ëٴ<C3AB><D9B4><EFBFBD>ƻ<EFBFBD><C6BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
// <20>ᷴ MODPARAM ë<><C3AB><EFBFBD>ߡ<EFBFBD>Ӽ<EFBFBD>ƻ<EFBFBD><C6BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
modparam *= 0.8;
|
|||
|
CHAR_setWorkInt( charaindex, mod, modparam );
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( last != -1 ){
|
|||
|
CHAR_setWorkInt(
|
|||
|
charaindex,
|
|||
|
last,
|
|||
|
lastparam + modparam * 0.01 );
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void BATTLE_AttReverse( int charaindex )
|
|||
|
{
|
|||
|
int earth, water, fire, wind;
|
|||
|
//ttom start because the second had this
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEFLG ) & CHAR_BATTLEFLG_REVERSE ){
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKBATTLEREVERSE,1);
|
|||
|
// <20><><EFBFBD>ƻ<EFBFBD><C6BB><EFBFBD>ئ<EFBFBD><D8A6><EFBFBD>ݳ<EFBFBD>
|
|||
|
}else{
|
|||
|
// <20><><EFBFBD>ƻ<EFBFBD>ئ<EFBFBD>м<EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
return;
|
|||
|
}
|
|||
|
//ttom end
|
|||
|
earth = CHAR_getWorkInt( charaindex, CHAR_WORKFIXEARTHAT );
|
|||
|
water = CHAR_getWorkInt( charaindex, CHAR_WORKFIXWATERAT );
|
|||
|
fire = CHAR_getWorkInt( charaindex, CHAR_WORKFIXFIREAT );
|
|||
|
wind = CHAR_getWorkInt( charaindex, CHAR_WORKFIXWINDAT );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXEARTHAT, fire );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXWATERAT, wind );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXFIREAT, earth );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXWINDAT, water );
|
|||
|
}
|
|||
|
|
|||
|
void BATTLE_PreCommandSeq( int battleindex )
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
BATTLE *pBattle;
|
|||
|
int i, j, charaindex;
|
|||
|
BATTLE_CharSendAll( battleindex );
|
|||
|
BATTLE_CharaBackUp( battleindex );
|
|||
|
BattleArray[battleindex].timer = NowTime.tv_sec;
|
|||
|
BATTLE_AllCharaCWaitSet( battleindex );
|
|||
|
BATTLE_ActSettingSend( battleindex );
|
|||
|
BattleArray[battleindex].flg |= BATTLE_FLG_FREEDP;
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
int flg;
|
|||
|
pEntry = pBattle->Side[j].Entry;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
pEntry[i].guardian = -1;
|
|||
|
charaindex = pEntry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
flg = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEFLG );
|
|||
|
//ttom the second only one //flg &= ~CHAR_BATTLEFLG_GUARDIAN;
|
|||
|
flg &= ~CHAR_BATTLEFLG_GUARDIAN;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEFLG, flg );
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_EARTHROUND0 ) continue;
|
|||
|
|
|||
|
CHAR_complianceParameter( charaindex );
|
|||
|
BATTLE_TurnParam( charaindex,
|
|||
|
CHAR_WORKFIXSTR, // <20><>
|
|||
|
CHAR_WORKMODATTACK,
|
|||
|
CHAR_WORKATTACKPOWER
|
|||
|
);
|
|||
|
BATTLE_TurnParam( charaindex,
|
|||
|
CHAR_WORKFIXTOUGH, // <20><>
|
|||
|
CHAR_WORKMODDEFENCE,
|
|||
|
CHAR_WORKDEFENCEPOWER
|
|||
|
);
|
|||
|
BATTLE_TurnParam( charaindex,
|
|||
|
CHAR_WORKFIXDEX, // <20>ٶƽ<D9B6>
|
|||
|
CHAR_WORKMODQUICK,
|
|||
|
CHAR_WORKQUICK
|
|||
|
);
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER ){
|
|||
|
BATTLE_TurnParam( charaindex,
|
|||
|
-1,
|
|||
|
CHAR_WORKMODCHARM, //
|
|||
|
CHAR_WORKFIXCHARM
|
|||
|
);
|
|||
|
}
|
|||
|
BATTLE_TurnParam( charaindex,
|
|||
|
-1, // <20><>
|
|||
|
CHAR_WORKMODCHARM,
|
|||
|
-1
|
|||
|
);
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEFLG ) & CHAR_BATTLEFLG_REVERSE ){
|
|||
|
BATTLE_AttReverse( charaindex );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
//**************************************************
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѩ<EFBFBD><D1A8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>г<EFBFBD> <20><><EFBFBD>ݼ<EFBFBD><DDBC><EFBFBD> <20><> ľ
|
|||
|
//
|
|||
|
void BATTLE_PreWatchWaitSeq( int battleindex )
|
|||
|
//
|
|||
|
//
|
|||
|
//**************************************************
|
|||
|
{
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD>ݶ<EFBFBD><DDB6><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
BattleArray[battleindex].timer = NowTime.tv_sec;
|
|||
|
// <20>幻<EFBFBD><E5B9BB>ƹ<EFBFBD><C6B9><EFBFBD><EFBFBD>ë<EFBFBD><C3AB>Ѩ<EFBFBD><D1A8><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
BATTLE_AllCharaWatchWaitSet( battleindex );
|
|||
|
}
|
|||
|
static int BATTLE_Init( int battleindex )
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_Init";
|
|||
|
BATTLE *pBattle;
|
|||
|
int iRet = 0;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
pBattle->mode = BATTLE_MODE_BATTLE;
|
|||
|
iRet = BATTLE_SurpriseCheck( battleindex );
|
|||
|
if( iRet == 0 ){
|
|||
|
}else
|
|||
|
if( iRet == 1 ){
|
|||
|
BattleArray[battleindex].Side[1].flg |= BSIDE_FLG_SURPRISE;
|
|||
|
}else
|
|||
|
if( iRet == 2 ){
|
|||
|
BattleArray[battleindex].Side[0].flg |= BSIDE_FLG_SURPRISE;
|
|||
|
}
|
|||
|
BATTLE_PreCommandSeq( battleindex );
|
|||
|
return 0;
|
|||
|
}
|
|||
|
int BATTLE_CountEntry(
|
|||
|
int battleindex,
|
|||
|
int side
|
|||
|
)
|
|||
|
{
|
|||
|
int i;
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
int cnt = 0;
|
|||
|
|
|||
|
// <20>ɷ¶<C9B7><C2B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( BATTLE_CHECKSIDE( side ) == FALSE )return -BATTLE_ERR_PARAM;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return -BATTLE_ERR_BATTLEINDEX;
|
|||
|
|
|||
|
// <20><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
pEntry = BattleArray[battleindex].Side[side].Entry;
|
|||
|
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
if( pEntry[i].charaindex != -1 ){ // ƽ<>ҷ»<D2B7><C2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
cnt ++;
|
|||
|
}
|
|||
|
}
|
|||
|
return cnt;
|
|||
|
}
|
|||
|
|
|||
|
static BOOL BATTLE_CommandWait( int battleindex, int side)
|
|||
|
{
|
|||
|
int i, charaindex, BeOk=0;
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
BOOL iRet = TRUE;
|
|||
|
BOOL TimeOut = FALSE;
|
|||
|
if( BATTLE_CHECKSIDE( side ) == FALSE )return TRUE;//<2F><><EFBFBD><EFBFBD>ֵ<EFBFBD>Ƿ<EFBFBD><C7B7>ںϷ<DABA> Χ
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return TRUE;
|
|||
|
if( BattleArray[battleindex].Side[side].type == BATTLE_S_TYPE_ENEMY ) return TRUE;
|
|||
|
pEntry = BattleArray[battleindex].Side[side].Entry;
|
|||
|
|
|||
|
#ifdef _BATTLECOMMAND_TIME
|
|||
|
if( BattleArray[battleindex].PartTime > 1 &&
|
|||
|
BattleArray[battleindex].PartTime < time(NULL) ){
|
|||
|
TimeOut = TRUE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = pEntry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == TRUE ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
#ifdef _OFFLINE_SYSTEM
|
|||
|
if(CHAR_getWorkInt( charaindex, CHAR_WORK_OFFLINE ) == 1){
|
|||
|
//NPC_OffLineCommand( battleindex, charaindex, side );
|
|||
|
OffLineCommand( battleindex, charaindex, side );
|
|||
|
if(CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER
|
|||
|
#ifdef _PLAYER_NPC
|
|||
|
||CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYERNPC
|
|||
|
#endif
|
|||
|
// ||CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYERNPC
|
|||
|
){
|
|||
|
int petnum = CHAR_getInt(charaindex,CHAR_DEFAULTPET);
|
|||
|
int petindex = CHAR_getCharPet(charaindex,petnum);
|
|||
|
if(CHAR_CHECKINDEX(petindex)){
|
|||
|
//NPC_OffLineCommand( battleindex, petindex, side );
|
|||
|
OffLineCommand( battleindex, petindex, side );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
switch ( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE ) ){
|
|||
|
case BATTLE_CHARMODE_C_OK:
|
|||
|
BeOk++;
|
|||
|
case BATTLE_CHARMODE_INIT:
|
|||
|
case BATTLE_CHARMODE_RESCUE:
|
|||
|
case BATTLE_CHARMODE_WATCHINIT:
|
|||
|
break;
|
|||
|
case BATTLE_CHARMODE_C_WAIT:
|
|||
|
{
|
|||
|
#ifdef _BATTLECOMMAND_TIME
|
|||
|
if( TimeOut == TRUE ){
|
|||
|
//andy_log
|
|||
|
//print("ANDY TimeOut Exit:%d-[%s|%s]\n",
|
|||
|
//charaindex, CHAR_getUseName( charaindex),
|
|||
|
//CHAR_getChar( charaindex, CHAR_CDKEY) );
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>δ<EFBFBD><EFBFBD>ָ<EFBFBD>ǿ<EFBFBD><EFBFBD><EFBFBD>뿪ս<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
|
|||
|
CHAR_DischargeParty( charaindex, 0);//<2F><>ɢ<EFBFBD>Ŷ<EFBFBD>
|
|||
|
CHAR_setWorkInt(charaindex, CHAR_WORKFMPKFLAG, -1);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_C_OK );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_COMPELESCAPE );
|
|||
|
BATTLE_Exit( charaindex, battleindex );
|
|||
|
lssproto_B_send( getfdFromCharaIndex( charaindex ), "BU" );
|
|||
|
// CONNECT_setCloseRequest( getfdFromCharaIndex( charaindex) , 1 );
|
|||
|
break;
|
|||
|
}
|
|||
|
#endif
|
|||
|
iRet = FALSE;
|
|||
|
}
|
|||
|
break;
|
|||
|
default :
|
|||
|
BATTLE_Exit( charaindex, battleindex );
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if( BeOk > 0 ){
|
|||
|
#ifdef _BATTLECOMMAND_TIME
|
|||
|
if( BattleArray[ battleindex].PartTime <= 0 ){
|
|||
|
//<2F><><EFBFBD><EFBFBD>ս<EFBFBD><D5BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>ִ<EFBFBD><D6B4>ָ<EFBFBD><D6B8>, <20><><EFBFBD>ӳ<EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>Ϊ120<32><30>
|
|||
|
int battletimeout = getBattleTimtOut();
|
|||
|
if(battletimeout == 0) battletimeout = 120;
|
|||
|
BattleArray[battleindex].PartTime = (int)time(NULL) + battletimeout;
|
|||
|
}
|
|||
|
#endif
|
|||
|
}
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#ifdef _ITEM_ADDEXP //vincent <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
#ifdef _ITEM_ADDEQUIPEXP
|
|||
|
int BATTLE_GetExp( int charaindex, int midx )
|
|||
|
#else
|
|||
|
int BATTLE_GetExp( int charaindex )
|
|||
|
#endif
|
|||
|
{
|
|||
|
int addexp,i;
|
|||
|
int modexp=0, getexp=0;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return 0;
|
|||
|
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE) == CHAR_TYPEPET) {
|
|||
|
int ownerindex = CHAR_getWorkInt( charaindex, CHAR_WORKPLAYERINDEX);
|
|||
|
if( CHAR_CHECKINDEX( ownerindex) && CHAR_getInt( ownerindex, CHAR_ADDEXPPOWER) > 0){
|
|||
|
modexp = CHAR_getInt( ownerindex, CHAR_ADDEXPPOWER);
|
|||
|
}
|
|||
|
}else if(CHAR_getInt(charaindex,CHAR_ADDEXPPOWER) > 0){
|
|||
|
modexp = CHAR_getInt(charaindex,CHAR_ADDEXPPOWER);
|
|||
|
}
|
|||
|
|
|||
|
getexp = CHAR_getWorkInt( charaindex, CHAR_WORKGETEXP );
|
|||
|
#ifdef _ALLBLUES_LUA_2_0
|
|||
|
int exp = getexp;
|
|||
|
if (CHAR_getInt(charaindex,CHAR_LV) == getMaxLevel()){
|
|||
|
FreeCharExpSave(charaindex,exp );
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _NEWOPEN_MAXEXP
|
|||
|
if( getexp > 1000000000 ) getexp = 1000000000;
|
|||
|
#endif
|
|||
|
#ifdef _BATTLE_GOLD
|
|||
|
int gold=CHAR_getInt( charaindex , CHAR_GOLD );
|
|||
|
if((gold+CHAR_getInt( charaindex , CHAR_LV ) * getBattleGold()) > CHAR_getMaxHaveGold(charaindex))
|
|||
|
gold=CHAR_getMaxHaveGold(charaindex);
|
|||
|
else
|
|||
|
gold+=CHAR_getInt( charaindex , CHAR_LV ) * getBattleGold();
|
|||
|
CHAR_setInt( charaindex , CHAR_GOLD , gold );
|
|||
|
CHAR_complianceParameter( charaindex );
|
|||
|
CHAR_send_P_StatusString( charaindex , CHAR_P_STRING_GOLD);
|
|||
|
#endif
|
|||
|
if( getexp < 0 || CHAR_GetLevelExp( charaindex, CHAR_getInt( charaindex, CHAR_LV)+1)==-1) getexp = 0;
|
|||
|
int itemgetexp = CHAR_getWorkInt(charaindex,CHAR_WORKITEMEXP);
|
|||
|
int itemaddexp = 0;
|
|||
|
if(itemgetexp<0) itemgetexp = 0;
|
|||
|
addexp = getexp+((getexp*modexp)/100);
|
|||
|
itemaddexp = itemgetexp+((itemgetexp*modexp)/100);
|
|||
|
#ifdef _GET_BATTLE_EXP
|
|||
|
addexp*=getBattleexp();
|
|||
|
itemaddexp*=getBattleexp();
|
|||
|
#endif
|
|||
|
#ifdef _FM_EXP_ADD
|
|||
|
int flag=0;
|
|||
|
int manor[]={1041,2031,3031,4031,5031,6031,7031,8031,9031,7531};
|
|||
|
int floor=CHAR_getWorkInt( charaindex, CHAR_WORKFMFLOOR);
|
|||
|
for( i = 0 ; i < MANORNUM ; i ++ ){
|
|||
|
if(floor==manor[i]){
|
|||
|
flag=1;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if(flag==1 && CHAR_getInt( charaindex, CHAR_FMLEADERFLAG ) != FMMEMBER_APPLY){
|
|||
|
addexp += getexp * getFmAddExp()*0.1;
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _TEAM_ADDEXP
|
|||
|
int partynum ;
|
|||
|
partynum=CHAR_getPartyNum( charaindex);
|
|||
|
if (getTeamAddExp()>0) {
|
|||
|
addexp+= getexp*(partynum-1)*getTeamAddExp()*0.1;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _ITEM_ADDEQUIPEXP
|
|||
|
if( CHAR_CHECKINDEX( midx ) ){
|
|||
|
for( i = 0 ; i < CHAR_EQUIPPLACENUM ; i ++ ){
|
|||
|
int id = CHAR_getItemIndex(midx,i);//<2F><><EFBFBD><EFBFBD>id
|
|||
|
if( ITEM_CHECKINDEX(id) ){
|
|||
|
char *arg,*P;
|
|||
|
arg = ITEM_getChar(id, ITEM_ARGUMENT );//<2F><><EFBFBD>߲<EFBFBD><DFB2><EFBFBD>
|
|||
|
if( (P = strstr( arg, "EXPUP" )) ){
|
|||
|
if( (P = strstr( arg, "<EFBFBD><EFBFBD>" )) ){//ֻ<><D6BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ч
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE) == CHAR_TYPEPLAYER ){
|
|||
|
addexp += getexp*atoi(P+=2)*0.01;
|
|||
|
itemaddexp += itemgetexp*atoi(P+=2)*0.01;
|
|||
|
}
|
|||
|
}
|
|||
|
else if( (P = strstr( arg, "<EFBFBD><EFBFBD>" )) ){//ֻ<>Գ<EFBFBD><D4B3><EFBFBD>Ч
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE) == CHAR_TYPEPET
|
|||
|
&& (CHAR_getInt( midx, CHAR_RIDEPET) != charaindex ) )
|
|||
|
addexp += getexp*atoi(P+=2)*0.01;
|
|||
|
}
|
|||
|
else if( (P = strstr( arg, "<EFBFBD><EFBFBD>" )) ){//ֻ<><D6BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ч
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE) == CHAR_TYPEPET
|
|||
|
&& (CHAR_getInt( midx, CHAR_RIDEPET) == charaindex ) )
|
|||
|
addexp += getexp*atoi(P+=2)*0.01;
|
|||
|
}
|
|||
|
else{
|
|||
|
P = strstr( arg, "EXPUP" );
|
|||
|
addexp += getexp*atoi(P+=5)*0.01;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _ITEM_ADDPETEXP
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE) == CHAR_TYPEPET )
|
|||
|
if( CHAR_getInt( charaindex, CHAR_PETID) == 1163 )
|
|||
|
addexp = 0;
|
|||
|
|
|||
|
#endif
|
|||
|
addexp = (addexp<0)?0:addexp;
|
|||
|
if(itemaddexp>0){
|
|||
|
ITEM_ExpLvBase(charaindex,itemaddexp);
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKITEMEXP,0);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
if( CHAR_getInt( charaindex, CHAR_LV) >= CHAR_MAXUPLEVEL ) addexp = 0;
|
|||
|
#ifdef _VIP_BATTLE_EXP
|
|||
|
if(CHAR_getInt( charaindex, CHAR_WHICHTYPE) == CHAR_TYPEPLAYER ){
|
|||
|
if(CHAR_getInt( charaindex, CHAR_VIPRIDE) > 0 || CHAR_getInt( charaindex, CHAR_NVIPEXP) > 0){
|
|||
|
addexp = addexp * getVipBattleExp();
|
|||
|
}
|
|||
|
}
|
|||
|
if(CHAR_getInt( charaindex, CHAR_WHICHTYPE) == CHAR_TYPEPET ){
|
|||
|
if(CHAR_getInt( midx, CHAR_VIPRIDE) > 0 || CHAR_getInt( midx, CHAR_NVIPEXP) > 0){
|
|||
|
addexp = addexp * getVipBattleExp();
|
|||
|
}
|
|||
|
}
|
|||
|
#else
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE) == CHAR_TYPEPLAYER
|
|||
|
&& CHAR_getInt( charaindex, CHAR_VIPRIDE) > 0) addexp = addexp * 2;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE) == CHAR_TYPEPET
|
|||
|
&& CHAR_getInt( midx, CHAR_VIPRIDE) > 0) addexp = addexp * 2;
|
|||
|
#endif
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKGETEXP, addexp );//<2F>ش<EFBFBD>CHAR_WORKGETEXP
|
|||
|
|
|||
|
CHAR_AddMaxExp( charaindex, addexp);
|
|||
|
|
|||
|
return addexp;
|
|||
|
}
|
|||
|
#else
|
|||
|
|
|||
|
#ifdef _ITEM_ADDEQUIPEXP
|
|||
|
int BATTLE_GetExp( int charaindex, int midx )
|
|||
|
#else
|
|||
|
int BATTLE_GetExp( int charaindex )
|
|||
|
#endif
|
|||
|
{
|
|||
|
int addexp, nowexp;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return 0;
|
|||
|
nowexp = CHAR_getInt( charaindex, CHAR_EXP );
|
|||
|
addexp = CHAR_getWorkInt( charaindex, CHAR_WORKGETEXP );
|
|||
|
// shan 11/27 10^9 1224160000
|
|||
|
CHAR_AddMaxExp( charaindex, addexp);
|
|||
|
return addexp;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
int BATTLE_DpCalc( int battleindex )
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pLooseEntry, *pWinEntry;
|
|||
|
int winside, looseside, i, charaindex, dpadd, dpall, num = 0;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
|
|||
|
winside = BattleArray[battleindex].winside;
|
|||
|
looseside = 1 - winside;
|
|||
|
if( winside != -1 && winside != 1 )return BATTLE_ERR_PARAM;
|
|||
|
|
|||
|
// <20><><EFBFBD>Ͱ<EFBFBD><CDB0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
dpall = 0;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> ë<>뵤
|
|||
|
pLooseEntry = BattleArray[battleindex].Side[looseside].Entry;
|
|||
|
for( i = 0 ; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = pLooseEntry[i].charaindex;
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>½<EFBFBD><C2BD><EFBFBD><EFBFBD> <20><>
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER )continue;
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
dpadd = CHAR_getInt( charaindex, CHAR_DUELPOINT ) * DUELPOINT_RATE;
|
|||
|
// <20><><EFBFBD><EFBFBD> <20>巴 ëѨ<C3AB>̹ϵ<CCB9>ɬ<EFBFBD><C9AC>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKGETEXP,
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKGETEXP) - dpadd );
|
|||
|
// <20><><EFBFBD>Ͱ<EFBFBD><CDB0><EFBFBD><EFBFBD><EFBFBD>ң
|
|||
|
dpall += dpadd;
|
|||
|
}
|
|||
|
|
|||
|
// <20><><EFBFBD>ձ<EFBFBD> <20><><EFBFBD><EFBFBD>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ü<EFBFBD> ë<><C3AB>ң
|
|||
|
dpall += BattleArray[battleindex].Side[winside].common_dp;
|
|||
|
|
|||
|
pWinEntry = BattleArray[battleindex].Side[winside].Entry;
|
|||
|
for( num = 0,i = 0 ; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = pWinEntry[i].charaindex;
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>½<EFBFBD><C2BD><EFBFBD><EFBFBD> <20><>
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER )continue;
|
|||
|
num++;
|
|||
|
}
|
|||
|
// ئ<>⾮ <20><><EFBFBD>õ<D7BB><C3B5>岾<EFBFBD><E5B2BE><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>
|
|||
|
if( num <= 0 )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
dpadd = dpall / num;
|
|||
|
if( dpadd <= 0 )dpadd = 1; // <20><>ƥ<EFBFBD>֨෴ܸ<E0B7B4><DCB8><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
for( num = 0,i = 0 ; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = pWinEntry[i].charaindex;
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>½<EFBFBD><C2BD><EFBFBD><EFBFBD> <20><>
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER )continue;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD> <20>巴 ëɬ<C3AB><C9AC>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKGETEXP,
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKGETEXP) + dpadd );
|
|||
|
}
|
|||
|
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
//#define RS_LIST_MAX 4 // <20>ݱ<EFBFBD><DDB1><EFBFBD><EFBFBD>о<EFBFBD> <20><><EFBFBD><EFBFBD>˪<EFBFBD>¾<EFBFBD>
|
|||
|
#define RS_LIST_MAX 5
|
|||
|
typedef struct{
|
|||
|
int num;
|
|||
|
int exp;
|
|||
|
int levelup;
|
|||
|
}RS_LIST;
|
|||
|
|
|||
|
int BATTLE_GetDuelPoint(
|
|||
|
int battleindex, // <20><> <20>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int side, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><>
|
|||
|
int num // <20><><EFBFBD>з<EFBFBD> <20><><EFBFBD><EFBFBD> <20><>ƽ<EFBFBD>ҷ¾<D2B7>
|
|||
|
)
|
|||
|
{
|
|||
|
char szBuffer[1024]="";
|
|||
|
int charaindex;
|
|||
|
int dpnow, dpadd, vpmin;
|
|||
|
int fd;
|
|||
|
int fl = 0, x = 0, y = 0;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
if( BATTLE_CHECKSIDE( side ) == FALSE )return BATTLE_ERR_PARAM;
|
|||
|
if( num < 0 || num >= BATTLE_ENTRY_MAX )return BATTLE_ERR_PARAM;
|
|||
|
charaindex = BattleArray[battleindex].Side[side].Entry[num].charaindex;
|
|||
|
int playfloor = CHAR_getInt(charaindex, CHAR_FLOOR);
|
|||
|
if(playfloor==11111)vpmin = getBalltePoint(0)*2;
|
|||
|
if(playfloor==22222)vpmin = getBalltePoint(1)*2;
|
|||
|
if(playfloor==33333)vpmin = getBalltePoint(2)*2;
|
|||
|
if(playfloor==44444)vpmin = getBalltePoint(3)*2;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return BATTLE_ERR_PARAM;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPET ){
|
|||
|
return 0;
|
|||
|
}
|
|||
|
if( BattleArray[battleindex].Side[side].type != BATTLE_S_TYPE_PLAYER ){
|
|||
|
return 0;
|
|||
|
}
|
|||
|
dpadd = CHAR_getWorkInt( charaindex, CHAR_WORKGETEXP );
|
|||
|
if( dpadd == 0 ){
|
|||
|
dpadd = 0; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
}else
|
|||
|
if( dpadd < 0 ){
|
|||
|
dpadd = min( -1, dpadd ); // <20><>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD>֨෴<D6A8><E0B7B4><EFBFBD>յ<EFBFBD>
|
|||
|
}else{
|
|||
|
dpadd = max( 1, dpadd ); // <20><>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD>֨෴<D6A8><E0B7B4><EFBFBD>յ<EFBFBD>
|
|||
|
}
|
|||
|
if(playfloor==11111||
|
|||
|
playfloor==22222||
|
|||
|
playfloor==33333||
|
|||
|
playfloor==44444)
|
|||
|
{
|
|||
|
int fd = getfdFromCharaIndex( charaindex);
|
|||
|
char* id = CHAR_getChar( charaindex, CHAR_CDKEY);
|
|||
|
dpnow = sasql_vippoint(id,0,0) + dpadd; //PK<50><4B>Ա<EFBFBD><D4B1>
|
|||
|
dpnow = max( dpnow, 0 ); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڻ<EFBFBD>Ա<EFBFBD><D4B1>
|
|||
|
sasql_vippoint( id, dpadd, 1 ); //д<><D0B4><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if(dpnow<vpmin)
|
|||
|
{
|
|||
|
CHAR_getElderPosition(CHAR_getInt(charaindex, CHAR_LASTTALKELDER), &fl, &x, &y);
|
|||
|
CHAR_warpToSpecificPoint(charaindex, fl, x, y);
|
|||
|
}
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
dpnow = CHAR_getInt( charaindex, CHAR_DUELPOINT ) + dpadd;
|
|||
|
dpnow = max( dpnow, 0 );
|
|||
|
|
|||
|
CHAR_setInt( charaindex, CHAR_DUELPOINT, min( dpnow, CHAR_MAXDUELPOINT ) );
|
|||
|
if(BattleArray[battleindex].type == BATTLE_TYPE_P_vs_P){
|
|||
|
CHAR_setInt(charaindex,CHAR_DUELBATTLECOUNT,CHAR_getInt(charaindex,CHAR_DUELBATTLECOUNT)+1); //PK<50><4B>+1
|
|||
|
if(dpadd == 0){
|
|||
|
}else if(dpadd<0){
|
|||
|
CHAR_setInt(charaindex,CHAR_DUELLOSECOUNT,CHAR_getInt(charaindex,CHAR_DUELLOSECOUNT)+1); //PK<50><4B><EFBFBD><EFBFBD>+1
|
|||
|
CHAR_setInt(charaindex,CHAR_DUELSTWINCOUNT,0); //PK<50><4B>ʤΪ0
|
|||
|
}else{
|
|||
|
CHAR_setInt(charaindex,CHAR_DUELWINCOUNT,CHAR_getInt(charaindex,CHAR_DUELWINCOUNT)+1); //PKӮ<4B><D3AE>+1
|
|||
|
CHAR_setInt(charaindex,CHAR_DUELSTWINCOUNT,CHAR_getInt(charaindex,CHAR_DUELSTWINCOUNT)+1); //PK<50><4B>Ӯ<EFBFBD><D3AE>+1
|
|||
|
if(CHAR_getInt(charaindex,CHAR_DUELMAXSTWINCOUNT)<CHAR_getInt(charaindex,CHAR_DUELSTWINCOUNT))
|
|||
|
CHAR_setInt(charaindex,CHAR_DUELMAXSTWINCOUNT,CHAR_getInt(charaindex,CHAR_DUELSTWINCOUNT)); //PK<50><4B><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӯ
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
szBuffer[0] = 0;
|
|||
|
{
|
|||
|
char szAdd[64], szNow[64];
|
|||
|
cnv10to62( dpadd, szAdd, sizeof( szAdd ) );
|
|||
|
cnv10to62( dpnow, szNow, sizeof( szNow ) );
|
|||
|
snprintf( szBuffer, sizeof( szBuffer ),
|
|||
|
"%s|%s|", szAdd, szNow );
|
|||
|
}
|
|||
|
|
|||
|
fd = getfdFromCharaIndex( charaindex );
|
|||
|
lssproto_RD_send( fd, szBuffer );
|
|||
|
|
|||
|
CHAR_send_DpDBUpdate( charaindex );
|
|||
|
#ifndef _NET_REDUCESEND
|
|||
|
CHAR_send_DpDBUpdate_AddressBook( charaindex, TRUE );
|
|||
|
#endif
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_GetExpGold(
|
|||
|
int battleindex, // <20><> <20>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int side, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><>
|
|||
|
int num // <20><><EFBFBD>з<EFBFBD> <20><><EFBFBD><EFBFBD> <20><>ƽ<EFBFBD>ҷ¾<D2B7>
|
|||
|
)
|
|||
|
{
|
|||
|
BATTLE_ENTRY *pEntryChara;
|
|||
|
char szBuffer[1024]="", szItemString[512], szEscItemString[256];
|
|||
|
int charaindex, UpLevel, petindex, i, j, itemindex = -1;
|
|||
|
int rsCnt = 0;
|
|||
|
RS_LIST aRsList[RS_LIST_MAX];
|
|||
|
int itemgroup[CHAR_MAXITEMHAVE-CHAR_STARTITEMARRAY];
|
|||
|
int itemnum = 0;
|
|||
|
memset( aRsList, 0, sizeof( aRsList ) );
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
if( BATTLE_CHECKSIDE( side ) == FALSE )return BATTLE_ERR_PARAM;
|
|||
|
if( num < 0 || num >= BATTLE_ENTRY_MAX )return BATTLE_ERR_PARAM;
|
|||
|
charaindex = BattleArray[battleindex].Side[side].Entry[num].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )return BATTLE_ERR_PARAM;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == TRUE ){
|
|||
|
return 0;
|
|||
|
}
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER ){
|
|||
|
#ifdef _PLAYER_NPC
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYERNPC
|
|||
|
|| CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYERPETNPC){
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == FALSE ){
|
|||
|
#ifdef _ITEM_ADDEQUIPEXP
|
|||
|
BATTLE_GetExp( charaindex , charaindex );
|
|||
|
#else
|
|||
|
BATTLE_GetExp( charaindex );
|
|||
|
#endif
|
|||
|
int UpLevel = CHAR_LevelUpCheck( charaindex , -1);
|
|||
|
int i;
|
|||
|
for( i = 0; i < UpLevel; i ++ ){
|
|||
|
CHAR_PetLevelUp( charaindex );
|
|||
|
CHAR_PetAddVariableAi( charaindex, AI_FIX_PETLEVELUP );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
return 0;
|
|||
|
}
|
|||
|
//CAX
|
|||
|
/* if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPET ){
|
|||
|
return 0;
|
|||
|
}
|
|||
|
if( BattleArray[battleindex].Side[side].type != BATTLE_S_TYPE_PLAYER ){
|
|||
|
return 0;
|
|||
|
}*/
|
|||
|
pEntryChara = &BattleArray[battleindex].Side[side].Entry[num];
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == FALSE ){
|
|||
|
#ifdef _ITEM_ADDEQUIPEXP
|
|||
|
BATTLE_GetExp( charaindex , charaindex );
|
|||
|
#else
|
|||
|
BATTLE_GetExp( charaindex );
|
|||
|
#endif
|
|||
|
if( getBattleDebugMsg( ) != 0 ){
|
|||
|
snprintf( szBuffer, sizeof(szBuffer),
|
|||
|
"(%s) <20>õ<EFBFBD> EXP %d",
|
|||
|
CHAR_getUseName( charaindex ),
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKGETEXP )
|
|||
|
);
|
|||
|
BATTLE_talkToCli( charaindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
UpLevel = CHAR_LevelUpCheck( charaindex , -1);
|
|||
|
if( UpLevel > 0 ){
|
|||
|
aRsList[rsCnt].levelup = 1;
|
|||
|
}else{
|
|||
|
aRsList[rsCnt].levelup = 0;
|
|||
|
}
|
|||
|
aRsList[rsCnt].num = -2;
|
|||
|
aRsList[rsCnt].exp = CHAR_getWorkInt( charaindex, CHAR_WORKGETEXP );
|
|||
|
rsCnt ++;
|
|||
|
if( UpLevel > 0 ){
|
|||
|
int work;
|
|||
|
|
|||
|
if( getBattleDebugMsg( ) != 0 ){
|
|||
|
snprintf( szBuffer, sizeof(szBuffer),
|
|||
|
"(%s) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %d",
|
|||
|
CHAR_getUseName( charaindex ),
|
|||
|
CHAR_getInt( charaindex, CHAR_LV )
|
|||
|
);
|
|||
|
BATTLE_talkToCli( charaindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
#ifdef _SKILLUPPOINT_CF
|
|||
|
CHAR_setInt( charaindex, CHAR_SKILLUPPOINT,
|
|||
|
CHAR_getInt( charaindex, CHAR_SKILLUPPOINT) + UpLevel*getSkup());
|
|||
|
#else
|
|||
|
CHAR_setInt( charaindex, CHAR_SKILLUPPOINT,
|
|||
|
CHAR_getInt( charaindex, CHAR_SKILLUPPOINT) + UpLevel*3);
|
|||
|
#endif
|
|||
|
work = CHAR_getInt( charaindex, CHAR_CHARM );
|
|||
|
work += CH_FIX_PLAYERLEVELUP;
|
|||
|
CHAR_setInt( charaindex, CHAR_CHARM, min( 100, work ) );
|
|||
|
CHAR_complianceParameter( charaindex );
|
|||
|
CHAR_send_P_StatusString( charaindex ,
|
|||
|
CHAR_P_STRING_LV|CHAR_P_STRING_NEXTEXP|CHAR_P_STRING_DUELPOINT
|
|||
|
);
|
|||
|
CHAR_sendCToArroundCharacter( CHAR_getWorkInt( charaindex, CHAR_WORKOBJINDEX ) );
|
|||
|
CHAR_PartyUpdate( charaindex, CHAR_N_STRING_LV );
|
|||
|
#ifndef _NET_REDUCESEND
|
|||
|
CHAR_send_DpDBUpdate_AddressBook( charaindex, TRUE );
|
|||
|
#endif
|
|||
|
}
|
|||
|
for( i = 0; i < CHAR_MAXPETHAVE; i ++ ){
|
|||
|
petindex = CHAR_getCharPet( charaindex, i );
|
|||
|
if( CHAR_CHECKINDEX( petindex ) == FALSE )continue;
|
|||
|
if( CHAR_getFlg( petindex, CHAR_ISDIE ) == TRUE )continue;
|
|||
|
if( CHAR_getWorkInt( petindex, CHAR_WORKGETEXP ) <= 0 ){
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
sprintf( szBuffer, "K%d", i );
|
|||
|
CHAR_sendStatusString( charaindex , szBuffer );
|
|||
|
|
|||
|
continue;
|
|||
|
}
|
|||
|
#ifdef _ITEM_ADDEQUIPEXP
|
|||
|
BATTLE_GetExp( petindex, charaindex );
|
|||
|
#else
|
|||
|
BATTLE_GetExp( petindex );
|
|||
|
#endif
|
|||
|
if( getBattleDebugMsg( ) != 0 ){
|
|||
|
snprintf( szBuffer, sizeof(szBuffer),
|
|||
|
"(%s) <20>õ<EFBFBD> EXP %d",
|
|||
|
CHAR_getUseName( petindex ),
|
|||
|
CHAR_getWorkInt( petindex, CHAR_WORKGETEXP )
|
|||
|
);
|
|||
|
BATTLE_talkToCli( charaindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
UpLevel = CHAR_LevelUpCheck( petindex , charaindex);
|
|||
|
if( UpLevel > 0 ){
|
|||
|
if( getBattleDebugMsg( ) != 0 ){
|
|||
|
snprintf( szBuffer, sizeof(szBuffer),
|
|||
|
"(%s) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %d",
|
|||
|
CHAR_getUseName( petindex ),
|
|||
|
CHAR_getInt( petindex, CHAR_LV )
|
|||
|
);
|
|||
|
BATTLE_talkToCli( charaindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
for( j = 0; j < UpLevel; j ++ ){
|
|||
|
CHAR_PetLevelUp( petindex );
|
|||
|
CHAR_PetAddVariableAi( petindex, AI_FIX_PETLEVELUP );
|
|||
|
}
|
|||
|
aRsList[rsCnt].levelup = 1;
|
|||
|
}else{
|
|||
|
aRsList[rsCnt].levelup = 0;
|
|||
|
}
|
|||
|
aRsList[rsCnt].num = i;
|
|||
|
aRsList[rsCnt].exp = CHAR_getWorkInt( petindex, CHAR_WORKGETEXP );
|
|||
|
rsCnt ++;
|
|||
|
CHAR_complianceParameter( petindex );
|
|||
|
if( UpLevel > 0 ){
|
|||
|
sprintf( szBuffer, "K%d", i );
|
|||
|
CHAR_sendStatusString( charaindex , szBuffer );
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
szItemString[0] = 0;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == FALSE
|
|||
|
#ifdef _OFFLINE_SYSTEM
|
|||
|
&& CHAR_getWorkInt( charaindex, CHAR_WORK_OFFLINE ) == 0
|
|||
|
#endif
|
|||
|
){
|
|||
|
for( i = 0; i < GETITEM_MAX; i ++ ){
|
|||
|
int ItemGet = FALSE;
|
|||
|
szEscItemString[0] = 0;
|
|||
|
itemindex = pEntryChara->getitem[i];
|
|||
|
if( itemindex < 0 ){
|
|||
|
itemindex = -1;
|
|||
|
}else if( CHAR_findEmptyItemBox( charaindex ) >= 0 ){
|
|||
|
int ret = CHAR_addItemSpecificItemIndex(charaindex,itemindex);
|
|||
|
if( 0 <= ret && ret < CHAR_EQUIPPLACENUM ){
|
|||
|
//print( "itemget err: <20><><EFBFBD><EFBFBD><EFBFBD>ﲻ<EFBFBD><EFB2BB>ȡ<EFBFBD><C8A1>item(%s)(%d)(%s)\n",
|
|||
|
//CHAR_getUseName( charaindex ),
|
|||
|
//ret,
|
|||
|
//ITEM_getAppropriateName(itemindex)
|
|||
|
//);
|
|||
|
}
|
|||
|
if( !CHAR_CHECKITEMINDEX( charaindex, ret) ){
|
|||
|
ItemGet = FALSE;
|
|||
|
}else{
|
|||
|
ItemGet = TRUE;
|
|||
|
itemgroup[itemnum] = ret;
|
|||
|
itemnum ++;
|
|||
|
}
|
|||
|
}
|
|||
|
if( ItemGet == TRUE ){
|
|||
|
if( getBattleDebugMsg( ) != 0 ){
|
|||
|
snprintf( szBuffer, sizeof(szBuffer),
|
|||
|
"ʰ<EFBFBD><EFBFBD>(%s)",
|
|||
|
ITEM_getAppropriateName(itemindex) );
|
|||
|
BATTLE_talkToCli( charaindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
|
|||
|
// LogItem(
|
|||
|
// CHAR_getChar( charaindex, CHAR_NAME ),
|
|||
|
// CHAR_getChar( charaindex, CHAR_CDKEY ),
|
|||
|
//#ifdef _add_item_log_name // WON ADD <20><>item<65><6D>log<6F><67><EFBFBD><EFBFBD><EFBFBD><EFBFBD>item<65><6D><EFBFBD><EFBFBD>
|
|||
|
// itemindex,
|
|||
|
//#else
|
|||
|
// ITEM_getInt( itemindex, ITEM_ID ), /* ʧ<><CAA7> ة į */
|
|||
|
//#endif
|
|||
|
// "BattleGet(ս<><D5BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>õĵ<C3B5><C4B5><EFBFBD>)",
|
|||
|
// CHAR_getInt( charaindex,CHAR_FLOOR),
|
|||
|
// CHAR_getInt( charaindex,CHAR_X ),
|
|||
|
// CHAR_getInt( charaindex,CHAR_Y ),
|
|||
|
// ITEM_getChar(itemindex, ITEM_UNIQUECODE),// shan 2001/12/14
|
|||
|
// ITEM_getChar( itemindex, ITEM_NAME),
|
|||
|
// ITEM_getInt( itemindex, ITEM_ID)
|
|||
|
// );
|
|||
|
makeEscapeString( ITEM_getAppropriateName(itemindex),
|
|||
|
szEscItemString,
|
|||
|
sizeof( szEscItemString ) );
|
|||
|
strncat( szItemString, szEscItemString, sizeof( szItemString ) );
|
|||
|
pEntryChara->getitem[i] = -1;
|
|||
|
}else{
|
|||
|
if( itemindex >= 0 ){
|
|||
|
ITEM_endExistItemsOne(itemindex);
|
|||
|
}else{
|
|||
|
}
|
|||
|
pEntryChara->getitem[i] = -1;
|
|||
|
}
|
|||
|
strncat( szItemString, "|", sizeof( szItemString ) );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
szBuffer[0] = 0;
|
|||
|
for( i = 0; i < RS_LIST_MAX; i ++ ){
|
|||
|
char szWork[256], sz62[64];
|
|||
|
szWork[0] = 0;
|
|||
|
if( aRsList[i].exp > 0 || i == 0 ){
|
|||
|
cnv10to62( aRsList[i].exp, sz62, sizeof( sz62 ) );
|
|||
|
snprintf( szWork, sizeof( szWork ),
|
|||
|
"%d|%d|%s", aRsList[i].num,
|
|||
|
aRsList[i].levelup,
|
|||
|
sz62
|
|||
|
);
|
|||
|
}
|
|||
|
strncat( szBuffer, szWork, sizeof( szBuffer ) );
|
|||
|
strncat( szBuffer, ",", sizeof( szBuffer ) );
|
|||
|
}
|
|||
|
strncat( szBuffer, szItemString, sizeof( szBuffer ) );
|
|||
|
{
|
|||
|
int fd;
|
|||
|
fd = getfdFromCharaIndex( charaindex );
|
|||
|
lssproto_RS_send( fd, szBuffer );
|
|||
|
}
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_GetProfit( int battleindex, int side, int num )
|
|||
|
{
|
|||
|
if( BattleArray[battleindex].dpbattle == 1 ){
|
|||
|
return BATTLE_GetDuelPoint( battleindex, side, num );
|
|||
|
}else{
|
|||
|
return BATTLE_GetExpGold( battleindex, side, num );
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_FinishSet( battleindex )
|
|||
|
{
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
BattleArray[battleindex].mode = BATTLE_MODE_FINISH;
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
static int BATTLE_Finish( int battleindex )
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_Finish";
|
|||
|
BATTLE *pBattle;
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
int i,charaindex, j;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
if( BattleArray[battleindex].winside == -1
|
|||
|
&& BattleArray[battleindex].type == BATTLE_TYPE_P_vs_E
|
|||
|
&& BattleArray[battleindex].WinFunc != NULL){
|
|||
|
BattleArray[battleindex].WinFunc( battleindex,
|
|||
|
BattleArray[battleindex].createindex );
|
|||
|
}
|
|||
|
#ifdef _ALLBLUES_LUA
|
|||
|
if( BattleArray[battleindex].type == BATTLE_TYPE_P_vs_E ){
|
|||
|
if(CHAR_CHECKINDEX( BattleArray[battleindex].createindex ) == TRUE){
|
|||
|
CHAR_setWorkInt( BattleArray[battleindex].createindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_NONE );
|
|||
|
CHAR_sendBattleEffect( BattleArray[battleindex].createindex, OFF);
|
|||
|
if( BattleArray[battleindex].winside == -1){
|
|||
|
RunCharBattleOverEvent( BattleArray[battleindex].createindex, battleindex, 1);
|
|||
|
}else{
|
|||
|
RunCharBattleOverEvent( BattleArray[battleindex].createindex, battleindex, 0);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _BATTLE_PK
|
|||
|
if(CHAR_getInt( BattleArray[battleindex].battleindex, CHAR_BATTLEPK)==TRUE ||
|
|||
|
CHAR_getInt( BattleArray[battleindex].leaderindex, CHAR_BATTLEPK)==TRUE){
|
|||
|
int winindex,lostindex;
|
|||
|
if( BattleArray[battleindex].type == BATTLE_TYPE_P_vs_P){
|
|||
|
if( BattleArray[battleindex].winside == -1 ){
|
|||
|
winindex=BattleArray[battleindex].leaderindex;
|
|||
|
lostindex=BattleArray[battleindex].rivalindex;
|
|||
|
}else{
|
|||
|
winindex=BattleArray[battleindex].rivalindex;
|
|||
|
lostindex=BattleArray[battleindex].leaderindex;
|
|||
|
}
|
|||
|
|
|||
|
if(CHAR_CHECKINDEX(lostindex) != FALSE){
|
|||
|
int fl = 0, x = 0, y = 0;
|
|||
|
CHAR_getElderPosition(CHAR_getInt(lostindex, CHAR_LASTTALKELDER), &fl, &x, &y);
|
|||
|
CHAR_warpToSpecificPoint(lostindex, fl, x, y);
|
|||
|
CHAR_DischargeParty( lostindex, 0);
|
|||
|
CHAR_setInt( winindex, CHAR_BATTLEPK, FALSE);
|
|||
|
CHAR_setInt( lostindex, CHAR_BATTLEPK, FALSE);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _AUTO_PK
|
|||
|
if(AutoPk_PKTimeGet()<=0){
|
|||
|
if(CHAR_getInt(BattleArray[battleindex].rivalindex, CHAR_FLOOR)==20000 &&
|
|||
|
CHAR_getInt(BattleArray[battleindex].leaderindex, CHAR_FLOOR)==20000){
|
|||
|
|
|||
|
if(BattleArray[battleindex].type != BATTLE_TYPE_WATCH
|
|||
|
&& BattleArray[battleindex].mode != BATTLE_MODE_WATCHBC
|
|||
|
&& CHAR_getInt(BattleArray[battleindex].leaderindex, CHAR_AUTOPK) != -1
|
|||
|
&& CHAR_getInt(BattleArray[battleindex].rivalindex, CHAR_AUTOPK) != -1){
|
|||
|
int winindex,lostindex;
|
|||
|
char wincdkey[CDKEYLEN],winname[CHARNAMELEN];
|
|||
|
char lostcdkey[CDKEYLEN],lostname[CHARNAMELEN];
|
|||
|
if( BattleArray[battleindex].type == BATTLE_TYPE_P_vs_P && BattleArray[battleindex].winside == -1 ){
|
|||
|
winindex=BattleArray[battleindex].leaderindex;
|
|||
|
strcpysafe(wincdkey,sizeof(wincdkey),BattleArray[battleindex].leadercdkey);
|
|||
|
strcpysafe(winname,sizeof(winname),BattleArray[battleindex].leadername);
|
|||
|
lostindex=BattleArray[battleindex].rivalindex;
|
|||
|
strcpysafe(lostcdkey,sizeof(lostcdkey),BattleArray[battleindex].rivalcdkey);
|
|||
|
strcpysafe(lostname,sizeof(lostname),BattleArray[battleindex].rivalname);
|
|||
|
}else{
|
|||
|
winindex=BattleArray[battleindex].rivalindex;
|
|||
|
strcpysafe(wincdkey,sizeof(wincdkey),BattleArray[battleindex].rivalcdkey);
|
|||
|
strcpysafe(winname,sizeof(winname),BattleArray[battleindex].rivalname);
|
|||
|
lostindex=BattleArray[battleindex].leaderindex;
|
|||
|
strcpysafe(lostcdkey,sizeof(lostcdkey),BattleArray[battleindex].leadercdkey);
|
|||
|
strcpysafe(lostname,sizeof(lostname),BattleArray[battleindex].leadername);
|
|||
|
}
|
|||
|
int i, fl = 0, x = 0, y = 0, num=0;
|
|||
|
int playernum = CHAR_getPlayerMaxNum();
|
|||
|
char token[64],token2[128];
|
|||
|
if(CHAR_CHECKINDEX(lostindex) != FALSE){
|
|||
|
CHAR_getElderPosition(CHAR_getInt(lostindex, CHAR_LASTTALKELDER), &fl, &x, &y);
|
|||
|
CHAR_warpToSpecificPoint(lostindex, fl, x, y);
|
|||
|
CHAR_DischargeParty( lostindex, 0);
|
|||
|
}
|
|||
|
if(CHAR_CHECKINDEX(winindex) != FALSE){
|
|||
|
CHAR_setInt(winindex,CHAR_AUTOPK,CHAR_getInt(winindex,CHAR_AUTOPK)+1);
|
|||
|
sprintf(token,"[<5B><><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>]<5D><>%s սʤ <20><><EFBFBD><EFBFBD> %s ս<><D5BD>", winname, lostname);
|
|||
|
autopkcnt++;
|
|||
|
int autopkvigor = getAutoPkVigorPkNum()*CHAR_getInt(lostindex,CHAR_AUTOPK)+getAutoPkVigorPkCnt()*autopkcnt;
|
|||
|
CHAR_setInt(lostindex,CHAR_VIGOR,CHAR_getInt(lostindex,CHAR_VIGOR)+autopkvigor);
|
|||
|
sprintf(token2,"[<5B><><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>]<5D><><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD>ɱ<EFBFBD><C9B1><EFBFBD><EFBFBD> %d <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %d <20><><EFBFBD>û<EFBFBD><C3BB><EFBFBD>%d",lostname,CHAR_getInt(lostindex,CHAR_AUTOPK),autopkcnt,autopkvigor);
|
|||
|
}else{
|
|||
|
sprintf(token,"[<5B><><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>]<5D><>%s <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD>", winname, lostname);
|
|||
|
autopkcnt++;
|
|||
|
int autopkvigor = getAutoPkVigorPkNum()*CHAR_getInt(lostindex,CHAR_AUTOPK)+getAutoPkVigorPkCnt()*autopkcnt;
|
|||
|
CHAR_setInt(lostindex,CHAR_VIGOR,CHAR_getInt(lostindex,CHAR_VIGOR)+autopkvigor);
|
|||
|
sprintf(token2,"[<5B><><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>]<5D><><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD>ɱ<EFBFBD><C9B1><EFBFBD><EFBFBD> %d <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %d <20><><EFBFBD>û<EFBFBD><C3BB><EFBFBD>%d",lostname,CHAR_getInt(lostindex,CHAR_AUTOPK),autopkcnt,autopkvigor);
|
|||
|
}
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
if(CHAR_getInt(i, CHAR_FLOOR) == 20000 )
|
|||
|
if(CHAR_getInt(i,CHAR_AUTOPK)!=-1){
|
|||
|
charaindex=i;
|
|||
|
num++;
|
|||
|
}
|
|||
|
CHAR_talkToCli( i, -1, token, CHAR_COLORCYAN );
|
|||
|
CHAR_talkToCli( i, -1, token2, CHAR_COLORCYAN );
|
|||
|
}
|
|||
|
#ifdef _NONUM_AUTOPK
|
|||
|
if(CHAR_CHECKINDEX(winindex) != FALSE){
|
|||
|
NPC_AUTOPKHealerTalked( winindex );
|
|||
|
}
|
|||
|
if(num==4){
|
|||
|
AutoPk_ChampionShipSet(lostcdkey, lostname, CHAR_getInt(lostindex,CHAR_AUTOPK), 4);
|
|||
|
}else if(num==3){
|
|||
|
AutoPk_ChampionShipSet(lostcdkey, lostname, CHAR_getInt(lostindex,CHAR_AUTOPK), 3);
|
|||
|
}else if(num==2){
|
|||
|
AutoPk_ChampionShipSet(lostcdkey, lostname, CHAR_getInt(lostindex,CHAR_AUTOPK), 2);
|
|||
|
}else if(num==1){
|
|||
|
int fl = 0, x = 0, y = 0;
|
|||
|
if(CHAR_CHECKINDEX(winindex) == FALSE){
|
|||
|
lostindex=winindex;
|
|||
|
strcpysafe(lostcdkey,sizeof(lostcdkey),wincdkey);
|
|||
|
strcpysafe(lostname,sizeof(lostname),winname);
|
|||
|
winindex=charaindex;
|
|||
|
strcpysafe(wincdkey,sizeof(wincdkey),CHAR_getChar( charaindex, CHAR_CDKEY));
|
|||
|
strcpysafe(winname,sizeof(winname),CHAR_getChar( charaindex, CHAR_NAME));
|
|||
|
}
|
|||
|
CHAR_getElderPosition(CHAR_getInt(winindex, CHAR_LASTTALKELDER), &fl, &x, &y);
|
|||
|
CHAR_warpToSpecificPoint(winindex, fl, x, y);
|
|||
|
AutoPk_ChampionShipSet( wincdkey, winname, CHAR_getInt(winindex,CHAR_AUTOPK),0);
|
|||
|
AutoPk_ChampionShipSet( lostcdkey,lostname,CHAR_getInt(lostindex,CHAR_AUTOPK),1);
|
|||
|
AutoPk_GetChampionShip();
|
|||
|
}
|
|||
|
#else
|
|||
|
if(CHAR_CHECKINDEX(winindex) != FALSE){
|
|||
|
AutoPk_ChampionShipSet(wincdkey, winname, CHAR_getInt(winindex,CHAR_AUTOPK), 0);
|
|||
|
NPC_AUTOPKHealerTalked( winindex );
|
|||
|
}
|
|||
|
if(num==1){
|
|||
|
int fl = 0, x = 0, y = 0;
|
|||
|
if(CHAR_CHECKINDEX(winindex) == FALSE){
|
|||
|
lostindex=winindex;
|
|||
|
strcpysafe(lostcdkey,sizeof(lostcdkey),wincdkey);
|
|||
|
strcpysafe(lostname,sizeof(lostname),winname);
|
|||
|
winindex=charaindex;
|
|||
|
strcpysafe(wincdkey,sizeof(wincdkey),CHAR_getChar( charaindex, CHAR_CDKEY));
|
|||
|
strcpysafe(winname,sizeof(winname),CHAR_getChar( charaindex, CHAR_NAME));
|
|||
|
}
|
|||
|
autopkcnt++;
|
|||
|
CHAR_setInt(winindex,CHAR_AUTOPK,CHAR_getInt(winindex,CHAR_AUTOPK)+1);
|
|||
|
int autopkvigor = getAutoPkVigorPkNum()*CHAR_getInt(winindex,CHAR_AUTOPK)+getAutoPkVigorPkCnt()*autopkcnt;
|
|||
|
CHAR_setInt(winindex,CHAR_VIGOR,CHAR_getInt(winindex,CHAR_VIGOR)+autopkvigor);
|
|||
|
sprintf(token2,"[<5B><><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>]<5D><><EFBFBD><EFBFBD>%s<><73><EFBFBD><EFBFBD>ɱ<EFBFBD><C9B1><EFBFBD><EFBFBD> %d <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %d <20><><EFBFBD>û<EFBFBD><C3BB><EFBFBD>%d",winname,CHAR_getInt(winindex,CHAR_AUTOPK),autopkcnt,autopkvigor);
|
|||
|
i = 0;
|
|||
|
for(i=0;i<playernum;i++){
|
|||
|
if(CHAR_CHECKINDEX(i) == FALSE) continue;
|
|||
|
CHAR_talkToCli( i, -1, token2, CHAR_COLORCYAN );
|
|||
|
}
|
|||
|
CHAR_getElderPosition(CHAR_getInt(winindex, CHAR_LASTTALKELDER), &fl, &x, &y);
|
|||
|
CHAR_warpToSpecificPoint(winindex, fl, x, y);
|
|||
|
AutoPk_ChampionShipSet( wincdkey, winname, CHAR_getInt(winindex,CHAR_AUTOPK),0);
|
|||
|
AutoPk_ChampionShipSet( wincdkey, winname, CHAR_getInt(winindex,CHAR_AUTOPK),1);
|
|||
|
AutoPk_ChampionShipSet( lostcdkey,lostname,CHAR_getInt(lostindex,CHAR_AUTOPK),2);
|
|||
|
AutoPk_GetChampionShip();
|
|||
|
}
|
|||
|
#endif
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _TRADE_PK
|
|||
|
if(CHAR_getInt(BattleArray[battleindex].rivalindex, CHAR_FLOOR)==50000 &&
|
|||
|
CHAR_getInt(BattleArray[battleindex].leaderindex, CHAR_FLOOR)==50000){
|
|||
|
|
|||
|
if(BattleArray[battleindex].type != BATTLE_TYPE_WATCH
|
|||
|
&& BattleArray[battleindex].mode != BATTLE_MODE_WATCHBC){
|
|||
|
int winindex,lostindex;
|
|||
|
char wincdkey[CDKEYLEN],winname[CHARNAMELEN];
|
|||
|
char lostcdkey[CDKEYLEN],lostname[CHARNAMELEN];
|
|||
|
if( BattleArray[battleindex].type == BATTLE_TYPE_P_vs_P && BattleArray[battleindex].winside == -1 ){
|
|||
|
winindex=BattleArray[battleindex].leaderindex;
|
|||
|
strcpysafe(wincdkey,sizeof(wincdkey),BattleArray[battleindex].leadercdkey);
|
|||
|
strcpysafe(winname,sizeof(winname),BattleArray[battleindex].leadername);
|
|||
|
lostindex=BattleArray[battleindex].rivalindex;
|
|||
|
strcpysafe(lostcdkey,sizeof(lostcdkey),BattleArray[battleindex].rivalcdkey);
|
|||
|
strcpysafe(lostname,sizeof(lostname),BattleArray[battleindex].rivalname);
|
|||
|
}else{
|
|||
|
winindex=BattleArray[battleindex].rivalindex;
|
|||
|
strcpysafe(wincdkey,sizeof(wincdkey),BattleArray[battleindex].rivalcdkey);
|
|||
|
strcpysafe(winname,sizeof(winname),BattleArray[battleindex].rivalname);
|
|||
|
lostindex=BattleArray[battleindex].leaderindex;
|
|||
|
strcpysafe(lostcdkey,sizeof(lostcdkey),BattleArray[battleindex].leadercdkey);
|
|||
|
strcpysafe(lostname,sizeof(lostname),BattleArray[battleindex].leadername);
|
|||
|
}
|
|||
|
CHAR_setWorkInt(winindex, CHAR_WORKTRADEPK, 1);
|
|||
|
CHAR_setWorkInt(lostindex, CHAR_WORKTRADEPK, 2);
|
|||
|
BATTLE_Trade();
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef DANTAI
|
|||
|
if( BattleArray[battleindex].type == BATTLE_TYPE_P_vs_P ){
|
|||
|
BATTLE_DpCalc( battleindex );
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
pEntry = BattleArray[battleindex].Side[j].Entry;
|
|||
|
#ifdef _PET_TALK
|
|||
|
for( i = 0 ; i < BATTLE_ENTRY_MAX ; i ++ ){
|
|||
|
#else
|
|||
|
for( i = BATTLE_ENTRY_MAX-1; i >= 0 ; i -- ){
|
|||
|
#endif
|
|||
|
charaindex = pEntry[i].charaindex;
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )
|
|||
|
continue;
|
|||
|
#ifdef _ALLBLUES_LUA_1_9
|
|||
|
BattleFinishFunction(charaindex, BattleArray[battleindex].CreateTime, BattleArray[battleindex].turn, BattleArray[battleindex].type);
|
|||
|
#endif
|
|||
|
BATTLE_GetProfit( battleindex, j, i ); //<2F><><EFBFBD><EFBFBD>ȡ<EFBFBD>þ<EFBFBD><C3BE><EFBFBD>ֵ
|
|||
|
BATTLE_Exit( charaindex, battleindex );
|
|||
|
}
|
|||
|
}
|
|||
|
if( BattleArray[battleindex].type == BATTLE_TYPE_WATCH ){
|
|||
|
}else{
|
|||
|
pBattle = BattleArray[battleindex].pNext;
|
|||
|
for( ;pBattle; pBattle = pBattle->pNext ){
|
|||
|
if( BATTLE_CHECKADDRESS( pBattle ) == FALSE ){
|
|||
|
//fprint( "err:battle address <20><><EFBFBD><EFBFBD>(%p)\n", pBattle );
|
|||
|
break;
|
|||
|
}
|
|||
|
for( i = BATTLE_ENTRY_MAX-1; i >= 0 ; i -- ){
|
|||
|
charaindex = pBattle->Side[0].Entry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
BATTLE_Exit( charaindex, pBattle->battleindex );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_FINAL );
|
|||
|
}
|
|||
|
}
|
|||
|
pBattle = BattleArray[battleindex].pNext;
|
|||
|
for( ;pBattle; pBattle = pBattle->pNext ){
|
|||
|
if( BATTLE_CHECKADDRESS( pBattle ) == FALSE ){
|
|||
|
//fprint( "err:battle address <20><><EFBFBD><EFBFBD>(%p)\n", pBattle );
|
|||
|
break;
|
|||
|
}
|
|||
|
BATTLE_DeleteBattle( pBattle->battleindex );
|
|||
|
}
|
|||
|
}
|
|||
|
BATTLE_DeleteBattle( battleindex );
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_StopSet( battleindex )
|
|||
|
{
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
BattleArray[battleindex].mode = BATTLE_MODE_STOP;
|
|||
|
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
static int BATTLE_Stop( int battleindex )
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_Stop";
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
int i, charaindex, j;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
pEntry = BattleArray[battleindex].Side[j].Entry;
|
|||
|
for( i = BATTLE_ENTRY_MAX-1; i >= 0 ; i -- ){
|
|||
|
charaindex = pEntry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )
|
|||
|
continue;
|
|||
|
BATTLE_GetProfit( battleindex, j, i );
|
|||
|
BATTLE_Exit( charaindex, battleindex );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
BATTLE_DeleteBattle( battleindex );
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_DefaultAttacker( int battleindex, int side )
|
|||
|
{
|
|||
|
int i, rnd, cnt;
|
|||
|
int CharaTbl[BATTLE_ENTRY_MAX];
|
|||
|
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
|
|||
|
pEntry = BattleArray[battleindex].Side[side].Entry;
|
|||
|
cnt = 0;
|
|||
|
|
|||
|
for( i = 0 ; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
CharaTbl[i] = -1;
|
|||
|
if( CHAR_CHECKINDEX( pEntry[i].charaindex ) == FALSE ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
if( CHAR_getWorkInt( pEntry[i].charaindex, CHAR_WORKBATTLEMODE )
|
|||
|
== BATTLE_CHARMODE_RESCUE ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
if( BATTLE_TargetCheck( battleindex, i + side * SIDE_OFFSET ) == FALSE )continue;
|
|||
|
|
|||
|
CharaTbl[cnt] = i + side * SIDE_OFFSET;
|
|||
|
cnt ++;
|
|||
|
}
|
|||
|
|
|||
|
if( cnt == 0 ){
|
|||
|
return -1;
|
|||
|
}
|
|||
|
|
|||
|
rnd = RAND( 0, cnt-1 );
|
|||
|
return CharaTbl[rnd];
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
//*********************************************************
|
|||
|
//
|
|||
|
// <20><> ؤ<><D8A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD><CFB7><EFBFBD><EFBFBD>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ë<><C3AB>ң
|
|||
|
//
|
|||
|
int BATTLE_AddDpAlive(
|
|||
|
int battleindex, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int side, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>( 0 or 1 )
|
|||
|
int dp
|
|||
|
)
|
|||
|
//
|
|||
|
// Ի<><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD><CFB7><EFBFBD><EFBFBD><EFBFBD>Ȼ<EFBFBD><C8BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>ľ<EFBFBD><C4BE> <20><><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
//*********************************************************
|
|||
|
{
|
|||
|
int i, charaindex;
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
int cnt = 0;
|
|||
|
|
|||
|
// <20>ɷ¶<C9B7><C2B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( BATTLE_CHECKSIDE( side ) == FALSE )return -BATTLE_ERR_PARAM;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return -BATTLE_ERR_BATTLEINDEX;
|
|||
|
|
|||
|
// <20><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
pEntry = BattleArray[battleindex].Side[side].Entry;
|
|||
|
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = pEntry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE ) continue;
|
|||
|
// ʸ<><CAB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><F0BCB0B6><EFBFBD><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPET ) continue;
|
|||
|
// Ϸ<>廯<EFBFBD><E5BBAF><EFBFBD><EFBFBD><EFBFBD>ʣ۵<CAA3>ң
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == FALSE ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKGETEXP,
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKGETEXP) + dp );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return cnt;
|
|||
|
}
|
|||
|
|
|||
|
#if 1
|
|||
|
//*********************************************************
|
|||
|
//
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD><CFB7><EFBFBD><EFBFBD><EFBFBD>Ȼ<EFBFBD><C8BB><EFBFBD><EFBFBD>¾<EFBFBD>Ʃ<EFBFBD><C6A9><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
int BATTLE_CountAlive(
|
|||
|
int battleindex, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int side // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>( 0 or 1 )
|
|||
|
)
|
|||
|
//
|
|||
|
// Ի<><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD><CFB7><EFBFBD><EFBFBD><EFBFBD>Ȼ<EFBFBD><C8BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>ľ<EFBFBD><C4BE> <20><><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
//*********************************************************
|
|||
|
{
|
|||
|
int i, charaindex;
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
int cnt = 0;
|
|||
|
|
|||
|
// <20>ɷ¶<C9B7><C2B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( BATTLE_CHECKSIDE( side ) == FALSE )return -BATTLE_ERR_PARAM;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return -BATTLE_ERR_BATTLEINDEX;
|
|||
|
|
|||
|
// <20><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
pEntry = BattleArray[battleindex].Side[side].Entry;
|
|||
|
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = pEntry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE ) continue;
|
|||
|
// ʸ<><CAB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><F0BCB0B6><EFBFBD><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPET ) continue;
|
|||
|
// Ϸ<>廯<EFBFBD><E5BBAF><EFBFBD><EFBFBD><EFBFBD>ʣ<EFBFBD>
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == FALSE ){
|
|||
|
cnt ++;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return cnt;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
//*********************************************************
|
|||
|
//
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><D7BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ļ<EFBFBD>Ϸ<EFBFBD>廯<EFBFBD><E5BBAF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ؾ<EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
int BATTLE_OnlyRescue(
|
|||
|
int battleindex, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int side, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>( 0 or 1 )
|
|||
|
int *pOnlyFlg
|
|||
|
)
|
|||
|
//
|
|||
|
// Ի<><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD><CFB7><EFBFBD><EFBFBD><EFBFBD>Ȼ<EFBFBD><C8BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>ľ<EFBFBD><C4BE> <20><><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
//*********************************************************
|
|||
|
{
|
|||
|
int i, charaindex;
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
int cnt = 0, OnlyRescue = 1;
|
|||
|
|
|||
|
(*pOnlyFlg) = 0;
|
|||
|
|
|||
|
// <20>ɷ¶<C9B7><C2B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( BATTLE_CHECKSIDE( side ) == FALSE )return -BATTLE_ERR_PARAM;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return -BATTLE_ERR_BATTLEINDEX;
|
|||
|
|
|||
|
// <20><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
pEntry = BattleArray[battleindex].Side[side].Entry;
|
|||
|
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = pEntry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
// ʸ<><CAB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><F0BCB0B6><EFBFBD><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPET ) continue;
|
|||
|
// Ϸ<>廯<EFBFBD><E5BBAF><EFBFBD><EFBFBD><EFBFBD>ʣ<EFBFBD>
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == FALSE ){
|
|||
|
cnt ++;
|
|||
|
// Ϸ<>廯<EFBFBD><E5BBAF><EFBFBD><EFBFBD>֧<EFBFBD><D6A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE ) == BATTLE_CHARMODE_RESCUE ){
|
|||
|
}else{
|
|||
|
OnlyRescue = 0;
|
|||
|
}
|
|||
|
}
|
|||
|
#ifdef _PETSKILL_LER
|
|||
|
if(CHAR_getWorkInt(charaindex,CHAR_WORK_RELIFE) > 0) cnt++;
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
// Ϸ<>廯<EFBFBD><E5BBAF><EFBFBD><EFBFBD>֧<EFBFBD><D6A7><EFBFBD><EFBFBD><EFBFBD>л<EFBFBD><D0BB><EFBFBD><EFBFBD>й<EFBFBD><D0B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( cnt > 0 && OnlyRescue ){
|
|||
|
// <20>º<D7B7>ë <20><><EFBFBD><EFBFBD>
|
|||
|
(*pOnlyFlg) = 1;
|
|||
|
}else{
|
|||
|
// <20>л<EFBFBD><D0BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ը߱<D5A8><DFB1><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
(*pOnlyFlg) = 0;
|
|||
|
}
|
|||
|
|
|||
|
return cnt;
|
|||
|
}
|
|||
|
|
|||
|
static BOOL BATTLE_TimeOutCheck( int battleindex )
|
|||
|
{
|
|||
|
int i, j, charaindex;
|
|||
|
BATTLE *pBattle;
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
|
|||
|
if( NowTime.tv_sec > pBattle->timer + BATTLE_TIME_LIMIT ){
|
|||
|
}else{
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
//BATTLE_BroadCast( battleindex, "serverʱ<72><CAB1><EFBFBD>ѵ<EFBFBD><D1B5><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
pEntry = pBattle->Side[j].Entry;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = pEntry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )
|
|||
|
continue;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEENEMY ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE )
|
|||
|
== BATTLE_CHARMODE_C_WAIT ){
|
|||
|
BATTLE_Exit( charaindex, battleindex );
|
|||
|
CHAR_DischargePartyNoMsg( charaindex );
|
|||
|
CHAR_talkToCli( charaindex, -1,
|
|||
|
"ʱ<EFBFBD>䵽<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
BATTLE_CommandSend( charaindex, "BU" );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_WatchWait( int battleindex )
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_WatchWait";
|
|||
|
BATTLE *pBattle;
|
|||
|
BOOL commandflg = TRUE;
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
if( BATTLE_TimeOutCheck( battleindex ) == TRUE ){
|
|||
|
commandflg = TRUE;
|
|||
|
}
|
|||
|
if( commandflg == FALSE ){
|
|||
|
return 0;
|
|||
|
}
|
|||
|
pBattle->mode = BATTLE_MODE_WATCHMOVIE;
|
|||
|
pBattle->turn ++;
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_WatchMovie( int battleindex )
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_WatchMovie";
|
|||
|
return 0;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_WatchAfter( int battleindex )
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_WatchAfter";
|
|||
|
BattleArray[battleindex].mode = BATTLE_MODE_WATCHPRE;
|
|||
|
|
|||
|
return 0;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_WatchBC( int battleindex )
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_WatchBC";
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_WatchPre( int battleindex )
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_WatchPre";
|
|||
|
// <20><>Ѩ<EFBFBD><D1A8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>г<EFBFBD> <20><><EFBFBD>ݼ<EFBFBD><DDBC><EFBFBD> <20><> ľ
|
|||
|
BATTLE_PreWatchWaitSeq( battleindex );
|
|||
|
BattleArray[battleindex].mode = BATTLE_MODE_WATCHWAIT;
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
static int BATTLE_Command( int battleindex )
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_Command";
|
|||
|
BATTLE *pBattle, *pWatchBattle;
|
|||
|
BOOL commandflg = TRUE, iFinish = FALSE;
|
|||
|
int OnlyRescue[2]={0,0};
|
|||
|
int i, j, charaindex;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
//DebugMainFunction="BATTLE_Command_1";
|
|||
|
|
|||
|
if( BATTLE_CommandWait( battleindex, 0) == FALSE ){
|
|||
|
commandflg = FALSE;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Command_2";
|
|||
|
if( BATTLE_CommandWait( battleindex, 1) == FALSE ){
|
|||
|
commandflg = FALSE;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Command_3";
|
|||
|
pWatchBattle = pBattle->pNext;
|
|||
|
//DebugMainFunction="BATTLE_Command_4";
|
|||
|
for( ; pWatchBattle ; pWatchBattle = pWatchBattle->pNext ){
|
|||
|
if( BATTLE_CHECKADDRESS( pWatchBattle ) == FALSE ){
|
|||
|
//fprint( "err:<3A><>սbattle address<73><73><EFBFBD><EFBFBD>(%p)\n", pWatchBattle );
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
if( pWatchBattle->mode == BATTLE_MODE_WATCHBC ){
|
|||
|
|
|||
|
BATTLE_MakeCharaString( battleindex, szAllBattleString,
|
|||
|
sizeof(szAllBattleString) );
|
|||
|
BATTLE_BpSendToWatch( pWatchBattle, szAllBattleString );
|
|||
|
|
|||
|
pWatchBattle->mode = BATTLE_MODE_WATCHPRE;
|
|||
|
commandflg = FALSE;
|
|||
|
|
|||
|
}else if( pWatchBattle->mode != BATTLE_MODE_WATCHMOVIE ){
|
|||
|
commandflg = FALSE;
|
|||
|
}
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Command_5";
|
|||
|
if( BATTLE_TimeOutCheck( battleindex ) == TRUE ){
|
|||
|
commandflg = TRUE;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Command_6";
|
|||
|
if( commandflg == FALSE ){
|
|||
|
return 0;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Command_7";
|
|||
|
#ifdef _BATTLECOMMAND_TIME
|
|||
|
BattleArray[battleindex].PartTime = 0;
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Command_8";
|
|||
|
|
|||
|
pBattle->turn ++;//<2F>Լ<EFBFBD><D4BC>غ<EFBFBD><D8BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Command_9";
|
|||
|
BATTLE_ai_all( battleindex, 0, 0);
|
|||
|
//DebugMainFunction="BATTLE_Command_10";
|
|||
|
BATTLE_ai_all( battleindex, 1, 0);
|
|||
|
//DebugMainFunction="BATTLE_Command_11";
|
|||
|
BATTLE_Battling( battleindex );//<2F><><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>
|
|||
|
//DebugMainFunction="BATTLE_Command_12";
|
|||
|
pBattle->Side[0].flg &= ~BSIDE_FLG_SURPRISE;
|
|||
|
//DebugMainFunction="BATTLE_Command_13";
|
|||
|
pBattle->Side[1].flg &= ~BSIDE_FLG_SURPRISE;
|
|||
|
//DebugMainFunction="BATTLE_Command_14";
|
|||
|
if( BATTLE_OnlyRescue( battleindex, 0, &OnlyRescue[0] ) == 0 ){
|
|||
|
pBattle->winside = 1;
|
|||
|
iFinish = TRUE;
|
|||
|
}else
|
|||
|
if( BATTLE_OnlyRescue( battleindex, 1, &OnlyRescue[1] ) == 0 ){
|
|||
|
pBattle->winside = -1;
|
|||
|
iFinish = TRUE;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Command_15";
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
if( OnlyRescue[j] != 1 )continue;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX/2; i ++ ){
|
|||
|
charaindex = pBattle->Side[j].Entry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )
|
|||
|
continue;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_HP ) <= 0 ){
|
|||
|
BATTLE_Exit( charaindex, battleindex );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Command_16";
|
|||
|
BATTLE_PreCommandSeq( battleindex );
|
|||
|
//DebugMainFunction="BATTLE_Command_17";
|
|||
|
if( iFinish == TRUE ){
|
|||
|
BATTLE_FinishSet( battleindex );
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Command_18";
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
extern void BATTLE_changeRideImage( int index );
|
|||
|
|
|||
|
int BATTLE_Loop( void )
|
|||
|
{
|
|||
|
int i, cnt = 0;
|
|||
|
rand();
|
|||
|
for( i = 0; i < BATTLE_battlenum; i ++ ){//<2F><><EFBFBD><EFBFBD>ս<EFBFBD><D5BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( BattleArray[i].use == FALSE )continue;
|
|||
|
if( BattleArray[i].type == BATTLE_TYPE_WATCH ){//<2F><><EFBFBD>ǹ<EFBFBD>սģʽ
|
|||
|
if( BATTLE_CountAlive( i, 0 ) == 0 ){
|
|||
|
BATTLE_FinishSet( i );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
switch( BattleArray[i].mode ){
|
|||
|
case BATTLE_MODE_NONE://δս<CEB4><D5BD>
|
|||
|
break;
|
|||
|
case BATTLE_MODE_INIT://ս<><D5BD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC>
|
|||
|
BATTLE_Init( i );
|
|||
|
break;
|
|||
|
case BATTLE_MODE_BATTLE://Server<65>ڲ<EFBFBD>ս<EFBFBD><D5BD><EFBFBD><EFBFBD>
|
|||
|
BATTLE_Command( i );
|
|||
|
break;
|
|||
|
case BATTLE_MODE_FINISH://ս<><D5BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
BATTLE_Finish( i );
|
|||
|
break;
|
|||
|
case BATTLE_MODE_STOP://ս<><D5BD><EFBFBD>ж<EFBFBD>
|
|||
|
BATTLE_Stop( i );
|
|||
|
break;
|
|||
|
case BATTLE_MODE_WATCHBC://<2F><>ս<EFBFBD><D5BD>...
|
|||
|
BATTLE_WatchBC( i );
|
|||
|
break;
|
|||
|
|
|||
|
case BATTLE_MODE_WATCHPRE:
|
|||
|
BATTLE_WatchPre( i );
|
|||
|
break;
|
|||
|
case BATTLE_MODE_WATCHWAIT:
|
|||
|
BATTLE_WatchWait( i );
|
|||
|
break;
|
|||
|
|
|||
|
case BATTLE_MODE_WATCHMOVIE:
|
|||
|
BATTLE_WatchMovie( i );
|
|||
|
break;
|
|||
|
|
|||
|
case BATTLE_MODE_WATCHAFTER:
|
|||
|
BATTLE_WatchAfter( i );
|
|||
|
break;
|
|||
|
}
|
|||
|
cnt ++;
|
|||
|
}
|
|||
|
return cnt;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
typedef struct {
|
|||
|
int charaindex; // ƽ<>ҷ<EFBFBD><D2B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int side; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
int dex; // <20>ٶƽ<D9B6>
|
|||
|
int num; // <20><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> į
|
|||
|
int combo; // <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><DEBE><EFBFBD>
|
|||
|
#ifdef _EQUIT_SEQUENCE
|
|||
|
int sequence;
|
|||
|
#endif
|
|||
|
}BATTLE_CHARLIST;
|
|||
|
|
|||
|
|
|||
|
typedef int (*FUNC)( const void *, const void * );
|
|||
|
|
|||
|
//************************************************************
|
|||
|
//
|
|||
|
// <20><> <20><><EFBFBD>ٶƽ<D9B6> ʤ<><CAA4><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
// <20>ٶƽ<C6BD><F1B7B4B0><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD><EFBFBD>£<EFBFBD><C2A3>ϴ<EFBFBD>ĩ<EFBFBD><C4A9><EFBFBD><EFBFBD>ƥؤ<C6A5>£<EFBFBD>
|
|||
|
//
|
|||
|
static int EsCmp(
|
|||
|
const BATTLE_CHARLIST *pC1,
|
|||
|
const BATTLE_CHARLIST *pC2
|
|||
|
)
|
|||
|
{
|
|||
|
//#ifdef _EQUIT_SEQUENCE
|
|||
|
// return( (pC2->dex+pC2->sequence) - (pC1->dex+pC1->sequence) );
|
|||
|
//#else
|
|||
|
return( pC2->dex - pC1->dex );
|
|||
|
//#endif
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _EQUIT_SEQUENCE
|
|||
|
void Replacement_Entry( BATTLE_CHARLIST *temp1, BATTLE_CHARLIST *temp2)
|
|||
|
{
|
|||
|
temp1->charaindex = temp2->charaindex;
|
|||
|
temp1->combo = temp2->combo;
|
|||
|
temp1->dex = temp2->dex;
|
|||
|
temp1->num = temp2->num;
|
|||
|
temp1->sequence = temp2->sequence;
|
|||
|
temp1->side = temp2->side;
|
|||
|
}
|
|||
|
#endif
|
|||
|
static void EntrySort( BATTLE_CHARLIST *EntryList, int listsize)
|
|||
|
{
|
|||
|
#ifdef _EQUIT_SEQUENCE
|
|||
|
// int i, j;
|
|||
|
qsort( EntryList, listsize, sizeof( BATTLE_CHARLIST ), (FUNC)EsCmp );
|
|||
|
/*
|
|||
|
for( i=0; i<listsize; i++){
|
|||
|
if( EntryList[i].sequence > 0 ){
|
|||
|
int maxcheck, now;
|
|||
|
BATTLE_CHARLIST temp;
|
|||
|
|
|||
|
maxcheck = EntryList[i].sequence/8;
|
|||
|
maxcheck = RAND( 1, maxcheck);
|
|||
|
maxcheck = ( maxcheck>=i )?(i/3):maxcheck;
|
|||
|
maxcheck = ( maxcheck<0)?0:maxcheck;
|
|||
|
now = i;
|
|||
|
for( j=0; j<maxcheck&&now>0; j++){
|
|||
|
if( EntryList[now].sequence > (EntryList[now-1].sequence *0.9) ){
|
|||
|
|
|||
|
Replacement_Entry( &temp, &EntryList[now]);
|
|||
|
Replacement_Entry( &EntryList[now], &EntryList[now-1]);
|
|||
|
Replacement_Entry( &EntryList[now-1], &temp);
|
|||
|
now = now-1;
|
|||
|
|
|||
|
|
|||
|
// temp = &EntryList[now];
|
|||
|
// EntryList[now] = EntryList[now-1];
|
|||
|
// EntryList[now-1] = *temp;
|
|||
|
// temp = NULL;
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
*/
|
|||
|
#else
|
|||
|
qsort( EntryList, listsize, sizeof( BATTLE_CHARLIST ), (FUNC)EsCmp );
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
//************************************************************
|
|||
|
//
|
|||
|
// <20>ٶƽ<D9B6>ë<EFBFBD><C3AB>ң<EFBFBD><D2A3><EFBFBD>£<EFBFBD>
|
|||
|
//
|
|||
|
static int BATTLE_DexCalc(
|
|||
|
int charaindex
|
|||
|
)
|
|||
|
//
|
|||
|
// Ի<><D4BB> <20>ٶƽ<D9B6>
|
|||
|
//
|
|||
|
//************************************************************
|
|||
|
{
|
|||
|
int dex = 0;
|
|||
|
int work, COM;
|
|||
|
int petindex = BATTLE_getRidePet( charaindex );
|
|||
|
|
|||
|
// <20><>Ѩ<EFBFBD><D1A8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
COM = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 );
|
|||
|
|
|||
|
#ifdef _PETSKILL_BECOMEFOX // <20><><EFBFBD><EFBFBD>˳<EFBFBD><CBB3><EFBFBD>е<EFBFBD><D0B5><EFBFBD><EFBFBD>ݽ<EFBFBD><DDBD><EFBFBD>20%
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKFOXROUND ) != -1 ){
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
dex = work *0.8;//<2F><><EFBFBD><EFBFBD>20%
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKFEAR ) > 0 ){
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
dex = work*0.8;//<2F><><EFBFBD><EFBFBD>20%
|
|||
|
}
|
|||
|
#endif
|
|||
|
// ɧ<><C9A7> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
switch( COM ){
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_BLOOD: // <20><>Ѫ<EFBFBD><D1AA><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_BLOOD_WORMS: // <20><>Ѫ<EFBFBD><D1AA>
|
|||
|
case BATTLE_COM_S_SIGN: // һ<><D2BB><EFBFBD><EFBFBD>Ѫ
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _BATTLE_NEWPOWER
|
|||
|
case BATTLE_COM_JYUJYUTU:
|
|||
|
case BATTLE_COM_S_ATTACK_MAGIC:
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
#ifdef _DEX_FIX
|
|||
|
dex = work - RAND( 0, work * 0.01*getDexFixPer() );
|
|||
|
#else
|
|||
|
dex = work - RAND( 0, work * 0.3 );
|
|||
|
#endif
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_FIRE_ENCLOSE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ICE_ENCLOSE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_THUNDER_ENCLOSE: // <20><EFBFBD><D7B8><EFBFBD>
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
dex = work - RAND( work * 0.3, work * 0.5 );
|
|||
|
break;
|
|||
|
case BATTLE_COM_S_VOLCANO_SPRINGS:// <20><>ɽȪ
|
|||
|
case BATTLE_COM_S_SUMMON_THUNDER: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ICE_ARROW: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
dex = work - RAND( 0, work * 0.2 );
|
|||
|
break;
|
|||
|
case BATTLE_COM_S_CURRENT: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_FIRE_BALL:// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ICE_CRACK: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
dex = work - RAND( 0, work * 0.5 );
|
|||
|
break;
|
|||
|
case BATTLE_COM_S_FIRE_SPEAR:// <20><><EFBFBD><EFBFBD>ǹ
|
|||
|
case BATTLE_COM_S_STORM: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ICE_MIRROR: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ENCLOSE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_TRANSPOSE: // <20><><EFBFBD>λ<EFBFBD>λ
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
dex = work - RAND( work * 0.2, work * 0.5 );
|
|||
|
break;
|
|||
|
|
|||
|
case BATTLE_COM_S_DOOM: // <20><><EFBFBD><EFBFBD>ĩ<EFBFBD><C4A9>
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
dex = work - RAND( 0.3, work * 0.6 );
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SKILL_SPEEDY_ATT //vincent <20>輼:<3A><><EFBFBD>ٹ<EFBFBD><D9B9><EFBFBD>
|
|||
|
case BATTLE_COM_S_SPEEDYATTACK:
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
dex = work + work*0.3;//<2F><><EFBFBD><EFBFBD>30%
|
|||
|
break;
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_DAMAGETOHP //<2F>輼:<3A><><EFBFBD>¿<EFBFBD><C2BF><EFBFBD>(<28><>Ѫ<EFBFBD><D1AA><EFBFBD>ı<EFBFBD><C4B1><EFBFBD>)
|
|||
|
case BATTLE_COM_S_DAMAGETOHP2:
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
dex = work + work*0.2;//<2F><><EFBFBD><EFBFBD>20%
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
case BATTLE_COM_ITEM: // ʧ<><CAA7> ةë<D8A9><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
dex = work - RAND( 0, work * 0.3 ) + work * 0.15;
|
|||
|
break;
|
|||
|
default: // ɧ<><C9A7> <20><><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>)
|
|||
|
// Robin 0727 ride pet
|
|||
|
if( petindex == -1 )
|
|||
|
work = CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )+20;
|
|||
|
else
|
|||
|
work = BATTLE_adjustRidePet3A( charaindex, petindex, CHAR_WORKQUICK, ATTACKSIDE )+20;
|
|||
|
#ifdef _DEX_FIX
|
|||
|
dex = work - RAND( 0, work * 0.01*getDexFixPer());
|
|||
|
#else
|
|||
|
dex = work - RAND( 0, work * 0.3 );
|
|||
|
#endif
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
// Ѩ<>̹ϵ<CCB9><CFB5><EFBFBD>ئ<EFBFBD>Ȼ<EFBFBD><C8BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>գ<EFBFBD>
|
|||
|
//if( dex <= 0 )dex = 1; //<2F>ٷ<EFBFBD><D9B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( dex<=0 ) dex = RAND(1,10); //<2F>ĺ<DEB8><C4BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>1-5֮<35><D6AE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȡ
|
|||
|
return dex;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
//*************************************************************
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ؤ<EFBFBD>¾<EFBFBD><C2BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
static void ComboCheck(
|
|||
|
BATTLE_CHARLIST *pEntryList,
|
|||
|
int entrynum
|
|||
|
)
|
|||
|
//
|
|||
|
//*************************************************************
|
|||
|
{
|
|||
|
|
|||
|
int i,
|
|||
|
charaindex,
|
|||
|
com,
|
|||
|
enemy,
|
|||
|
side,
|
|||
|
oldside = -3, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ؤԻ<D8A4><D4BB>ئ<EFBFBD>а<EFBFBD>
|
|||
|
oldenemy = -3, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ؤԻ<D8A4><D4BB>ئ<EFBFBD>а<EFBFBD>
|
|||
|
armtype,
|
|||
|
move,
|
|||
|
per,
|
|||
|
ComboId = 1, // <20><><EFBFBD><EFBFBD>ʾ
|
|||
|
start = -1;
|
|||
|
for( i = 0; i < entrynum; i ++ ){
|
|||
|
|
|||
|
charaindex = pEntryList[i].charaindex;
|
|||
|
com = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 );
|
|||
|
enemy = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
side = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLESIDE );
|
|||
|
armtype = 0;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEENEMY ){
|
|||
|
per = 20; // <20>ķ<EFBFBD><C4B7><EFBFBD><EFBFBD>ߡ<EFBFBD>
|
|||
|
}else{
|
|||
|
per = 50; // <20><><EFBFBD>з<EFBFBD><D0B7><EFBFBD><EFBFBD>ߡ<EFBFBD>
|
|||
|
}
|
|||
|
|
|||
|
// <20><><EFBFBD>߾<EFBFBD> <20><>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getInt( charaindex, CHAR_HP ) <= 0
|
|||
|
|| BATTLE_CanMoveCheck( charaindex ) == FALSE
|
|||
|
){
|
|||
|
move = 0;
|
|||
|
}else{
|
|||
|
move = 1;
|
|||
|
}
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> տë<D5BF><C3AB> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>ĸ<EFBFBD><C4B8>
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>ĸ<EFBFBD><C4B8>
|
|||
|
if( BATTLE_IsThrowWepon(
|
|||
|
CHAR_getItemIndex( charaindex, CHAR_ARM ) ) == TRUE
|
|||
|
){
|
|||
|
armtype = 1;
|
|||
|
}
|
|||
|
|
|||
|
pEntryList[i].combo = 0; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
if( start != -1 ){ // <20><> <20><>
|
|||
|
if( com != BATTLE_COM_ATTACK // <20><><EFBFBD><EFBFBD>Ѩ<EFBFBD><D1A8><EFBFBD><EFBFBD>ƥئ<C6A5><D8A6>
|
|||
|
|| enemy != oldenemy // <20><><EFBFBD>Ȼ<EFBFBD><C8BB>³Ļ<C2B3> Ԫƥئ<C6A5><D8A6>
|
|||
|
|| side != oldside // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ਵ<EFBFBD>
|
|||
|
|| armtype == 1 // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥؤ<C6A5><D8A4>
|
|||
|
|| move == 0 // <20><>ئ<EFBFBD><D8A6>
|
|||
|
){
|
|||
|
start = -1; // <20><>
|
|||
|
oldside = side; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
}else{
|
|||
|
// <20><><EFBFBD><EFBFBD>ʾɬ<CABE><C9AC>
|
|||
|
CHAR_setWorkInt( pEntryList[i].charaindex,
|
|||
|
CHAR_WORKBATTLECOM1,BATTLE_COM_COMBO );
|
|||
|
pEntryList[i].combo = ComboId;
|
|||
|
// <20>ټ<EFBFBD><D9BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɱɬ<C9B1><C9AC>
|
|||
|
CHAR_setWorkInt( pEntryList[start].charaindex,
|
|||
|
CHAR_WORKBATTLECOM1,BATTLE_COM_COMBO );
|
|||
|
pEntryList[start].combo = ComboId;
|
|||
|
}
|
|||
|
}
|
|||
|
if( start == -1 ){// <20><> <20><> <20>ƻ<EFBFBD><C6BB><EFBFBD>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( com == BATTLE_COM_ATTACK
|
|||
|
&& armtype != 1 // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥئ<C6A5><D8A6>
|
|||
|
&& move == 1 // <20><><EFBFBD><EFBFBD>
|
|||
|
&& RAND( 1, 100 ) <= per
|
|||
|
){ // ɧ<><C9A7> <20><> ƥؤ<C6A5><D8A4>
|
|||
|
start = i;
|
|||
|
oldenemy = enemy; // <20><><EFBFBD>Ȼ<EFBFBD><C8BB>³<EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
oldside = side; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
ComboId ++;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
//*************************************************************
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD>¾<EFBFBD><C2BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//<2F><><EFBFBD>ݼ<EFBFBD><DDBC>л<EFBFBD><D0BB><EFBFBD><EFBFBD><EFBFBD>ʾƥ<CABE><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԫ<EFBFBD><D4AA>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> FALSE
|
|||
|
//
|
|||
|
static BOOL ComboCheck2(
|
|||
|
BATTLE_CHARLIST *pEntryList, // <20><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
int nownum, // <20>ػ<EFBFBD><D8BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
int entrynum // <20><EFBFBD><DEBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>
|
|||
|
)
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD>ʾƥ<CABE><C6A5><EFBFBD><EFBFBD> TRUE
|
|||
|
// ƥ<><C6A5>ئ<EFBFBD><D8A6> FALSE
|
|||
|
//
|
|||
|
//*************************************************************
|
|||
|
{
|
|||
|
|
|||
|
int i,
|
|||
|
iRet = FALSE,
|
|||
|
ComboId,
|
|||
|
charaindex;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>ʾ <20><><EFBFBD><EFBFBD>
|
|||
|
ComboId = pEntryList[nownum].combo;
|
|||
|
|
|||
|
charaindex = pEntryList[nownum].charaindex;
|
|||
|
|
|||
|
// <20><><EFBFBD>л<EFBFBD><D0BB><EFBFBD><EFBFBD><EFBFBD>պ<EFBFBD><D5BA> <20>ƻ<EFBFBD><C6BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEFLG) & CHAR_BATTLEFLG_AIBAD )
|
|||
|
{
|
|||
|
// print( "<22><><EFBFBD><EFBFBD><EFBFBD>ҳ϶Ȳ<CFB6><C8B2><EFBFBD>ʹ<EFBFBD>ñ<EFBFBD>ɱ<EFBFBD><C9B1>ʧ<EFBFBD><CAA7>( %s )\n",CHAR_getUseName( charaindex ) );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
// <20>ݼ<EFBFBD><DDBC>л<EFBFBD><D0BB><EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD>帨<EFBFBD><E5B8A8>ƥ<EFBFBD><C6A5><EFBFBD>¾<EFBFBD><C2BE><EFBFBD>
|
|||
|
for( i = nownum+1; i < entrynum; i ++ ){
|
|||
|
charaindex = pEntryList[i].charaindex;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>ʾ ਵ<><E0A8B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( ComboId != pEntryList[i].combo )break;
|
|||
|
|
|||
|
// <20><> <20>帨<EFBFBD><E5B8A8><EFBFBD>ƻ<EFBFBD><C6BB><EFBFBD>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݳ<EFBFBD>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE) == 0 ) break;
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE) == BATTLE_CHARMODE_FINAL ) break;
|
|||
|
|
|||
|
if( CHAR_getInt( charaindex, CHAR_HP ) <= 0
|
|||
|
|| BATTLE_CanMoveCheck( charaindex ) == FALSE
|
|||
|
){
|
|||
|
}else{
|
|||
|
iRet = TRUE;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
/*
|
|||
|
if( iRet == FALSE ){
|
|||
|
print( "<EFBFBD><EFBFBD>ɱ<EFBFBD><EFBFBD>ʧ<EFBFBD><EFBFBD>( %s )\n",
|
|||
|
CHAR_getUseName( pEntryList[nownum].charaindex ) );
|
|||
|
}
|
|||
|
*/
|
|||
|
return iRet;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void BATTLE_UltimateExtra(
|
|||
|
int battleindex,
|
|||
|
int charaindex,
|
|||
|
int enemyindex
|
|||
|
)
|
|||
|
{
|
|||
|
char szBuffer[256]="";
|
|||
|
int pindex, pno;
|
|||
|
int floor=0, x=0, y=0;
|
|||
|
szBuffer[0] = 0;
|
|||
|
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER
|
|||
|
#ifdef _PLAYER_NPC
|
|||
|
|| CHAR_getInt( enemyindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYERNPC
|
|||
|
#endif
|
|||
|
// || CHAR_getInt( enemyindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYERNPC
|
|||
|
){
|
|||
|
BATTLE_PetDefaultExit( enemyindex, battleindex );
|
|||
|
|
|||
|
if( BattleArray[battleindex].type != BATTLE_TYPE_P_vs_P ){
|
|||
|
int levelflg = 1;
|
|||
|
//snprintf( szBuffer, sizeof(szBuffer),
|
|||
|
// "(%s)<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><D4B6><EFBFBD><EFBFBD>",
|
|||
|
// CHAR_getUseName( enemyindex ) );
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_LV ) <= 10 ){
|
|||
|
levelflg = 2;
|
|||
|
}
|
|||
|
|
|||
|
if( BattleArray[battleindex].norisk == 0 ){;
|
|||
|
CHAR_AddCharm( enemyindex, CH_FIX_PLAYEULTIMATE/levelflg );
|
|||
|
pno = CHAR_getInt( enemyindex, CHAR_DEFAULTPET );
|
|||
|
if( 0 <= pno && pno < CHAR_MAXPETHAVE ){
|
|||
|
pindex = CHAR_getCharPet( enemyindex, pno );
|
|||
|
if( CHAR_CHECKINDEX( pindex ) == TRUE ){
|
|||
|
CHAR_PetAddVariableAi( pindex, AI_FIX_PLAYERULTIMATE/levelflg );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if( CHAR_getElderPosition(
|
|||
|
CHAR_getInt( enemyindex, CHAR_LASTTALKELDER), &floor, &x, &y )
|
|||
|
!= TRUE
|
|||
|
){
|
|||
|
}else{
|
|||
|
CHAR_warpToSpecificPoint( enemyindex, floor, x, y );
|
|||
|
}
|
|||
|
}
|
|||
|
BATTLE_Exit( enemyindex, battleindex );
|
|||
|
CHAR_DischargePartyNoMsg( enemyindex );
|
|||
|
if( getBattleDebugMsg( ) != 0 ){
|
|||
|
BATTLE_talkToCli( enemyindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
|
|||
|
}else
|
|||
|
// ʸ<><CAB8><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_WHICHTYPE ) == CHAR_TYPEPET ){
|
|||
|
int levelflg = 1;
|
|||
|
int playerindex = CHAR_getWorkInt( enemyindex, CHAR_WORKPLAYERINDEX );
|
|||
|
|
|||
|
// <20><>ì<EFBFBD>ﻥ<EFBFBD><EFBBA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Ӽ<><D3BC> <20><>
|
|||
|
if( CHAR_getInt( playerindex, CHAR_LV ) <= 10 ){
|
|||
|
levelflg = 2;
|
|||
|
}
|
|||
|
|
|||
|
//snprintf( szBuffer, sizeof(szBuffer),
|
|||
|
// "(%s)<29><><EFBFBD><EFBFBD><EFBFBD>ɡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( enemyindex ) );
|
|||
|
|
|||
|
// DZ<>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɻ<EFBFBD><C9BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>շ<EFBFBD><D5B7><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setInt( playerindex, CHAR_DEFAULTPET, -1 );
|
|||
|
|
|||
|
// <20><>ب<EFBFBD>ﶯ½<EFB6AF><C2BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ëƱ<C3AB><C6B1><EFBFBD><EFBFBD>
|
|||
|
if( BattleArray[battleindex].type != BATTLE_TYPE_P_vs_P ){
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>ͼ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ᆴ<EFBFBD><EFBEAE>ؤ<EFBFBD><D8A4>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ëƱ<C3AB><C6B1><EFBFBD><EFBFBD>
|
|||
|
if( BattleArray[battleindex].norisk == 0 ){;
|
|||
|
CHAR_PetAddVariableAi( enemyindex, AI_FIX_PETULTIMATE/levelflg );
|
|||
|
}
|
|||
|
// DZ<>м<EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸּ<CFB7><D6BC><EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setInt( playerindex, CHAR_DEADPETCOUNT,
|
|||
|
CHAR_getInt( playerindex, CHAR_DEADPETCOUNT ) + 1 );
|
|||
|
}
|
|||
|
/*
|
|||
|
// ʸ<><CAB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD> <20><><EFBFBD>ն<EFBFBD><D5B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>£<EFBFBD>
|
|||
|
BATTLE_PetDefaultExit( enemyindex, battleindex );
|
|||
|
*/
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
|
|||
|
BATTLE_Exit( enemyindex, battleindex );
|
|||
|
|
|||
|
}else{
|
|||
|
int flg;
|
|||
|
// <20><>ľ<EFBFBD><C4BE>½ƥʧ<C6A5><CAA7> ū<><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//snprintf( szBuffer, sizeof(szBuffer),
|
|||
|
// "(%s)<29><><EFBFBD><EFBFBD><EFBFBD>ɡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( enemyindex ) );
|
|||
|
// <20><>ƽ<EFBFBD>ҷ·<D2B7><C2B7>ӡ<EFBFBD><D3A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƻ<EFBFBD><C6BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
// BATTLE_Exit( enemyindex, battleindex );
|
|||
|
flg = CHAR_getWorkInt( enemyindex, CHAR_WORKBATTLEFLG );
|
|||
|
flg |= CHAR_BATTLEFLG_ULTIMATE; // ʧ<><CAA7> ū<><C5AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( enemyindex, CHAR_WORKBATTLEFLG, flg );
|
|||
|
BATTLE_Exit( enemyindex, battleindex );
|
|||
|
}
|
|||
|
|
|||
|
// <20><> ú
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
//*************************************************************
|
|||
|
//
|
|||
|
// ɧ<>ٱ忢姽<E5BFA2><E5A7BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
void BATTLE_NormalDeadExtra(
|
|||
|
int battleindex, // <20><> <20>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int charaindex, // ڽ<><DABD><EFBFBD><EFBFBD>ƽ<EFBFBD>ҷ¼<D2B7><C2BC>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int enemyindex // ڽ<><DABD>ľ<EFBFBD><C4BE>ƽ<EFBFBD>ҷ¼<D2B7><C2BC>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
)
|
|||
|
//
|
|||
|
//
|
|||
|
//*************************************************************
|
|||
|
{
|
|||
|
int pindex, pno;
|
|||
|
char szBuffer[256]="";
|
|||
|
|
|||
|
szBuffer[0] = 0;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ
|
|||
|
// <20><><EFBFBD>缰<EFBFBD><E7BCB0> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>ͼ<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER
|
|||
|
&& BattleArray[battleindex].type == BATTLE_TYPE_P_vs_E
|
|||
|
&& BattleArray[battleindex].norisk == 0
|
|||
|
){
|
|||
|
int levelflg = 1;
|
|||
|
// <20><><EFBFBD>м<EFBFBD> ëƱ<C3AB><C6B1><EFBFBD><EFBFBD>
|
|||
|
// <20><>ì<EFBFBD><C3AC><EFBFBD><EFBFBD><EFBFBD>߶<EFBFBD>Ʊ<EFBFBD><C6B1><EFBFBD>з<EFBFBD> <20>з<EFBFBD><D0B7><EFBFBD>Ʊ<EFBFBD><C6B1><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_LV ) <= 10 ){
|
|||
|
levelflg = 2;
|
|||
|
}
|
|||
|
CHAR_AddCharm( enemyindex, CH_FIX_PLAYERDEAD/levelflg );
|
|||
|
// <20><> <20>帨<EFBFBD><E5B8A8><EFBFBD>ƻ<EFBFBD><C6BB><EFBFBD><EFBFBD><EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ëƱ<C3AB><C6B1><EFBFBD><EFBFBD>
|
|||
|
pno = CHAR_getInt( enemyindex, CHAR_DEFAULTPET );
|
|||
|
if( 0 <= pno && pno < CHAR_MAXPETHAVE ){
|
|||
|
// ʸ<><CAB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
pindex = CHAR_getCharPet( enemyindex, pno );
|
|||
|
if( CHAR_CHECKINDEX( pindex ) == TRUE ){
|
|||
|
CHAR_PetAddVariableAi( pindex, AI_FIX_PLAYERDEAD/levelflg );
|
|||
|
}
|
|||
|
}
|
|||
|
// <20><><EFBFBD>Ϸ<EFBFBD>ƽ<EFBFBD>ҷ¼<D2B7><C2BC><EFBFBD>Ѩ<EFBFBD><D1A8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>٨ľ<D9A8><C4BE>
|
|||
|
CHAR_setWorkInt( enemyindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}else
|
|||
|
// ʸ<><CAB8><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_WHICHTYPE ) == CHAR_TYPEPET
|
|||
|
&& BattleArray[battleindex].type == BATTLE_TYPE_P_vs_E
|
|||
|
&& BattleArray[battleindex].norisk == 0
|
|||
|
){
|
|||
|
int levelflg = 1;
|
|||
|
int playerindex = CHAR_getWorkInt( enemyindex, CHAR_WORKPLAYERINDEX );
|
|||
|
|
|||
|
// DZ<>м<EFBFBD><D0BC><EFBFBD>ì<EFBFBD><C3AC><EFBFBD><EFBFBD><EFBFBD>߶<EFBFBD>Ʊ<EFBFBD><C6B1><EFBFBD>з<EFBFBD> <20>з<EFBFBD><D0B7><EFBFBD>Ʊ<EFBFBD><C6B1><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getInt( playerindex, CHAR_LV ) <= 10 ){
|
|||
|
levelflg = 2;
|
|||
|
}
|
|||
|
// <20><><EFBFBD>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ëƱ<C3AB><C6B1><EFBFBD><EFBFBD>
|
|||
|
CHAR_PetAddVariableAi( enemyindex, AI_FIX_PETDEAD/levelflg );
|
|||
|
// DZ<>м<EFBFBD>ʸ<EFBFBD><CAB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϸּ<CFB7><D6BC><EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setInt( playerindex, CHAR_DEADPETCOUNT,
|
|||
|
CHAR_getInt( playerindex, CHAR_DEADPETCOUNT ) + 1 );
|
|||
|
|
|||
|
// <20><><EFBFBD>Ϸ<EFBFBD>ƽ<EFBFBD>ҷ¼<D2B7><C2BC><EFBFBD>Ѩ<EFBFBD><D1A8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>٨ľ<D9A8><C4BE>
|
|||
|
CHAR_setWorkInt( enemyindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
|
|||
|
}else{
|
|||
|
// <20><>ľ<EFBFBD><C4BE>½
|
|||
|
}
|
|||
|
|
|||
|
//snprintf( szBuffer, sizeof(szBuffer),
|
|||
|
// "(%s)ʧȥ<CAA7><C8A5>ʶ<EFBFBD><CAB6>",
|
|||
|
// CHAR_getUseName( enemyindex ) );
|
|||
|
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#ifndef DANTAI
|
|||
|
void BATTLE_EscapeDpSend( int battleindex, int charaindex )
|
|||
|
{
|
|||
|
|
|||
|
int enemyside, cnt, dpadd;
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE ){
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
if( BattleArray[battleindex].type != BATTLE_TYPE_P_vs_P ){
|
|||
|
return;
|
|||
|
}
|
|||
|
if( BattleArray[battleindex].flg & BATTLE_FLG_FREEDP ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKGETEXP, 0 );
|
|||
|
return ;
|
|||
|
}
|
|||
|
BattleArray[battleindex].flg |= BATTLE_FLG_CHARALOST;
|
|||
|
enemyside = 1 - CHAR_getWorkInt( charaindex, CHAR_WORKBATTLESIDE );
|
|||
|
pEntry = BattleArray[battleindex].Side[enemyside].Entry;
|
|||
|
cnt = BATTLE_CountAlive( battleindex, enemyside );
|
|||
|
if( cnt == 0 )return;
|
|||
|
int indexfloor = CHAR_getInt( charaindex, CHAR_FLOOR);
|
|||
|
if(indexfloor==11111)
|
|||
|
{
|
|||
|
dpadd = getBalltePoint(0);
|
|||
|
}
|
|||
|
else if(indexfloor==22222)
|
|||
|
{
|
|||
|
dpadd = getBalltePoint(1);
|
|||
|
}
|
|||
|
else if(indexfloor==33333)
|
|||
|
{
|
|||
|
dpadd = getBalltePoint(2);
|
|||
|
}
|
|||
|
else if(indexfloor==44444)
|
|||
|
{
|
|||
|
dpadd = getBalltePoint(3);
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
dpadd = CHAR_getInt( charaindex, CHAR_DUELPOINT ) * DUELPOINT_RATE;
|
|||
|
}
|
|||
|
if( dpadd < 1 )dpadd = 1;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKGETEXP, -dpadd*2 );
|
|||
|
dpadd /= cnt;
|
|||
|
if( dpadd < 1 )dpadd = 1;
|
|||
|
BATTLE_AddDpAlive( battleindex, enemyside, dpadd );
|
|||
|
}
|
|||
|
#else
|
|||
|
void BATTLE_EscapeDpSend( int battleindex, int charaindex )
|
|||
|
{
|
|||
|
|
|||
|
int enemyside, dpadd;
|
|||
|
BATTLE_ENTRY *pEntry;
|
|||
|
|
|||
|
// Nuke 0725: Avoid too large number
|
|||
|
if ((battleindex<0)||(battleindex>getBattlenum())) return;
|
|||
|
// <20><>½<EFBFBD><C2BD> <20><><EFBFBD><EFBFBD>
|
|||
|
if( BattleArray[battleindex].type != BATTLE_TYPE_P_vs_P ){
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
enemyside = 1 - CHAR_getWorkInt( charaindex, CHAR_WORKBATTLESIDE );
|
|||
|
|
|||
|
pEntry = BattleArray[battleindex].Side[enemyside].Entry;
|
|||
|
|
|||
|
// <20><><EFBFBD>촡<EFBFBD><ECB4A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
dpadd = CHAR_getInt( charaindex, CHAR_DUELPOINT ) * DUELPOINT_RATE;
|
|||
|
if( dpadd < 1 )dpadd = 1; // <20><>ƥ<EFBFBD>֨<EFBFBD>
|
|||
|
|
|||
|
// <20>о<EFBFBD><D0BE><EFBFBD>¦<EFBFBD>л<EFBFBD><D0BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKGETEXP, -dpadd*2 );
|
|||
|
|
|||
|
// <20><><EFBFBD>촡<EFBFBD>巴<EFBFBD><E5B7B4><EFBFBD><EFBFBD>
|
|||
|
BattleArray[battleindex].Side[enemyside].common_dp += dpadd;
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
#ifndef DANTAI
|
|||
|
int BATTLE_AddDuelPoint( int battleindex, int *pBidList )
|
|||
|
{
|
|||
|
int enemyindex, i, side, num, j, k,
|
|||
|
charaindex[BATTLE_ENTRY_MAX+1];
|
|||
|
BATTLE_ENTRY
|
|||
|
*pEntryEnemy;
|
|||
|
int allnum = 0;
|
|||
|
int bid = pBidList[0];
|
|||
|
|
|||
|
if( pBidList < 0 )return BATTLE_ERR_PARAM;
|
|||
|
if( bid >= SIDE_OFFSET ){
|
|||
|
num = bid - SIDE_OFFSET;
|
|||
|
side = 1;
|
|||
|
}else{
|
|||
|
num = bid ;
|
|||
|
side = 0;
|
|||
|
}
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
if( BATTLE_CHECKSIDE( side ) == FALSE )return BATTLE_ERR_PARAM;
|
|||
|
if( num < 0 || num >= BATTLE_ENTRY_MAX )return BATTLE_ERR_PARAM;
|
|||
|
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX + 1 ; i ++ ){
|
|||
|
charaindex[i] = -1;
|
|||
|
}
|
|||
|
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX && pBidList[i] != -1 ; i ++ ){
|
|||
|
int work;
|
|||
|
work = BATTLE_No2Index( battleindex, pBidList[i] );
|
|||
|
if( work < 0 )return BATTLE_ERR_PARAM;
|
|||
|
if( CHAR_getInt( work, CHAR_WHICHTYPE ) == CHAR_TYPEENEMY ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
if( CHAR_getInt( work, CHAR_WHICHTYPE ) == CHAR_TYPEPET ){
|
|||
|
work = CHAR_getWorkInt( work, CHAR_WORKPLAYERINDEX );
|
|||
|
}
|
|||
|
if( work < 0 )return BATTLE_ERR_PARAM;
|
|||
|
for( k = 0; k < allnum; k ++ ){
|
|||
|
if( charaindex[i] == work )break;
|
|||
|
}
|
|||
|
if( i < allnum )continue;
|
|||
|
charaindex[i] = work;
|
|||
|
allnum ++;
|
|||
|
}
|
|||
|
charaindex[i] = -1;
|
|||
|
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
pEntryEnemy = BattleArray[battleindex].Side[j].Entry;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
int enemytype = 0;
|
|||
|
enemyindex = pEntryEnemy[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( enemyindex ) == FALSE )continue;
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_HP ) <= 0
|
|||
|
&& CHAR_getFlg( enemyindex, CHAR_ISDIE ) == FALSE){
|
|||
|
}else{
|
|||
|
continue;
|
|||
|
}
|
|||
|
enemytype = CHAR_getInt( enemyindex, CHAR_WHICHTYPE );
|
|||
|
if( enemytype == CHAR_TYPEPLAYER ){
|
|||
|
BattleArray[battleindex].flg |= BATTLE_FLG_CHARALOST;
|
|||
|
}
|
|||
|
if( enemytype == CHAR_TYPEPLAYER || enemytype == CHAR_TYPEENEMY ){
|
|||
|
int dpadd, dpnow;
|
|||
|
int indexfloor = CHAR_getInt(enemyindex,CHAR_FLOOR);
|
|||
|
if(indexfloor == 11111)dpadd = getBalltePoint(0);
|
|||
|
if(indexfloor == 22222)dpadd = getBalltePoint(1);
|
|||
|
if(indexfloor == 33333)dpadd = getBalltePoint(2);
|
|||
|
if(indexfloor == 44444)dpadd = getBalltePoint(3);
|
|||
|
if(indexfloor==11111||
|
|||
|
indexfloor==22222||
|
|||
|
indexfloor==33333||
|
|||
|
indexfloor==44444) //<2F>ж<EFBFBD><D0B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD>ͼ
|
|||
|
{
|
|||
|
// dpnow = CHAR_getWorkInt( enemyindex, CHAR_WORKVIPPOINT );
|
|||
|
// dpnow -= dpadd;
|
|||
|
// CHAR_setWorkInt( enemyindex, CHAR_WORKGETEXP,
|
|||
|
// CHAR_getWorkInt( enemyindex, CHAR_WORKGETEXP) - dpadd );
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
dpnow = CHAR_getInt( enemyindex, CHAR_DUELPOINT );
|
|||
|
dpadd = dpnow * DUELPOINT_RATE;
|
|||
|
dpnow -= dpadd;
|
|||
|
CHAR_setWorkInt( enemyindex, CHAR_WORKGETEXP,
|
|||
|
CHAR_getWorkInt( enemyindex, CHAR_WORKGETEXP) - dpadd );
|
|||
|
}
|
|||
|
if( side != j ){
|
|||
|
for( k = 0; charaindex[k] != -1; k ++ );
|
|||
|
if( k <= 0 )k = 1;
|
|||
|
dpadd /= k;
|
|||
|
if( dpadd <= 0 ) dpadd = 1;
|
|||
|
for( k = 0; charaindex[k] != -1; k ++ ){
|
|||
|
CHAR_setWorkInt( charaindex[k], CHAR_WORKGETEXP,
|
|||
|
CHAR_getWorkInt( charaindex[k], CHAR_WORKGETEXP ) + dpadd );
|
|||
|
}
|
|||
|
}else{
|
|||
|
int dpdiv = dpadd, alive;
|
|||
|
alive = BATTLE_CountAlive( battleindex, 1-j );
|
|||
|
if( alive <= 0 )alive = 1;
|
|||
|
dpdiv /= alive;
|
|||
|
if( dpdiv <= 0 )dpdiv = 1;
|
|||
|
BATTLE_AddDpAlive( battleindex, 1-j, dpdiv );
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_setFlg( enemyindex, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setInt( enemyindex, CHAR_DEADCOUNT,
|
|||
|
CHAR_getInt( enemyindex, CHAR_DEADCOUNT ) + 1 );
|
|||
|
|
|||
|
if( pEntryEnemy[i].flg & BENT_FLG_ULTIMATE ){
|
|||
|
BATTLE_GetProfit( battleindex, j, i );
|
|||
|
BATTLE_UltimateExtra( battleindex, charaindex[0], enemyindex );
|
|||
|
}else{
|
|||
|
BATTLE_NormalDeadExtra( battleindex, charaindex[0], enemyindex );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return 0;
|
|||
|
}
|
|||
|
#else
|
|||
|
|
|||
|
int BATTLE_AddDuelPoint(
|
|||
|
int battleindex,
|
|||
|
int *pBidList )
|
|||
|
{
|
|||
|
int enemyindex, i, otherside, j,
|
|||
|
charaindex[BATTLE_ENTRY_MAX+1];
|
|||
|
BATTLE_ENTRY
|
|||
|
*pEntryEnemy;
|
|||
|
if( pBidList < 0 )return BATTLE_ERR_PARAM;
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
pEntryEnemy = BattleArray[battleindex].Side[j].Entry;
|
|||
|
otherside = 1 - j;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
enemyindex = pEntryEnemy[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( enemyindex ) == FALSE )continue;
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_HP ) <= 0
|
|||
|
&& CHAR_getFlg( enemyindex, CHAR_ISDIE ) == FALSE){
|
|||
|
}else{
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
CHAR_setFlg( enemyindex, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setInt( enemyindex, CHAR_DEADCOUNT,
|
|||
|
CHAR_getInt( enemyindex, CHAR_DEADCOUNT ) + 1 );
|
|||
|
if( pEntryEnemy[i].flg & BENT_FLG_ULTIMATE ){
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER ){
|
|||
|
int dpadd, dpnow;
|
|||
|
dpnow = CHAR_getInt( enemyindex, CHAR_DUELPOINT );
|
|||
|
dpadd = dpnow * DUELPOINT_RATE; // <20><><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
dpnow -= dpadd;
|
|||
|
CHAR_setWorkInt( enemyindex, CHAR_WORKGETEXP,
|
|||
|
CHAR_getWorkInt( enemyindex, CHAR_WORKGETEXP) - dpadd );
|
|||
|
BattleArray[battleindex].Side[otherside].common_dp += dpadd;
|
|||
|
BATTLE_GetProfit( battleindex, j, i );
|
|||
|
}
|
|||
|
BATTLE_UltimateExtra( battleindex, charaindex[0], enemyindex );
|
|||
|
}else{
|
|||
|
BATTLE_NormalDeadExtra( battleindex, charaindex[0], enemyindex );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return 0;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
int BATTLE_ItemDelCheck( int itemindex )
|
|||
|
{ int icnt, jcnt, playernum;
|
|||
|
playernum = getFdnum();
|
|||
|
for( icnt = 0; icnt < playernum; icnt ++ ) {
|
|||
|
if( CHAR_CHECKINDEX( icnt ) ) {
|
|||
|
for( jcnt = 0; jcnt < CHAR_MAXITEMHAVE; jcnt ++ ) {
|
|||
|
if( CHAR_getItemIndex( icnt, jcnt ) == itemindex ) {
|
|||
|
//print( "err:ս<><D5BD>Ʒ<EFBFBD><C6B7><EFBFBD>ֵ<EFBFBD>item<65><6D><EFBFBD><EFBFBD>(%s)(%s)index(%d)\n",
|
|||
|
// CHAR_getUseName(icnt),ITEM_getAppropriateName(itemindex),
|
|||
|
// itemindex );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_AddExpItem( int battleindex, int *pBidList )
|
|||
|
{
|
|||
|
int enemyindex, i, side, num, proflg = 1, j, exp, k, enemylevel,
|
|||
|
charaindex[BATTLE_ENTRY_MAX+1];
|
|||
|
BATTLE_ENTRY
|
|||
|
*pEntryEnemy,
|
|||
|
*pEntryChara[BATTLE_ENTRY_MAX+1],
|
|||
|
*pEntryPlayer[BATTLE_ENTRY_MAX+1];
|
|||
|
int item=0,itemindex,itemloop,allnum = 0;
|
|||
|
int bid = pBidList[0];
|
|||
|
if( pBidList[0] < 0 )return BATTLE_ERR_PARAM;
|
|||
|
if( bid >= SIDE_OFFSET ){
|
|||
|
num = bid - SIDE_OFFSET;
|
|||
|
side = 1;
|
|||
|
}else{
|
|||
|
num = bid ;
|
|||
|
side = 0;
|
|||
|
}
|
|||
|
if( BATTLE_CHECKSIDE( side ) == FALSE )return BATTLE_ERR_PARAM;
|
|||
|
if( num < 0 || num >= BATTLE_ENTRY_MAX )return BATTLE_ERR_PARAM;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX + 1 ; i ++ ){
|
|||
|
charaindex[i] = -1;
|
|||
|
pEntryPlayer[i] = NULL;
|
|||
|
}
|
|||
|
if( BattleArray[battleindex].Side[side].type != BATTLE_S_TYPE_PLAYER
|
|||
|
|| BattleArray[battleindex].Side[1-side].type == BATTLE_S_TYPE_PLAYER){
|
|||
|
proflg = 0;
|
|||
|
}
|
|||
|
#ifdef _SHARE_EXP //<2F>ŶӾ<C5B6><D3BE>鹲<EFBFBD><E9B9B2>
|
|||
|
if(getExpShare()==1){
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX ; i ++ ){
|
|||
|
if( BattleArray[battleindex].type == BATTLE_TYPE_P_vs_E ){
|
|||
|
charaindex[i] = BATTLE_No2Index( battleindex, i);
|
|||
|
//if( charaindex[i] < 0 )return BATTLE_ERR_PARAM;
|
|||
|
pEntryChara[i] = &BattleArray[battleindex].Side[side].Entry[i];
|
|||
|
pEntryPlayer[i] = pEntryChara[i];
|
|||
|
}
|
|||
|
}
|
|||
|
}else{
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX && pBidList[i] != -1 ; i ++ )
|
|||
|
{
|
|||
|
int subnum;
|
|||
|
charaindex[i] = BATTLE_No2Index( battleindex, pBidList[i] );
|
|||
|
if( charaindex[i] < 0 )return BATTLE_ERR_PARAM;
|
|||
|
subnum = pBidList[i]-side*SIDE_OFFSET;
|
|||
|
pEntryChara[i] = &BattleArray[battleindex].Side[side].Entry[subnum];
|
|||
|
if( CHAR_getInt( charaindex[i], CHAR_WHICHTYPE ) == CHAR_TYPEPET ){
|
|||
|
pEntryPlayer[i] = &BattleArray[battleindex].Side[side].Entry[subnum-5];
|
|||
|
}else{
|
|||
|
pEntryPlayer[i] = pEntryChara[i];
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#else
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX && pBidList[i] != -1 ; i ++ )
|
|||
|
{
|
|||
|
int subnum;
|
|||
|
charaindex[i] = BATTLE_No2Index( battleindex, pBidList[i] );
|
|||
|
if( charaindex[i] < 0 )return BATTLE_ERR_PARAM;
|
|||
|
subnum = pBidList[i]-side*SIDE_OFFSET;
|
|||
|
pEntryChara[i] = &BattleArray[battleindex].Side[side].Entry[subnum];
|
|||
|
if( CHAR_getInt( charaindex[i], CHAR_WHICHTYPE ) == CHAR_TYPEPET ){
|
|||
|
pEntryPlayer[i] = &BattleArray[battleindex].Side[side].Entry[subnum-5];
|
|||
|
}else{
|
|||
|
pEntryPlayer[i] = pEntryChara[i];
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
charaindex[i] = -1;
|
|||
|
allnum = i;
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
pEntryEnemy = BattleArray[battleindex].Side[j].Entry;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
enemyindex = pEntryEnemy[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( enemyindex ) == FALSE )continue;
|
|||
|
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_HP ) <= 0
|
|||
|
&& CHAR_getFlg( enemyindex, CHAR_ISDIE ) == FALSE ){
|
|||
|
}else{
|
|||
|
continue;
|
|||
|
}
|
|||
|
if( proflg == 1 && side != j ){
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_WHICHTYPE ) != CHAR_TYPEENEMY ){
|
|||
|
//print( "\nerr: <20><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>Ʒ(%s:%d)\n",
|
|||
|
// __FILE__, __LINE__ );
|
|||
|
}
|
|||
|
for(item=CHAR_STARTITEMARRAY; item < CHAR_STARTITEMARRAY+10; item++){
|
|||
|
itemindex = CHAR_getItemIndex( enemyindex, item );
|
|||
|
if(ITEM_CHECKINDEX( itemindex ) == FALSE ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
if( ITEM_getWorkInt( itemindex, ITEM_WORKCHARAINDEX ) <= getFdnum() ){
|
|||
|
//print( "\nerr: <20><><EFBFBD><EFBFBD><EFBFBD>ҵ<EFBFBD>item<65><6D><EFBFBD><EFBFBD>ս<EFBFBD><D5BD>Ʒ(%s:%d)\n",
|
|||
|
// __FILE__, __LINE__ );
|
|||
|
continue;
|
|||
|
}
|
|||
|
CHAR_setItemIndex( enemyindex, item, -1 );
|
|||
|
k = RAND( 0, (allnum-1) );
|
|||
|
for(itemloop=0;itemloop<3;itemloop++){
|
|||
|
if(pEntryPlayer[k]->getitem[itemloop]==-1){
|
|||
|
pEntryPlayer[k]->getitem[itemloop]=itemindex;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( itemloop >= 3 ){
|
|||
|
if( RAND( 0, 1 ) ) {
|
|||
|
int olditem;
|
|||
|
int randwork = RAND( 0, 2 );
|
|||
|
olditem = pEntryPlayer[k]->getitem[randwork];
|
|||
|
pEntryPlayer[k]->getitem[randwork]=itemindex;
|
|||
|
if( BATTLE_ItemDelCheck( olditem ) == TRUE ){
|
|||
|
ITEM_endExistItemsOne(olditem);
|
|||
|
}
|
|||
|
}else {
|
|||
|
ITEM_endExistItemsOne(itemindex);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#define EXPGET_MAXLEVEL 5
|
|||
|
#define EXPGET_DIV 15
|
|||
|
exp = CHAR_getInt( enemyindex, CHAR_EXP );
|
|||
|
enemylevel = CHAR_getInt( enemyindex, CHAR_LV );
|
|||
|
#ifdef _SHARE_EXP
|
|||
|
for( k = 0; k<10; k ++ ){
|
|||
|
if(charaindex[k]==-1) continue;
|
|||
|
#else
|
|||
|
for( k = 0; charaindex[k] != -1; k ++ ){
|
|||
|
#endif
|
|||
|
int nowexp, b_level;
|
|||
|
int ridepet;
|
|||
|
b_level = CHAR_getInt( charaindex[k], CHAR_LV ) - enemylevel;
|
|||
|
if( b_level <= EXPGET_MAXLEVEL ){//<2F><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>5<EFBFBD><35><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
nowexp = exp;
|
|||
|
}else{//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>춹<EFBFBD><ECB6B9><EFBFBD>5<EFBFBD><35><EFBFBD><EFBFBD>
|
|||
|
b_level = EXPGET_MAXLEVEL+EXPGET_DIV - b_level;
|
|||
|
if( b_level > EXPGET_DIV ) b_level = EXPGET_DIV;
|
|||
|
if( b_level <= 0 ){
|
|||
|
nowexp = 1;
|
|||
|
}else{
|
|||
|
nowexp = exp * b_level / EXPGET_DIV;
|
|||
|
}
|
|||
|
if( nowexp < 1 ) nowexp = 1;
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex[k], CHAR_WORKGETEXP,
|
|||
|
CHAR_getWorkInt( charaindex[k], CHAR_WORKGETEXP ) + nowexp );
|
|||
|
CHAR_setInt( charaindex[k], CHAR_KILLPETCOUNT,
|
|||
|
CHAR_getInt( charaindex[k], CHAR_KILLPETCOUNT ) + 1 );
|
|||
|
if( CHAR_getInt( charaindex[k], CHAR_WHICHTYPE) == CHAR_TYPEPLAYER && CHAR_getInt( charaindex[k], CHAR_LV) >= 140 ){
|
|||
|
int toitemindex = -1;
|
|||
|
toitemindex = CHAR_getItemIndex( charaindex[k], 9);
|
|||
|
if(ITEM_CHECKINDEX(toitemindex)){
|
|||
|
if( strlen(ITEM_getChar( toitemindex, ITEM_USEFUNC))>0 && strcmp(ITEM_getChar( toitemindex, ITEM_USEFUNC),"ITEM_useExpLv")==0 ){
|
|||
|
char* itemarg = ITEM_getChar(toitemindex,ITEM_ARGUMENT);
|
|||
|
char buftest[128];
|
|||
|
int itemlv = 0;
|
|||
|
if(getStringFromIndexWithDelim(itemarg,"|", 1, buftest, sizeof(buftest)) == TRUE){
|
|||
|
itemlv = atoi(buftest);
|
|||
|
b_level = itemlv - enemylevel;
|
|||
|
if( b_level <= EXPGET_MAXLEVEL ){//<2F><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>5<EFBFBD><35><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
nowexp = exp;
|
|||
|
}else{//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>춹<EFBFBD><ECB6B9><EFBFBD>5<EFBFBD><35><EFBFBD><EFBFBD>
|
|||
|
b_level = EXPGET_MAXLEVEL+EXPGET_DIV - b_level;
|
|||
|
if( b_level > EXPGET_DIV ) b_level = EXPGET_DIV;
|
|||
|
if( b_level <= 0 ){
|
|||
|
nowexp = 1;
|
|||
|
}else{
|
|||
|
nowexp = exp * b_level / EXPGET_DIV;
|
|||
|
}
|
|||
|
if( nowexp < 1 ) nowexp = 1;
|
|||
|
}
|
|||
|
CHAR_setWorkInt(charaindex[k],CHAR_WORKITEMEXP,CHAR_getWorkInt(charaindex[k],CHAR_WORKITEMEXP)+nowexp);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
ridepet = BATTLE_getRidePet( charaindex[k] );
|
|||
|
//andy_edit
|
|||
|
if( CHAR_CHECKINDEX( ridepet) ){
|
|||
|
int nowexp, b_level;
|
|||
|
b_level = CHAR_getInt( ridepet, CHAR_LV ) - enemylevel;
|
|||
|
if( b_level <= EXPGET_MAXLEVEL ){
|
|||
|
nowexp = exp;
|
|||
|
}else{
|
|||
|
b_level = EXPGET_MAXLEVEL+EXPGET_DIV - b_level;
|
|||
|
if( b_level > EXPGET_DIV ) b_level = EXPGET_DIV;
|
|||
|
if( b_level <= 0 ){
|
|||
|
nowexp = 1;
|
|||
|
}else{
|
|||
|
nowexp = exp * b_level / EXPGET_DIV;
|
|||
|
}
|
|||
|
if( nowexp < 1 ) nowexp = 1;
|
|||
|
}
|
|||
|
nowexp *= 0.6;
|
|||
|
CHAR_setWorkInt( ridepet, CHAR_WORKGETEXP,
|
|||
|
CHAR_getWorkInt( ridepet, CHAR_WORKGETEXP ) + nowexp );
|
|||
|
CHAR_setInt( ridepet, CHAR_KILLPETCOUNT,
|
|||
|
CHAR_getInt( ridepet, CHAR_KILLPETCOUNT ) + 1 );
|
|||
|
}
|
|||
|
if( BattleArray[battleindex].norisk == 0
|
|||
|
&& CHAR_getInt( charaindex[k], CHAR_WHICHTYPE ) == CHAR_TYPEPET){
|
|||
|
if( CHAR_getInt( enemyindex, CHAR_LV ) > CHAR_getInt( charaindex[k], CHAR_LV ) ){
|
|||
|
CHAR_PetAddVariableAi( charaindex[k], AI_FIX_PETGOLDWIN );
|
|||
|
}else{
|
|||
|
CHAR_PetAddVariableAi( charaindex[k], AI_FIX_PETWIN );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
CHAR_setMaxExp( enemyindex, 0);
|
|||
|
}
|
|||
|
CHAR_setFlg( enemyindex, CHAR_ISDIE, 1 );
|
|||
|
#ifdef _PET_LIMITLEVEL
|
|||
|
Pet_Check_Die( enemyindex );
|
|||
|
#endif
|
|||
|
CHAR_setInt( enemyindex, CHAR_DEADCOUNT,
|
|||
|
CHAR_getInt( enemyindex, CHAR_DEADCOUNT ) + 1 );
|
|||
|
if( pEntryEnemy[i].flg & BENT_FLG_ULTIMATE ){
|
|||
|
BATTLE_UltimateExtra( battleindex, charaindex[0], enemyindex );
|
|||
|
}else{
|
|||
|
BATTLE_NormalDeadExtra( battleindex, charaindex[0], enemyindex );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _PET_LIMITLEVEL
|
|||
|
void Pet_Check_Die( int petindex )
|
|||
|
{
|
|||
|
|
|||
|
int LevelUpPoint;
|
|||
|
int vital, str, tgh, dex;
|
|||
|
float modai;
|
|||
|
|
|||
|
#define RAND(x,y) ((x-1)+1+ (int)( (double)(y-(x-1))*rand()/(RAND_MAX+1.0)) )
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ۻ<EFBFBD><DBBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Լ<EFBFBD><D4BC>ҳ<EFBFBD>
|
|||
|
if( CHAR_getInt( petindex, CHAR_PETID) == 718 ) {
|
|||
|
LevelUpPoint = CHAR_getInt( petindex, CHAR_ALLOCPOINT );
|
|||
|
vital = (( LevelUpPoint >> 24 ) & 0xff);
|
|||
|
str = (( LevelUpPoint >> 16 ) & 0xff);
|
|||
|
tgh = (( LevelUpPoint >> 8 ) & 0xff);
|
|||
|
dex = (( LevelUpPoint >> 0 ) & 0xff);
|
|||
|
// enemyindex = pEntryEnemy[i].charaindex;
|
|||
|
|
|||
|
//print("\n lvup <<%d %d %d %d>>", vital, str, tgh, dex );
|
|||
|
|
|||
|
vital = vital - RAND( 1, 8);
|
|||
|
str = str - RAND( 1, 4);
|
|||
|
tgh = tgh - RAND( 1, 4);
|
|||
|
dex = dex - RAND( 1, 4);
|
|||
|
//print("\n lvup <<%d %d %d %d>>", vital, str, tgh, dex );
|
|||
|
|
|||
|
if( vital < 0 ) vital = 0;
|
|||
|
if( str < 0 ) str = 0;
|
|||
|
if( tgh < 0 ) tgh = 0;
|
|||
|
if( dex < 0 ) dex = 0;
|
|||
|
|
|||
|
if( vital > 50 ) vital = 50;
|
|||
|
if( str > 50 ) str = 50;
|
|||
|
if( tgh > 50 ) tgh = 50;
|
|||
|
if( dex > 50 ) dex = 50;
|
|||
|
LevelUpPoint = ( vital << 24 ) + ( str << 16 ) + ( tgh << 8 ) + ( dex << 0 );
|
|||
|
CHAR_setInt( petindex, CHAR_ALLOCPOINT , LevelUpPoint );
|
|||
|
//print("\n lvup <<%d %d %d %d>>", vital, str, tgh, dex );
|
|||
|
modai = CHAR_getInt( petindex, CHAR_MODAI );
|
|||
|
modai = modai - ( (modai * 5) / 100 );
|
|||
|
CHAR_setInt( petindex, CHAR_MODAI, modai);
|
|||
|
|
|||
|
// LogPetPointChange(
|
|||
|
// CHAR_getChar( petindex, CHAR_OWNERCHARANAME),
|
|||
|
// CHAR_getChar( petindex, CHAR_OWNERCDKEY),
|
|||
|
// CHAR_getChar( petindex, CHAR_NAME),
|
|||
|
// petindex, 2,
|
|||
|
// CHAR_getInt( petindex, CHAR_LV),
|
|||
|
// "battle_die(ս<><D5BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)",
|
|||
|
// CHAR_getInt( petindex,CHAR_FLOOR),
|
|||
|
// 0,
|
|||
|
// 0
|
|||
|
// );
|
|||
|
}
|
|||
|
return;
|
|||
|
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
int BATTLE_AddProfit( int battleindex, int *pBidList)
|
|||
|
{
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
|
|||
|
if( BattleArray[battleindex].dpbattle == 1 ){
|
|||
|
return BATTLE_AddDuelPoint( battleindex, pBidList );
|
|||
|
}else{
|
|||
|
return BATTLE_AddExpItem( battleindex, pBidList );
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_TargetCheck(
|
|||
|
int battleindex,
|
|||
|
int defNo
|
|||
|
)
|
|||
|
{
|
|||
|
int defindex = BATTLE_No2Index( battleindex, defNo );
|
|||
|
|
|||
|
if( CHAR_CHECKINDEX( defindex ) == FALSE
|
|||
|
|| CHAR_getWorkInt( defindex, CHAR_WORKBATTLEMODE ) == 0
|
|||
|
|| CHAR_getFlg( defindex, CHAR_ISDIE ) == TRUE
|
|||
|
|| CHAR_getInt( defindex, CHAR_HP ) <= 0
|
|||
|
|| CHAR_getFlg( defindex, CHAR_ISATTACKED ) == FALSE
|
|||
|
|| CHAR_getWorkInt( defindex, CHAR_WORKBATTLEMODE ) == BATTLE_CHARMODE_RESCUE
|
|||
|
){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_TargetCheckDead(
|
|||
|
int battleindex,
|
|||
|
int defNo
|
|||
|
)
|
|||
|
{
|
|||
|
int defindex = BATTLE_No2Index( battleindex, defNo );
|
|||
|
if( CHAR_CHECKINDEX( defindex ) == FALSE
|
|||
|
|| CHAR_getWorkInt( defindex, CHAR_WORKBATTLEMODE ) == 0
|
|||
|
|| CHAR_getWorkInt( defindex, CHAR_WORKBATTLEMODE ) == BATTLE_CHARMODE_RESCUE
|
|||
|
|| CHAR_getFlg( defindex, CHAR_ISATTACKED ) == FALSE
|
|||
|
|| CHAR_getFlg( defindex, CHAR_ISDIE ) == FALSE ){
|
|||
|
//BATTLE_CHARMODE_RESCUE 5
|
|||
|
// print("\n [ %d, %d, %d, %d]",
|
|||
|
// CHAR_getWorkInt( defindex, CHAR_WORKBATTLEMODE ),
|
|||
|
// CHAR_getWorkInt( defindex, CHAR_WORKBATTLEMODE ),
|
|||
|
// CHAR_getFlg( defindex, CHAR_ISATTACKED ),
|
|||
|
// CHAR_getFlg( defindex, CHAR_ISDIE ));
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
int BATTLE_TargetAdjust( int battleindex, int charaindex, int myside )
|
|||
|
{
|
|||
|
int defNo;
|
|||
|
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
|
|||
|
if( BATTLE_TargetCheck( battleindex, defNo ) == FALSE ){
|
|||
|
defNo = BATTLE_DefaultAttacker( battleindex, 1 - myside );
|
|||
|
}
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, defNo );
|
|||
|
|
|||
|
return defNo;
|
|||
|
}
|
|||
|
|
|||
|
void Compute_Down( int charaindex, int rideindex, int *down1, int *down2, int flg)
|
|||
|
{
|
|||
|
int hp=0, pethp=0;
|
|||
|
int downs = 0;
|
|||
|
|
|||
|
*down1 = 0;
|
|||
|
*down2 = 0;
|
|||
|
//<2F><><EFBFBD><EFBFBD>
|
|||
|
downs =
|
|||
|
CHAR_getInt( charaindex, CHAR_VITAL )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_STR )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_DEX )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_TOUGH );
|
|||
|
if( (downs = (((downs/100)-20)/4)) < 1 )
|
|||
|
downs = 1;
|
|||
|
hp = CHAR_getInt( charaindex, CHAR_HP );
|
|||
|
if( hp <= downs ) downs = hp - 1;
|
|||
|
if( downs >= 0 ){
|
|||
|
hp = ((hp-downs)<1)?1:(hp-downs);
|
|||
|
CHAR_setInt( charaindex, CHAR_HP, hp );
|
|||
|
*down1 = downs;
|
|||
|
}
|
|||
|
if( flg == -1 ) {
|
|||
|
}else {//<2F><><EFBFBD>˳<EFBFBD><CBB3><EFBFBD>
|
|||
|
if( !CHAR_CHECKINDEX( rideindex)) return;
|
|||
|
downs =
|
|||
|
CHAR_getInt( rideindex, CHAR_VITAL )
|
|||
|
+ CHAR_getInt( rideindex, CHAR_STR )
|
|||
|
+ CHAR_getInt( rideindex, CHAR_DEX )
|
|||
|
+ CHAR_getInt( rideindex, CHAR_TOUGH );
|
|||
|
if( (downs = (((downs/100)-20)/4)) < 1 )
|
|||
|
downs = 1;
|
|||
|
pethp = CHAR_getInt( rideindex, CHAR_HP );
|
|||
|
if( pethp <= downs ) downs = pethp - 1;
|
|||
|
if( downs >= 0 ){
|
|||
|
pethp = ((pethp-downs)<1)?1:(pethp-downs);
|
|||
|
|
|||
|
CHAR_setInt( rideindex, CHAR_HP, pethp);
|
|||
|
*down2 = downs;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _PET_SKILL_SARS // WON ADD <20><>ɷ<EFBFBD><C9B7><EFBFBD><EFBFBD>
|
|||
|
void Compute_Down_SARS( int charaindex, int rideindex, int *down1, int *down2, int flg)
|
|||
|
{
|
|||
|
int hp=0, pethp=0;
|
|||
|
int downs = 0;
|
|||
|
|
|||
|
*down1 = 0;
|
|||
|
*down2 = 0;
|
|||
|
//<2F><><EFBFBD><EFBFBD>
|
|||
|
/*
|
|||
|
downs =
|
|||
|
CHAR_getInt( charaindex, CHAR_VITAL )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_STR )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_DEX )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_TOUGH );
|
|||
|
if( (downs = (((downs/100)-20)/4)) < 1 )
|
|||
|
downs = 1;
|
|||
|
*/
|
|||
|
|
|||
|
hp = CHAR_getInt( charaindex, CHAR_HP );
|
|||
|
downs = hp * 10 / 100;
|
|||
|
|
|||
|
if( hp <= downs ) downs = hp - 1;
|
|||
|
if( downs >= 0 ){
|
|||
|
hp = ((hp-downs)<1)?1:(hp-downs);
|
|||
|
CHAR_setInt( charaindex, CHAR_HP, hp );
|
|||
|
*down1 = downs;
|
|||
|
}
|
|||
|
if( flg == -1 ) {
|
|||
|
}else {//<2F><><EFBFBD>˳<EFBFBD><CBB3><EFBFBD>
|
|||
|
if( !CHAR_CHECKINDEX( rideindex)) return;
|
|||
|
downs =
|
|||
|
CHAR_getInt( rideindex, CHAR_VITAL )
|
|||
|
+ CHAR_getInt( rideindex, CHAR_STR )
|
|||
|
+ CHAR_getInt( rideindex, CHAR_DEX )
|
|||
|
+ CHAR_getInt( rideindex, CHAR_TOUGH );
|
|||
|
if( (downs = (((downs/100)-20)/4)) < 1 )
|
|||
|
downs = 1;
|
|||
|
pethp = CHAR_getInt( rideindex, CHAR_HP );
|
|||
|
if( pethp <= downs ) downs = pethp - 1;
|
|||
|
if( downs >= 0 ){
|
|||
|
pethp = ((pethp-downs)<1)?1:(pethp-downs);
|
|||
|
|
|||
|
CHAR_setInt( rideindex, CHAR_HP, pethp);
|
|||
|
*down2 = downs;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
void WorkIceCrackPlay(int charaindex, int cnt, int workicecracknum )
|
|||
|
{
|
|||
|
char szBuffer[256]="";
|
|||
|
int i,value=0;
|
|||
|
int battleindex = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEINDEX );
|
|||
|
int defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );//defNo = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
int ridepet = BATTLE_getRidePet( charaindex );
|
|||
|
int bid = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
value = CHAR_getWorkInt( charaindex, workicecracknum );
|
|||
|
|
|||
|
if( cnt <= 0 && value > 0 ){
|
|||
|
int damage=0, petdamage=0;
|
|||
|
|
|||
|
int ToList[SIDE_OFFSET*2+1];
|
|||
|
memset( ToList, -1, sizeof( ToList));
|
|||
|
BATTLE_MultiList( battleindex, TARGET_SIDE_1, ToList );
|
|||
|
// <20><>ħ<EFBFBD><C4A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>붯<EFBFBD><EBB6AF>
|
|||
|
analysis_profession_parameter( 2, 4, defNo, charaindex );
|
|||
|
PROFESSION_MAGIC_ATTAIC_Effect( battleindex, bid, ToList, 2);
|
|||
|
|
|||
|
if( defNo == 20 || defNo == 25 || defNo == 26 )//<2F><>
|
|||
|
bid = 0;
|
|||
|
else
|
|||
|
bid = 10;
|
|||
|
|
|||
|
|
|||
|
for( i = bid ; i < bid+10 ; i++ ) {
|
|||
|
int defType, charaidx, petidx;
|
|||
|
charaidx = BATTLE_No2Index( battleindex , i);
|
|||
|
if( CHAR_CHECKINDEX( charaidx ) ){
|
|||
|
if( CHAR_getInt( charaidx, CHAR_HP ) > 0 ){
|
|||
|
int hp,pethp = 0;
|
|||
|
petidx = BATTLE_getRidePet( charaidx );
|
|||
|
defType = CHAR_getInt(charaidx, CHAR_WHICHTYPE);
|
|||
|
CHAR_setWorkInt( charaidx, workicecracknum, 0 );
|
|||
|
|
|||
|
damage = value;
|
|||
|
|
|||
|
hp = CHAR_getInt( charaidx, CHAR_HP );
|
|||
|
if( petidx == -1 ) {
|
|||
|
hp -= damage;
|
|||
|
if( hp < 0 ) hp = 0;
|
|||
|
}else {
|
|||
|
int defquick=0, petquick=0, playerdamage=0;
|
|||
|
pethp = CHAR_getInt( petidx, CHAR_HP );
|
|||
|
defquick = CHAR_getWorkInt( charaidx, CHAR_WORKDEFENCEPOWER );
|
|||
|
petquick = CHAR_getWorkInt( petidx, CHAR_WORKDEFENCEPOWER );
|
|||
|
if( pethp > 0 ){
|
|||
|
playerdamage = (damage*petquick)/(defquick+petquick) +1;
|
|||
|
petdamage = damage - playerdamage +1 ;
|
|||
|
hp -= playerdamage;
|
|||
|
pethp -= petdamage;
|
|||
|
}else{
|
|||
|
hp -= damage;
|
|||
|
}
|
|||
|
if( hp < 0 ) hp = 0;
|
|||
|
if( pethp < 0 ) pethp = 0;
|
|||
|
CHAR_setInt( petidx, CHAR_HP, pethp );
|
|||
|
}
|
|||
|
|
|||
|
CHAR_setInt( charaidx, CHAR_HP, hp );
|
|||
|
|
|||
|
if( hp <= 0 ){
|
|||
|
CHAR_setFlg( charaidx, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setWorkInt( charaidx, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
if( pethp <= 0 ){
|
|||
|
CHAR_setFlg( petidx, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setWorkInt( ridepet, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
if( damage >= 0 ){
|
|||
|
sprintf( szBuffer , "%X|%X|%X|%X|" , i , i ,(int)(damage) , (int)(petdamage));
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
if( petidx != -1 && petdamage >= 0 ){
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
sprintf( szBuffer , "%X|" , 0x5711438 );
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
static int BATTLE_StatusSeq( int charaindex )
|
|||
|
{
|
|||
|
int cnt, i, bid, battleindex, down;
|
|||
|
char szBuffer[256]="";
|
|||
|
#ifdef _MAGIC_DEEPPOISON
|
|||
|
int defNo,defindex=0;
|
|||
|
char szCommand[1024];
|
|||
|
#endif
|
|||
|
int ridepet = BATTLE_getRidePet( charaindex );
|
|||
|
int hp=0, pethp=0;
|
|||
|
|
|||
|
|
|||
|
battleindex = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEINDEX );
|
|||
|
|
|||
|
#ifdef _MAGIC_DEEPPOISON
|
|||
|
defNo = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
defindex = BATTLE_No2Index( battleindex, defNo );
|
|||
|
#endif
|
|||
|
bid = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
if( BATTLE_CanMoveCheck( charaindex ) == FALSE ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
|
|||
|
for( i = 1; i < BATTLE_ST_END; i++ ){
|
|||
|
if( ( cnt = CHAR_getWorkInt( charaindex, StatusTbl[i] )) <= 0 )continue;
|
|||
|
CHAR_setWorkInt( charaindex, StatusTbl[i], --cnt );
|
|||
|
#ifdef _MAGIC_WEAKEN // <20><><EFBFBD><EFBFBD>
|
|||
|
if(CHAR_getWorkInt(charaindex,CHAR_WORKWEAKEN) > 0)
|
|||
|
CHAR_setWorkInt( charaindex, StatusTbl[i], cnt+1 );
|
|||
|
#endif
|
|||
|
#ifdef _MAGIC_BARRIER// vincent <20><><EFBFBD><EFBFBD>:ħ<><C4A7>
|
|||
|
if(CHAR_getWorkInt(charaindex,CHAR_WORKBARRIER) > 0)
|
|||
|
CHAR_setWorkInt( charaindex, StatusTbl[i], cnt+1 );
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
if( cnt <= 0 && ( StatusTbl[i] != CHAR_WORKICECRACK )
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
&& ( StatusTbl[i] != CHAR_WORKICECRACK2 )
|
|||
|
&& ( StatusTbl[i] != CHAR_WORKICECRACK3 )
|
|||
|
&& ( StatusTbl[i] != CHAR_WORKICECRACK4 )
|
|||
|
&& ( StatusTbl[i] != CHAR_WORKICECRACK5 )
|
|||
|
&& ( StatusTbl[i] != CHAR_WORKICECRACK6 )
|
|||
|
&& ( StatusTbl[i] != CHAR_WORKICECRACK7 )
|
|||
|
&& ( StatusTbl[i] != CHAR_WORKICECRACK8 )
|
|||
|
&& ( StatusTbl[i] != CHAR_WORKICECRACK9 )
|
|||
|
&& ( StatusTbl[i] != CHAR_WORKICECRACK10 )
|
|||
|
#endif
|
|||
|
){ // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
#else
|
|||
|
if( cnt <= 0 ){
|
|||
|
#endif
|
|||
|
BATTLE_BadStatusString( bid, 0 );
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ), "(%s)<29><>(%s)<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( charaindex ), aszStatusFull[i] );
|
|||
|
// BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
//Terry del
|
|||
|
// sprintf( szBuffer, "BM|%X|%X|", bid, 0 );
|
|||
|
// BATTLESTR_ADD( szBuffer );
|
|||
|
#ifdef _MAGIC_NOCAST
|
|||
|
if( StatusTbl[i] == CHAR_WORKNOCAST ){
|
|||
|
lssproto_NC_send( getfdFromCharaIndex( charaindex ), 0);//<2F><>ԭ
|
|||
|
}
|
|||
|
#endif
|
|||
|
if( StatusTbl[i] == CHAR_WORKDRUNK ){
|
|||
|
if( ridepet != -1 ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKQUICK,
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKQUICK )
|
|||
|
+ CHAR_getWorkInt( ridepet, CHAR_WORKQUICK ) );
|
|||
|
}else{
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKQUICK,
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKQUICK ) * 2 );
|
|||
|
}
|
|||
|
}
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
switch( StatusTbl[i] ){
|
|||
|
|
|||
|
case CHAR_WORKPOISON:
|
|||
|
{
|
|||
|
int petdown=-1;
|
|||
|
Compute_Down( charaindex, ridepet, &down, &petdown, ridepet);
|
|||
|
if( down >= 0 ){
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ),
|
|||
|
// "(%s)<29><>(%s)<29>ܵ<EFBFBD>(%d)<29><><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( charaindex ),
|
|||
|
// aszStatusFull[i],
|
|||
|
// down );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
|
|||
|
#ifdef _NOTRIDE_
|
|||
|
sprintf( szBuffer, "BD|r%X|0|0|%X|", bid, (int)(down) );
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
#else
|
|||
|
sprintf( szBuffer, "BD|r%X|0|0|%X|p%X|", bid, (int)(down), (int)(petdown) );
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
#endif
|
|||
|
}
|
|||
|
if( ridepet != -1 && petdown >= 0 ){
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ),
|
|||
|
// "(%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)<29><>(%s)<29>ܵ<EFBFBD>(%d)<29><><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( charaindex ),
|
|||
|
// aszStatusFull[i], petdown );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
}
|
|||
|
}
|
|||
|
break;
|
|||
|
#ifdef _MAGIC_DEEPPOISON
|
|||
|
case CHAR_WORKDEEPPOISON:
|
|||
|
if(CHAR_getInt( defindex, CHAR_HP ) <= 1){
|
|||
|
snprintf( szCommand, sizeof( szCommand ),"Bd|a%X|r%X|f%X|d%X|p%X|FF|",defNo,defNo,BCF_NORMAL,1, 0 );
|
|||
|
BATTLESTR_ADD( szCommand );
|
|||
|
CHAR_setInt( defindex, CHAR_HP,0);
|
|||
|
CHAR_setWorkInt( defindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
CHAR_setFlg( defindex, CHAR_ISDIE, 1 );
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
if(CHAR_getWorkInt( defindex, CHAR_WORKDEEPPOISON) <= 1){
|
|||
|
snprintf( szCommand, sizeof( szCommand ),"Bd|a%X|r%X|f%X|d%X|p%X|FF|",defNo,defNo,BCF_NORMAL,CHAR_getInt( charaindex, CHAR_HP), 0 );
|
|||
|
BATTLESTR_ADD( szCommand );
|
|||
|
CHAR_setInt( defindex, CHAR_HP,0);
|
|||
|
CHAR_setFlg( defindex, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setWorkInt( defindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
sprintf(szBuffer, "%s<><73><EFBFBD>о綾δ<E7B6BE><CEB4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!!", CHAR_getChar( defindex, CHAR_NAME ));
|
|||
|
if( CHAR_getInt( defindex, CHAR_WHICHTYPE ) == CHAR_TYPEPET ){
|
|||
|
CHAR_talkToCli( CHAR_getWorkInt(defindex, CHAR_WORKPLAYERINDEX), -1, szBuffer, CHAR_COLORYELLOW);
|
|||
|
}else{
|
|||
|
CHAR_talkToCli( defindex, -1, szBuffer, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
if( ridepet == -1 ){// Robin 0728 ride Pet
|
|||
|
down =
|
|||
|
CHAR_getInt( charaindex, CHAR_VITAL )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_STR )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_DEX )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_TOUGH );
|
|||
|
down = ( down / 100 - 20 ) / 4;
|
|||
|
if( down < 1 ) down = 1;
|
|||
|
hp = CHAR_getInt( charaindex, CHAR_HP );
|
|||
|
if( hp <= down ) down = hp - 1;
|
|||
|
if( down >= 0 ){
|
|||
|
CHAR_setInt( charaindex, CHAR_HP, hp - down );
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ),
|
|||
|
// "(%s)<29><>(%s)<29>ܵ<EFBFBD>(%d)<29><><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( charaindex ),
|
|||
|
// aszStatusFull[i],
|
|||
|
// down );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
#ifdef _NOTRIDE_
|
|||
|
sprintf( szBuffer, "BD|r%X|0|0|%X|", bid, (int)(down) );
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
#else
|
|||
|
sprintf( szBuffer, "BD|r%X|0|0|%X|p%X|", bid, (int)(down), 0 );
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
#endif
|
|||
|
}
|
|||
|
break;
|
|||
|
}else {
|
|||
|
int petdown;
|
|||
|
down =
|
|||
|
CHAR_getInt( charaindex, CHAR_VITAL )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_STR )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_DEX )
|
|||
|
+ CHAR_getInt( charaindex, CHAR_TOUGH );
|
|||
|
petdown =
|
|||
|
CHAR_getInt( ridepet, CHAR_VITAL )
|
|||
|
+ CHAR_getInt( ridepet, CHAR_STR )
|
|||
|
+ CHAR_getInt( ridepet, CHAR_DEX )
|
|||
|
+ CHAR_getInt( ridepet, CHAR_TOUGH );
|
|||
|
down = ( down / 100 - 20 ) / 4;
|
|||
|
petdown = ( petdown / 100 - 20 ) /4;
|
|||
|
if( down < 1 ) down = 1;
|
|||
|
if( petdown < 1 ) petdown = 1;
|
|||
|
hp = CHAR_getInt( charaindex, CHAR_HP );
|
|||
|
pethp = CHAR_getInt( ridepet, CHAR_HP );
|
|||
|
if( hp <= down ) down = hp - 1;
|
|||
|
if( pethp <= petdown ) petdown = pethp - 1;
|
|||
|
if( down >= 0 ){
|
|||
|
CHAR_setInt( charaindex, CHAR_HP, hp - down );
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ),
|
|||
|
// "(%s)<29><>(%s)<29>ܵ<EFBFBD>(%d)<29><><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( charaindex ),
|
|||
|
// aszStatusFull[i],
|
|||
|
// down );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
#ifdef _NOTRIDE_
|
|||
|
sprintf( szBuffer, "BD|r%X|0|0|%X|", bid, (int)(down) );
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
#else
|
|||
|
sprintf( szBuffer, "BD|r%X|0|0|%X|p%X|", bid, (int)(down), (int)(petdown) );
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
#endif
|
|||
|
}
|
|||
|
if( petdown >= 0 ){
|
|||
|
CHAR_setInt( ridepet, CHAR_HP, pethp - petdown );
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ),
|
|||
|
// "(%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)<29><>(%s)<29>ܵ<EFBFBD>(%d)<29><><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( charaindex ),
|
|||
|
// aszStatusFull[i],
|
|||
|
// petdown );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _MAGIC_NOCAST // <20><><EFBFBD><EFBFBD>:<3A><>Ĭ
|
|||
|
case CHAR_WORKNOCAST:
|
|||
|
lssproto_NC_send( getfdFromCharaIndex( charaindex ), 1);//<2F><>Ĭ
|
|||
|
break;
|
|||
|
#endif
|
|||
|
case CHAR_WORKCONFUSION:
|
|||
|
{ int side, pos, defNo, lop;
|
|||
|
if( RAND( 1, 100 ) > 80 ){
|
|||
|
break;
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
side = RAND( 0, 1 );
|
|||
|
pos = RAND( 0, 9 );
|
|||
|
for( lop = 0; lop < SIDE_OFFSET; lop ++ ){
|
|||
|
if( ++pos >= SIDE_OFFSET )pos = 0;
|
|||
|
defNo = side * SIDE_OFFSET + pos;
|
|||
|
if( defNo == bid ) continue;
|
|||
|
if( BATTLE_TargetCheck( battleindex, defNo ) == TRUE ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, defNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( lop >= SIDE_OFFSET ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, -1 );
|
|||
|
}
|
|||
|
}
|
|||
|
break;
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
case CHAR_WORKANNEX://<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{ int side, pos, defNo, lop;
|
|||
|
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
side = RAND( 0, 1 );
|
|||
|
pos = RAND( 0, 9 );
|
|||
|
for( lop = 0; lop < SIDE_OFFSET; lop ++ ){
|
|||
|
if( ++pos >= SIDE_OFFSET )pos = 0;
|
|||
|
defNo = side * SIDE_OFFSET + pos;
|
|||
|
if( defNo == bid ) continue;
|
|||
|
if( BATTLE_TargetCheck( battleindex, defNo ) == TRUE ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, defNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( lop >= SIDE_OFFSET ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, -1 );
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
case CHAR_WORKDRUNK:
|
|||
|
break;
|
|||
|
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
case CHAR_WORKOBLIVION: // <20><><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
// <20>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( cnt <= 1 ){
|
|||
|
int defNo = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
int toNo = defNo - 5;
|
|||
|
int toNoindex = -1, pet_no = -1;
|
|||
|
char msg[20];
|
|||
|
|
|||
|
memset( msg, -1, sizeof(msg) );
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>index
|
|||
|
toNoindex = BATTLE_No2Index( battleindex, toNo );
|
|||
|
CHAR_setWorkInt(charaindex, StatusTbl[BATTLE_ST_OBLIVION], 0 );
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
pet_no = CHAR_getInt( toNoindex, CHAR_DEFAULTPET );
|
|||
|
sprintf( msg, "W%d", pet_no );
|
|||
|
CHAR_sendStatusString( toNoindex, msg );
|
|||
|
|
|||
|
|
|||
|
BATTLE_BadStatusString( bid, 0 );
|
|||
|
sprintf( szBuffer, "BM|%X|%X|", bid, 0 );
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
case CHAR_WORK_F_ENCLOSE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int ToList[SIDE_OFFSET*2+1];
|
|||
|
int defNo = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
int old_hp = CHAR_getInt( charaindex, CHAR_HP );
|
|||
|
int dec_hp = 0, hp = 0;
|
|||
|
int DAMAGE = 50;
|
|||
|
|
|||
|
memset( ToList, -1, sizeof( ToList));
|
|||
|
BATTLE_MultiList( battleindex, defNo, ToList );
|
|||
|
BATTLE_MagicEffect( battleindex, defNo, ToList, 101699, 101699 );
|
|||
|
|
|||
|
// ȡħ<C8A1><C4A7><EFBFBD>˺<EFBFBD>ֵ
|
|||
|
DAMAGE = DAMAGE * cnt;
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
dec_hp = PROFESSION_MAGIC_GET_DAMAGE( charaindex, charaindex, 1, DAMAGE, 0);
|
|||
|
#else
|
|||
|
dec_hp = PROFESSION_MAGIC_GET_DAMAGE( charaindex, charaindex, 1, DAMAGE );
|
|||
|
#endif
|
|||
|
hp = old_hp - dec_hp;
|
|||
|
|
|||
|
if( hp <= 0 ){
|
|||
|
CHAR_setInt( charaindex, CHAR_HP, 0 );
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}else{
|
|||
|
CHAR_setInt( charaindex, CHAR_HP, hp );
|
|||
|
}
|
|||
|
|
|||
|
sprintf( szCommand, "BD|r%X|0|0|%X|", defNo, dec_hp );
|
|||
|
BATTLESTR_ADD( szCommand );
|
|||
|
|
|||
|
break;
|
|||
|
}
|
|||
|
case CHAR_WORK_I_ENCLOSE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int old_dex = CHAR_getInt( charaindex, CHAR_DEX );
|
|||
|
int dex = 0;
|
|||
|
int ToList[SIDE_OFFSET*2+1];
|
|||
|
int defNo = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
|
|||
|
memset( ToList, -1, sizeof( ToList));
|
|||
|
BATTLE_MultiList( battleindex, defNo, ToList );
|
|||
|
BATTLE_MagicEffect( battleindex, defNo, ToList, 27692, 101700 );
|
|||
|
|
|||
|
dex = old_dex * 0.9;
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKFIXDEX, dex );
|
|||
|
sprintf( szCommand, "BD|r%X|0|6|%X|", defNo, (-1) * (int)((old_dex * 0.1) / 100) );
|
|||
|
BATTLESTR_ADD( szCommand );
|
|||
|
|
|||
|
break;
|
|||
|
}
|
|||
|
case CHAR_WORKRESIST_F: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
// <20>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( cnt <= 1 ){
|
|||
|
int add_value = 0;
|
|||
|
int old_value = 0;
|
|||
|
old_value = CHAR_getWorkInt( charaindex, CHAR_WORK_F_RESIST );
|
|||
|
add_value = CHAR_getWorkInt( charaindex, CHAR_WORKMODRESIST_F );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_F_RESIST, old_value - add_value );
|
|||
|
CHAR_talkToCli( charaindex, -1 , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Իָ<EFBFBD>" , CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
case CHAR_WORKRESIST_I: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
// <20>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( cnt <= 1 ){
|
|||
|
int add_value = 0;
|
|||
|
int old_value = 0;
|
|||
|
old_value = CHAR_getWorkInt( charaindex, CHAR_WORK_I_RESIST );
|
|||
|
add_value = CHAR_getWorkInt( charaindex, CHAR_WORKMODRESIST_I );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_I_RESIST, old_value - add_value );
|
|||
|
CHAR_talkToCli( charaindex, -1 , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Իָ<EFBFBD>" , CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
|
|||
|
break;
|
|||
|
}
|
|||
|
case CHAR_WORKRESIST_T: // <20><EFBFBD><D7BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
// <20>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( cnt <= 1 ){
|
|||
|
int add_value = 0;
|
|||
|
int old_value = 0;
|
|||
|
old_value = CHAR_getWorkInt( charaindex, CHAR_WORK_T_RESIST );
|
|||
|
add_value = CHAR_getWorkInt( charaindex, CHAR_WORKMODRESIST_T );
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_T_RESIST, old_value - add_value );
|
|||
|
CHAR_talkToCli( charaindex, -1 , "<EFBFBD><EFBFBD><EFBFBD>Իָ<EFBFBD>" , CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
|
|||
|
break;
|
|||
|
}
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
/* case CHAR_WORKERSIST_F_I_T: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><D7BF><EFBFBD>
|
|||
|
{
|
|||
|
// <20>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( cnt <= 1 ){
|
|||
|
int add_value = 0;
|
|||
|
int old_value = 0;
|
|||
|
old_value = CHAR_getWorkInt( charaindex, CHAR_WORK_F_RESIST );
|
|||
|
add_value = CHAR_getWorkInt( charaindex, CHAR_WORKMODRESIST_F );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_F_RESIST, old_value - add_value );
|
|||
|
CHAR_talkToCli( charaindex, -1 , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Իָ<EFBFBD>" , CHAR_COLORYELLOW );
|
|||
|
|
|||
|
old_value = CHAR_getWorkInt( charaindex, CHAR_WORK_I_RESIST );
|
|||
|
add_value = CHAR_getWorkInt( charaindex, CHAR_WORKMODRESIST_I );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_I_RESIST, old_value - add_value );
|
|||
|
CHAR_talkToCli( charaindex, -1 , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Իָ<EFBFBD>" , CHAR_COLORYELLOW );
|
|||
|
|
|||
|
old_value = CHAR_getWorkInt( charaindex, CHAR_WORK_T_RESIST );
|
|||
|
add_value = CHAR_getWorkInt( charaindex, CHAR_WORKMODRESIST_T );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_T_RESIST, old_value - add_value );
|
|||
|
CHAR_talkToCli( charaindex, -1 , "<EFBFBD><EFBFBD><EFBFBD>Իָ<EFBFBD>" , CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
|
|||
|
break;
|
|||
|
}*/
|
|||
|
case CHAR_WORKFEAR:
|
|||
|
if( cnt <= 0 )
|
|||
|
CHAR_talkToCli( charaindex, -1 , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ָ<EFBFBD>" , CHAR_COLORYELLOW );
|
|||
|
break;
|
|||
|
#endif
|
|||
|
case CHAR_WORKINSTIGATE: // <20><><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int side, pos, defNo, lop, rate=0;
|
|||
|
if( RAND( 1, 100 ) > 80 ){
|
|||
|
break;
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
side = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLESIDE );
|
|||
|
|
|||
|
rate = CHAR_getWorkInt( charaindex, CHAR_WORKMODINSTIGATE);
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXSTR, (CHAR_getWorkInt( charaindex, CHAR_WORKFIXSTR) * (100 - rate) /100 ));
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXTOUGH, (CHAR_getWorkInt( charaindex, CHAR_WORKFIXTOUGH) * (100 - rate) /100 ));
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXDEX, (CHAR_getWorkInt( charaindex, CHAR_WORKFIXDEX) * (100 - rate) /100 ));
|
|||
|
|
|||
|
pos = RAND( 0, 9 );
|
|||
|
for( lop = 0; lop < SIDE_OFFSET; lop ++ ){
|
|||
|
if( ++pos >= SIDE_OFFSET )pos = 0;
|
|||
|
defNo = side * SIDE_OFFSET + pos;
|
|||
|
if( defNo == bid ) continue;
|
|||
|
if( BATTLE_TargetCheck( battleindex, defNo ) == TRUE ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, defNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( lop >= SIDE_OFFSET ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, -1 );
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
/*
|
|||
|
case CHAR_WORK_FOCUS: // רעս<D7A2><D5BD>
|
|||
|
{
|
|||
|
if( cnt <= 1 ){
|
|||
|
int atk_to_index = CHAR_getWorkInt( charaindex, CHAR_WORKMOD_FOCUS );
|
|||
|
int atk_to_no = BATTLE_Index2No( battleindex, atk_to_index );
|
|||
|
|
|||
|
if( BATTLE_TargetCheck( battleindex, atk_to_no ) != TRUE ) break;
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, atk_to_no );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE, BATTLE_CHARMODE_C_OK );
|
|||
|
CHAR_SETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3, 1 );
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
*/
|
|||
|
case CHAR_WORKSIGN: // һ<><D2BB><EFBFBD><EFBFBD>Ѫ
|
|||
|
{
|
|||
|
// <20><>Ѫ
|
|||
|
int skill_level = CHAR_getWorkInt( charaindex, CHAR_WORKMODSIGN );
|
|||
|
int old_hp = CHAR_getInt( charaindex, CHAR_HP );
|
|||
|
int old_mp = CHAR_getInt( charaindex, CHAR_MP );
|
|||
|
int to_index = CHAR_getWorkInt( charaindex, CHAR_WORKSIGNID );
|
|||
|
int to_old_hp = CHAR_getInt( to_index, CHAR_HP );
|
|||
|
int to_old_mp = CHAR_getInt( to_index, CHAR_MP );
|
|||
|
int dec_hp=0, dec_mp=0, rate=0, hp=0, mp=0, add_hp=0, add_mp=0;
|
|||
|
|
|||
|
if( old_hp <= 0 ) break;
|
|||
|
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
if( skill_level >= 10 ){
|
|||
|
dec_hp = 200;
|
|||
|
dec_mp = 30;
|
|||
|
}else if( skill_level > 6 ){
|
|||
|
dec_hp = 150;
|
|||
|
dec_mp = 20;
|
|||
|
}else if( skill_level > 3 ){
|
|||
|
dec_hp = 100;
|
|||
|
dec_mp = 15;
|
|||
|
}else{
|
|||
|
dec_hp = 50;
|
|||
|
dec_mp = 10;
|
|||
|
}
|
|||
|
// <20><><EFBFBD><EFBFBD>hp
|
|||
|
if( skill_level > 8 ) rate = 100;
|
|||
|
else if( skill_level > 7 ) rate = 50;
|
|||
|
else rate = 0;
|
|||
|
add_hp = dec_hp * rate / 100;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>mp
|
|||
|
if( skill_level > 8 ) rate = 100;
|
|||
|
else rate = 0;
|
|||
|
add_mp = dec_mp * rate / 100;
|
|||
|
|
|||
|
#else
|
|||
|
if( skill_level >= 10 ){
|
|||
|
dec_hp = 300;
|
|||
|
dec_mp = 70;
|
|||
|
}else if( skill_level >= 9 ){
|
|||
|
dec_hp = 200;
|
|||
|
dec_mp = 50;
|
|||
|
}else if( skill_level >= 7 ){
|
|||
|
dec_hp = 150;
|
|||
|
dec_mp = 30;
|
|||
|
}else if( skill_level >= 4 ){
|
|||
|
dec_hp = 100;
|
|||
|
dec_mp = 20;
|
|||
|
}else{
|
|||
|
dec_hp = 50;
|
|||
|
dec_mp = 10;
|
|||
|
}
|
|||
|
// <20><><EFBFBD><EFBFBD>hp
|
|||
|
if( skill_level >= 9 ) rate = 80;
|
|||
|
else if( skill_level >= 7 ) rate = (skill_level - 1 ) * 10;
|
|||
|
else if( skill_level >= 4 ) rate = (skill_level - 2 ) * 10;
|
|||
|
else rate = skill_level * 10;
|
|||
|
add_hp = dec_hp * rate / 100;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>mp
|
|||
|
if( skill_level >= 9 ) rate = 100;
|
|||
|
else if( skill_level >= 7 ) rate = (skill_level - 1 ) * 10;
|
|||
|
else if( skill_level >= 4 ) rate = (skill_level - 2 ) * 10;
|
|||
|
else rate = skill_level * 10;
|
|||
|
add_mp = dec_mp * rate / 100;
|
|||
|
#endif
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>Ѫ<EFBFBD>Ƶ<EFBFBD><C6B5>˼<EFBFBD> HP
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER ){
|
|||
|
mp = old_mp - dec_mp;
|
|||
|
if( mp < 0 ){
|
|||
|
mp = 0;
|
|||
|
add_mp=0;
|
|||
|
}
|
|||
|
CHAR_setInt(charaindex, CHAR_MP, mp);
|
|||
|
}
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>Ѫ<EFBFBD>Ƶ<EFBFBD><C6B5>˼<EFBFBD> HP
|
|||
|
if( ridepet == -1 ) {
|
|||
|
hp = old_hp - dec_hp;
|
|||
|
if( hp < 0 ) hp = 0;
|
|||
|
CHAR_setInt(charaindex, CHAR_HP, hp);
|
|||
|
sprintf( szCommand, "BD|r%X|0|0|%X|m%X|", bid, dec_hp, dec_mp );
|
|||
|
}else{
|
|||
|
int pet_old_hp = CHAR_getInt( ridepet, CHAR_HP );
|
|||
|
int pet_hp=0;
|
|||
|
|
|||
|
dec_hp /= 2;
|
|||
|
hp = old_hp - dec_hp;
|
|||
|
pet_hp = pet_old_hp - dec_hp;
|
|||
|
|
|||
|
if( hp < 0 ) hp = 0;
|
|||
|
if( pet_hp < 0 ) pet_hp = 0;
|
|||
|
|
|||
|
CHAR_setInt(charaindex, CHAR_HP, hp);
|
|||
|
CHAR_setInt(ridepet, CHAR_HP, pet_hp);
|
|||
|
if( pet_hp <= 0 ){
|
|||
|
CHAR_setFlg( ridepet, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setWorkInt( ridepet, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
sprintf( szCommand, "BD|r%X|0|0|%X|m%X|p%X|", bid, dec_hp, dec_mp, dec_hp );
|
|||
|
}
|
|||
|
|
|||
|
if( hp <= 0 ){
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
|
|||
|
BATTLESTR_ADD( szCommand );
|
|||
|
|
|||
|
// ʹ<><CAB9><EFBFBD><EFBFBD>Ѫ<EFBFBD>Ƶ<EFBFBD><C6B5>˼<EFBFBD> HP<48><50>MP
|
|||
|
if( (add_hp > 0) && (to_old_hp > 0) ){
|
|||
|
int to_bid=0, to_hp=0, to_mp=0;
|
|||
|
|
|||
|
to_bid = BATTLE_Index2No( battleindex, to_index );
|
|||
|
sprintf( szCommand, "BD|r%X|0|1|%X|m%X|", to_bid, add_hp, add_mp );
|
|||
|
BATTLESTR_ADD( szCommand );
|
|||
|
|
|||
|
to_hp = to_old_hp + add_hp;
|
|||
|
if( to_hp > CHAR_getWorkInt( to_index , CHAR_WORKMAXHP ) )
|
|||
|
to_hp = CHAR_getWorkInt( to_index , CHAR_WORKMAXHP );
|
|||
|
|
|||
|
to_mp = to_old_mp + add_mp;
|
|||
|
if( to_mp > CHAR_getWorkInt( to_index , CHAR_WORKMAXMP ) )
|
|||
|
to_mp = CHAR_getWorkInt( to_index , CHAR_WORKMAXMP );
|
|||
|
|
|||
|
CHAR_setInt(to_index, CHAR_HP, to_hp);
|
|||
|
CHAR_setInt(to_index, CHAR_MP, to_mp);
|
|||
|
}
|
|||
|
|
|||
|
break;
|
|||
|
}
|
|||
|
case CHAR_WORKBLOODWORMS: // <20><>Ѫ<EFBFBD><D1AA>
|
|||
|
{
|
|||
|
// <20><>Ѫ
|
|||
|
int skill_level = CHAR_getWorkInt( charaindex, CHAR_WORKMODBLOODWORMS );
|
|||
|
int old_hp = CHAR_getInt( charaindex, CHAR_HP );
|
|||
|
int to_index = CHAR_getWorkInt( charaindex, CHAR_WORKBLOODWORMSID );
|
|||
|
int to_old_hp = CHAR_getInt( to_index, CHAR_HP );
|
|||
|
int dec_hp=0, rate=0, hp=0, add_hp=0;
|
|||
|
|
|||
|
skill_level = PROFESSION_CHANGE_SKILL_LEVEL_M( skill_level );
|
|||
|
|
|||
|
if( old_hp <= 0 ) break;
|
|||
|
|
|||
|
dec_hp = skill_level * 10 + 30;
|
|||
|
if( skill_level >= 10 ) rate = 20;
|
|||
|
else if( skill_level >= 7 ) rate = 15;
|
|||
|
else if( skill_level >= 5 ) rate = 10;
|
|||
|
else rate = 5;
|
|||
|
|
|||
|
add_hp = dec_hp * rate / 100;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>Ѫ<EFBFBD>Ƶ<EFBFBD><C6B5>˼<EFBFBD> HP
|
|||
|
if( ridepet == -1 ) {
|
|||
|
hp = old_hp - dec_hp;
|
|||
|
if( hp < 0 ) hp = 0;
|
|||
|
|
|||
|
CHAR_setInt(charaindex, CHAR_HP, hp);
|
|||
|
sprintf( szCommand, "BD|r%X|0|0|%X|", bid, dec_hp );
|
|||
|
}else{
|
|||
|
int pet_old_hp = CHAR_getInt( ridepet, CHAR_HP );
|
|||
|
int pet_hp=0;
|
|||
|
|
|||
|
dec_hp /= 2;
|
|||
|
hp = old_hp - dec_hp;
|
|||
|
pet_hp = pet_old_hp - dec_hp;
|
|||
|
|
|||
|
if( hp < 0 ) hp = 0;
|
|||
|
if( pet_hp < 0 ) pet_hp = 0;
|
|||
|
|
|||
|
CHAR_setInt(charaindex, CHAR_HP, hp);
|
|||
|
CHAR_setInt(ridepet, CHAR_HP, pet_hp);
|
|||
|
if( pet_hp == 0 ){
|
|||
|
CHAR_setFlg( ridepet, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setWorkInt( ridepet, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
sprintf( szCommand, "BD|r%X|0|0|%X|p%X|", bid, dec_hp, dec_hp );
|
|||
|
}
|
|||
|
|
|||
|
if( hp <= 0 ){
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
|
|||
|
BATTLESTR_ADD( szCommand );
|
|||
|
|
|||
|
// ʹ<><CAB9><EFBFBD><EFBFBD>Ѫ<EFBFBD>Ƶ<EFBFBD><C6B5>˼<EFBFBD> HP
|
|||
|
if( (add_hp > 0) && (to_old_hp > 0) ){
|
|||
|
int to_bid=0, to_hp=0;
|
|||
|
|
|||
|
to_bid = BATTLE_Index2No( battleindex, to_index );
|
|||
|
sprintf( szCommand, "BD|r%X|0|1|%X|", to_bid, add_hp );
|
|||
|
BATTLESTR_ADD( szCommand );
|
|||
|
|
|||
|
to_hp = to_old_hp + add_hp;
|
|||
|
if( to_hp > CHAR_getWorkInt( to_index , CHAR_WORKMAXHP ) )
|
|||
|
to_hp = CHAR_getWorkInt( to_index , CHAR_WORKMAXHP );
|
|||
|
|
|||
|
CHAR_setInt(to_index, CHAR_HP, to_hp);
|
|||
|
}
|
|||
|
|
|||
|
break;
|
|||
|
}
|
|||
|
case CHAR_WORKICEARROW: // <20><><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
// <20><><EFBFBD><EFBFBD>
|
|||
|
int dec_dex = CHAR_getWorkInt( charaindex, CHAR_WORKMODICEARROW );
|
|||
|
int old_dex = CHAR_getWorkInt( charaindex, CHAR_WORKFIXDEX );
|
|||
|
int dex=0;
|
|||
|
|
|||
|
dex = old_dex * ( 100 - dec_dex ) / 100;
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKFIXDEX, dex);
|
|||
|
sprintf( szCommand, "BD|r%X|0|6|%X|", bid, (-1) * dec_dex );
|
|||
|
|
|||
|
BATTLESTR_ADD( szCommand );
|
|||
|
|
|||
|
break;
|
|||
|
}
|
|||
|
case CHAR_WORKICECRACK: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int value=0;
|
|||
|
int defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );//defNo = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
|
|||
|
value = CHAR_getWorkInt( charaindex, CHAR_WORKMODICECRACK );
|
|||
|
|
|||
|
if( cnt <= 0 && value > 0 ){
|
|||
|
int damage=0, petdamage=0;
|
|||
|
|
|||
|
int ToList[SIDE_OFFSET*2+1];
|
|||
|
memset( ToList, -1, sizeof( ToList));
|
|||
|
BATTLE_MultiList( battleindex, TARGET_SIDE_1, ToList );
|
|||
|
// <20><>ħ<EFBFBD><C4A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>붯<EFBFBD><EBB6AF>
|
|||
|
analysis_profession_parameter( 2, 4, defNo, charaindex );
|
|||
|
PROFESSION_MAGIC_ATTAIC_Effect( battleindex, bid, ToList, 2);
|
|||
|
|
|||
|
if( defNo == 20 || defNo == 25 || defNo == 26 )//<2F><>
|
|||
|
bid = 0;
|
|||
|
else
|
|||
|
bid = 10;
|
|||
|
|
|||
|
|
|||
|
for( i = bid ; i < bid+10 ; i++ ) {
|
|||
|
int defType, charaidx, petidx;
|
|||
|
charaidx = BATTLE_No2Index( battleindex , i);
|
|||
|
if( CHAR_CHECKINDEX( charaidx ) ){
|
|||
|
if( CHAR_getInt( charaidx, CHAR_HP ) > 0 ){
|
|||
|
petidx = BATTLE_getRidePet( charaidx );
|
|||
|
defType = CHAR_getInt(charaidx, CHAR_WHICHTYPE);
|
|||
|
CHAR_setWorkInt( charaidx, CHAR_WORKICECRACK, 0 );
|
|||
|
//BATTLE_BadStatusString( bid, 0 );
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ), "(%s)<29><>(%s)<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( charaindex ), aszStatusFull[i] );
|
|||
|
// BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
//sprintf( szBuffer, "BM|%X|%X|", bid, 0 );
|
|||
|
//BATTLESTR_ADD( szBuffer );
|
|||
|
|
|||
|
damage = value;
|
|||
|
|
|||
|
hp = CHAR_getInt( charaidx, CHAR_HP );
|
|||
|
if( petidx == -1 ) {
|
|||
|
hp -= damage;
|
|||
|
if( hp < 0 ) hp = 0;
|
|||
|
}
|
|||
|
else{
|
|||
|
int defquick=0, petquick=0, playerdamage=0;
|
|||
|
pethp = CHAR_getInt( petidx, CHAR_HP );
|
|||
|
defquick = CHAR_getWorkInt( charaidx, CHAR_WORKDEFENCEPOWER );
|
|||
|
petquick = CHAR_getWorkInt( petidx, CHAR_WORKDEFENCEPOWER );
|
|||
|
if( pethp > 0 ){
|
|||
|
playerdamage = (damage*petquick)/(defquick+petquick) +1;
|
|||
|
petdamage = damage - playerdamage +1 ;
|
|||
|
hp -= playerdamage;
|
|||
|
pethp -= petdamage;
|
|||
|
}
|
|||
|
else{
|
|||
|
hp -= damage;
|
|||
|
}
|
|||
|
if( hp < 0 ) hp = 0;
|
|||
|
if( pethp < 0 ) pethp = 0;
|
|||
|
CHAR_setInt( petidx, CHAR_HP, pethp );
|
|||
|
}
|
|||
|
|
|||
|
CHAR_setInt( charaidx, CHAR_HP, hp );
|
|||
|
|
|||
|
if( hp <= 0 ){
|
|||
|
CHAR_setFlg( charaidx, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setWorkInt( charaidx, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
if( pethp <= 0 ){
|
|||
|
CHAR_setFlg( petidx, CHAR_ISDIE, 1 );
|
|||
|
CHAR_setWorkInt( ridepet, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
|
|||
|
if( damage >= 0 ){
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ),
|
|||
|
// "(%s)<29><>(%s)<29>ܵ<EFBFBD>(%d)<29><><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( charaindex ),
|
|||
|
// aszStatusFull[i],
|
|||
|
// damage );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
|
|||
|
sprintf( szBuffer , "%X|%X|%X|%X|" , i , i ,(int)(damage) , (int)(petdamage));
|
|||
|
|
|||
|
//sprintf( szBuffer, "BD|r%X|0|0|%X|p%X|", i, (int)(damage), (int)(petdamage) );
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
if( petidx != -1 && petdamage >= 0 ){
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ),
|
|||
|
// "(%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)<29><>(%s)<29>ܵ<EFBFBD>(%d)<29><><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( charaindex ),
|
|||
|
// aszStatusFull[i], petdamage );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
sprintf( szBuffer , "%X|" , 0x5711438 );
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
}
|
|||
|
//print("\n<><6E><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
break;
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
case CHAR_WORKICECRACK2: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>2
|
|||
|
WorkIceCrackPlay( charaindex, cnt, CHAR_WORKICECRACK2 );print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>2");break;
|
|||
|
case CHAR_WORKICECRACK3: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>3
|
|||
|
WorkIceCrackPlay( charaindex, cnt, CHAR_WORKICECRACK3 );print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>3");break;
|
|||
|
case CHAR_WORKICECRACK4: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>4
|
|||
|
WorkIceCrackPlay( charaindex, cnt, CHAR_WORKICECRACK4 );print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>4");break;
|
|||
|
case CHAR_WORKICECRACK5: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>5
|
|||
|
WorkIceCrackPlay( charaindex, cnt, CHAR_WORKICECRACK5 );print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>5");break;
|
|||
|
case CHAR_WORKICECRACK6: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>6
|
|||
|
WorkIceCrackPlay( charaindex, cnt, CHAR_WORKICECRACK6 );print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>6");break;
|
|||
|
case CHAR_WORKICECRACK7: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>7
|
|||
|
WorkIceCrackPlay( charaindex, cnt, CHAR_WORKICECRACK7 );print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>7");break;
|
|||
|
case CHAR_WORKICECRACK8: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8
|
|||
|
WorkIceCrackPlay( charaindex, cnt, CHAR_WORKICECRACK8 );print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>8");break;
|
|||
|
case CHAR_WORKICECRACK9: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>9
|
|||
|
WorkIceCrackPlay( charaindex, cnt, CHAR_WORKICECRACK9 );print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>9");break;
|
|||
|
case CHAR_WORKICECRACK10: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>10
|
|||
|
WorkIceCrackPlay( charaindex, cnt, CHAR_WORKICECRACK10 );print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>10");break;
|
|||
|
#endif //_PROFESSION_ADDSKILL
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PET_SKILL_SARS // WON ADD <20><>ɷ<EFBFBD><C9B7><EFBFBD><EFBFBD>
|
|||
|
case CHAR_WORKSARS:
|
|||
|
{
|
|||
|
int j;
|
|||
|
int rate = 60; // <20><>Ⱦ SARS <20><><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
// <20>ܴ<EFBFBD>Ⱦ<EFBFBD><C8BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int petdown=-1;
|
|||
|
int dec_mp = 0;
|
|||
|
|
|||
|
Compute_Down_SARS( charaindex, ridepet, &down, &petdown, ridepet);
|
|||
|
if( down >= 0 ){
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ),
|
|||
|
// "(%s)<29><>(%s)<29>ܵ<EFBFBD>(%d)<29><><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( charaindex ),
|
|||
|
// aszStatusFull[i],
|
|||
|
// down );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҿ<EFBFBD> MP
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER ){
|
|||
|
int old_mp = CHAR_getInt( charaindex, CHAR_MP );
|
|||
|
dec_mp = old_mp / 10 ;
|
|||
|
if( dec_mp < 0 ) dec_mp = 0;
|
|||
|
CHAR_setInt( charaindex, CHAR_MP, old_mp - dec_mp );
|
|||
|
sprintf( szBuffer, "BD|r%X|0|0|%X|p%X|m%X|", bid, (int)(down), (int)(petdown), dec_mp );
|
|||
|
}else
|
|||
|
sprintf( szBuffer, "BD|r%X|0|0|%X|p%X|", bid, (int)(down), (int)(petdown) );
|
|||
|
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
if( ridepet != -1 && petdown >= 0 ){
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ),
|
|||
|
// "(%s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)<29><>(%s)<29>ܵ<EFBFBD>(%d)<29><><EFBFBD><EFBFBD><EFBFBD>ˡ<EFBFBD>",
|
|||
|
// CHAR_getUseName( charaindex ),
|
|||
|
// aszStatusFull[i], petdown );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>Ⱦ<EFBFBD>ߴ<EFBFBD>SARS
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKMODSARS ) > 0 ){
|
|||
|
int buf2[5], ti=0;
|
|||
|
int tibuf[10]={
|
|||
|
3,1,0,2,4,
|
|||
|
8,6,5,7,9 };
|
|||
|
|
|||
|
memset( buf2, -1, sizeof(buf2));
|
|||
|
|
|||
|
if( defNo > 9 ){
|
|||
|
for( j=0; j<10; j++ ){
|
|||
|
tibuf[j] += 10;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
for( j=0; j<10; j++){
|
|||
|
if( tibuf[j] != defNo ) continue;
|
|||
|
if( j > 4 ){
|
|||
|
if( (j+1) < 10 ) buf2[ti++]=tibuf[j+1];
|
|||
|
if( (j-1) > 4 ) buf2[ti++]=tibuf[j-1];
|
|||
|
//<2F><><EFBFBD>ȱ<EFBFBD>
|
|||
|
if( (j-5+1) < 5 ) buf2[ti++]=tibuf[j-5+1];
|
|||
|
if( (j-5-1) >= 0 ) buf2[ti++]=tibuf[j-5-1];
|
|||
|
if( (j-5) >= 0 ) buf2[ti++]=tibuf[j-5];
|
|||
|
}else{
|
|||
|
if( (j+1) < 5 ) buf2[ti++]=tibuf[j+1];
|
|||
|
if( (j-1) >= 0 ) buf2[ti++]=tibuf[j-1];
|
|||
|
//<2F><><EFBFBD>ȱ<EFBFBD>
|
|||
|
if( (j+5+1) < 10 ) buf2[ti++]=tibuf[j+5+1];
|
|||
|
if( (j+5-1) > 4 ) buf2[ti++]=tibuf[j+5-1];
|
|||
|
if( (j+5) < 10 ) buf2[ti++]=tibuf[j+5];
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
//print("buf2[%d,%d,%d,%d,%d]\n", buf2[0], buf2[1], buf2[2], buf2[3], buf2[4]);
|
|||
|
|
|||
|
for( j=0; j<5; j++ ){
|
|||
|
|
|||
|
int toindex = 0;
|
|||
|
if( buf2[j] == -1 ) continue;
|
|||
|
|
|||
|
toindex = BATTLE_No2Index( battleindex, buf2[j] );
|
|||
|
|
|||
|
// <20>õ<EFBFBD>sars<72><73><EFBFBD>뿪
|
|||
|
if( CHAR_getWorkInt( toindex,CHAR_WORKSARS ) > 0 ) continue;
|
|||
|
|
|||
|
if( RAND( 1, 100 ) <= rate ){ // <20><> SARS
|
|||
|
if( toindex == charaindex ) continue;
|
|||
|
if( CHAR_getInt( toindex, CHAR_HP ) <= 0 ) continue;
|
|||
|
|
|||
|
CHAR_setWorkInt( toindex,CHAR_WORKSARS, 3 );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
default :
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ),
|
|||
|
// "(%s)<29><>(%s)", CHAR_getUseName( charaindex ),
|
|||
|
// aszStatusFull[i] );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _SUIT_ITEM
|
|||
|
{
|
|||
|
int defCode;
|
|||
|
int AddHp=0, AddMp=0;
|
|||
|
#ifdef _IMPRECATE_ITEM
|
|||
|
int nums1, nums2, nums3, delMp=0;
|
|||
|
#endif
|
|||
|
if( (defCode=CHAR_getWorkInt( charaindex, CHAR_WORKSUITITEM)) > 0){
|
|||
|
AddHp = CHAR_getWorkInt( charaindex, CHAR_WORKROUNDHP);
|
|||
|
AddMp = CHAR_getWorkInt( charaindex, CHAR_WORKROUNDMP);
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _IMPRECATE_ITEM
|
|||
|
if( (nums1 = CHAR_getWorkInt( charaindex, CHAR_WORKIMPRECATENUM1)) > 0 ){
|
|||
|
delMp = CHAR_getWorkInt( charaindex, CHAR_WORKHURTMP);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKIMPRECATENUM1, nums1-1);
|
|||
|
}
|
|||
|
if( (nums2 = CHAR_getWorkInt( charaindex, CHAR_WORKIMPRECATENUM2)) > 0 ){
|
|||
|
AddHp += CHAR_getWorkInt( charaindex, CHAR_WORKWISHESHP);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKIMPRECATENUM2, nums2-1);
|
|||
|
}
|
|||
|
if( (nums3 = CHAR_getWorkInt( charaindex, CHAR_WORKIMPRECATENUM3)) > 0 ){
|
|||
|
AddMp += CHAR_getWorkInt( charaindex, CHAR_WORKWISHESMP);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKIMPRECATENUM3, nums3-1);
|
|||
|
}
|
|||
|
AddMp = AddMp - delMp;
|
|||
|
#endif
|
|||
|
if( AddHp != 0 || AddMp != 0 ) {
|
|||
|
int AddPHp=0;
|
|||
|
|
|||
|
|
|||
|
#ifdef _TYPE_TOXICATION
|
|||
|
if( AddHp != 0 && CHAR_CanCureFlg( charaindex, "FALSE") != FALSE ){
|
|||
|
#else
|
|||
|
if( AddHp != 0 ) {
|
|||
|
#endif
|
|||
|
int MyHp = CHAR_getInt( charaindex, CHAR_HP);
|
|||
|
int MaxHp = CHAR_getWorkInt( charaindex, CHAR_WORKMAXHP);
|
|||
|
MyHp = ((MyHp+AddHp)>=MaxHp)?MaxHp:(MyHp+AddHp);
|
|||
|
MyHp = (MyHp<= 1 )?1:MyHp;
|
|||
|
CHAR_setInt( charaindex, CHAR_HP, MyHp);
|
|||
|
//snprintf( szBuffer, sizeof( szBuffer ), "(%s)<29><><EFBFBD><EFBFBD>(%d)<29><>HP<48><50>",
|
|||
|
// CHAR_getUseName( charaindex ), AddHp );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer,
|
|||
|
// (bid >= 10)? CHAR_COLORGRAY : CHAR_COLORPURPLE ) ;
|
|||
|
if( ridepet != -1 ){
|
|||
|
int PetMaxHp = CHAR_getWorkInt( ridepet, CHAR_WORKMAXHP);
|
|||
|
int PetHp = CHAR_getInt( ridepet, CHAR_HP);
|
|||
|
AddPHp = AddHp;
|
|||
|
PetHp = ((PetHp+AddPHp)>=PetMaxHp)?PetMaxHp:(PetHp+AddPHp);
|
|||
|
PetHp = (PetHp<=1)?1:PetHp;
|
|||
|
CHAR_setInt( ridepet, CHAR_HP, PetHp);
|
|||
|
}
|
|||
|
}
|
|||
|
if( AddMp != 0 ) {
|
|||
|
int MyMp = CHAR_getInt( charaindex, CHAR_MP);
|
|||
|
int MaxMp = CHAR_getWorkInt( charaindex, CHAR_WORKMAXMP);
|
|||
|
MyMp = ((MyMp+AddMp)>MaxMp)?MaxMp:(MyMp+AddMp);
|
|||
|
MyMp = (MyMp<0)?0:MyMp;
|
|||
|
CHAR_setInt( charaindex, CHAR_MP, MyMp);
|
|||
|
/*
|
|||
|
#ifdef _FIXITEMANISHOW
|
|||
|
sprintf( szBuffer, "BD|r%X|0|1|%X|p%X|m%X|", bid, AddHp, AddPHp, AddMp);
|
|||
|
}else {
|
|||
|
sprintf( szBuffer, "BD|r%X|0|1|%X|p%X|", bid, AddHp, AddPHp );
|
|||
|
#else
|
|||
|
*/
|
|||
|
sprintf( szBuffer, "BD|r%X|0|2|%X|p%X|m%X|", bid, AddHp, AddPHp, AddMp);
|
|||
|
}else {
|
|||
|
sprintf( szBuffer, "BD|r%X|0|2|%X|p%X|", bid, AddHp, AddPHp );
|
|||
|
//#endif
|
|||
|
}
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_SETDUCK
|
|||
|
{
|
|||
|
int turns=0, nums=0;
|
|||
|
if( (turns=CHAR_getWorkInt( charaindex, CHAR_MYSKILLDUCK)) > 0 ){
|
|||
|
turns--;
|
|||
|
if( turns == 0 ){
|
|||
|
nums = CHAR_getWorkInt( charaindex, CHAR_MYSKILLDUCKPOWER);
|
|||
|
sprintf( szBuffer, "BD|r%X|0|3|%X|", bid, nums*(-1));
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLDUCK, turns);
|
|||
|
}
|
|||
|
#ifdef _MAGICPET_SKILL
|
|||
|
if( (turns=CHAR_getWorkInt( charaindex, CHAR_MYSKILLSTR)) > 0 ){
|
|||
|
turns--;
|
|||
|
if( turns == 0 ){
|
|||
|
nums = CHAR_getWorkInt( charaindex, CHAR_MYSKILLSTRPOWER);
|
|||
|
sprintf( szBuffer, "BD|r%X|0|4|%X|", bid, nums*(-1));
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLSTR, turns);
|
|||
|
}
|
|||
|
if( (turns=CHAR_getWorkInt( charaindex, CHAR_MYSKILLTGH)) > 0 ){
|
|||
|
turns--;
|
|||
|
if( turns == 0 ){
|
|||
|
nums = CHAR_getWorkInt( charaindex, CHAR_MYSKILLTGHPOWER);
|
|||
|
sprintf( szBuffer, "BD|r%X|0|5|%X|", bid, nums*(-1));
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLTGH, turns);
|
|||
|
}
|
|||
|
if( (turns=CHAR_getWorkInt( charaindex, CHAR_MYSKILLDEX)) > 0 ){
|
|||
|
turns--;
|
|||
|
if( turns == 0 ){
|
|||
|
nums = CHAR_getWorkInt( charaindex, CHAR_MYSKILLDEXPOWER);
|
|||
|
sprintf( szBuffer, "BD|r%X|0|6|%X|", bid, nums*(-1));
|
|||
|
BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLDEX, turns);
|
|||
|
}
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
if( (turns=CHAR_getWorkInt( charaindex, CHAR_MYSKILLHIT)) > 0 ){
|
|||
|
turns--;
|
|||
|
if( turns == 0 ){
|
|||
|
int dec_num = CHAR_getWorkInt( charaindex, CHAR_MYSKILLHIT_NUM);
|
|||
|
nums = CHAR_getWorkInt( charaindex, CHAR_WORKHITRIGHT);
|
|||
|
nums -= dec_num;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKHITRIGHT, nums);
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD>ָ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
//sprintf( szBuffer, "BD|r%X|0|6|%X|", bid, dec_num*(-1));
|
|||
|
//BATTLESTR_ADD( szBuffer );
|
|||
|
}
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_MYSKILLHIT, turns);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#endif
|
|||
|
}
|
|||
|
#endif
|
|||
|
return 0;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
BOOL BATTLE_CanMoveCheck( int charaindex )
|
|||
|
{
|
|||
|
|
|||
|
//
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKPARALYSIS ) > 0 ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
// <20><EFBFBD>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKSTONE ) > 0 ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
// <20><>Ի
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKSLEEP ) > 0 ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
#ifdef _MAGIC_BARRIER
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBARRIER ) > 0 ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
// <20><>ѣ
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKDIZZY ) > 0 ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
// <20><><EFBFBD><EFBFBD><DEB5><EFBFBD>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKDRAGNET ) > 0 ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _JOB_FIX
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKICEARROW ) > 0 ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
/*
|
|||
|
// רעս<D7A2><D5BD>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORK_FOCUS ) > 0 ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
*/
|
|||
|
// <20><EFBFBD><D7B8><EFBFBD>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORK_T_ENCLOSE ) > 0 ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_DOOMTIME ) > 0 ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _ITEM_EQUITSPACE
|
|||
|
int BATTLE_GetEqShield( int charaindex )
|
|||
|
{
|
|||
|
int iRet = ITEM_FIST, itemindex;
|
|||
|
|
|||
|
itemindex = CHAR_getItemIndex( charaindex, CHAR_EQSHIELD );
|
|||
|
if( ITEM_CHECKINDEX( itemindex ) == FALSE ){
|
|||
|
iRet = ITEM_FIST;
|
|||
|
}else{
|
|||
|
iRet = ITEM_getInt( itemindex, ITEM_TYPE );
|
|||
|
}
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
int BATTLE_GetWepon( int charaindex ) //ȡ<>ý<EFBFBD>ɫ<EFBFBD>ֳ<EFBFBD><D6B3><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
int iRet = ITEM_FIST, itemindex;
|
|||
|
|
|||
|
itemindex = CHAR_getItemIndex( charaindex, CHAR_ARM );
|
|||
|
if( ITEM_CHECKINDEX( itemindex ) == FALSE ){
|
|||
|
iRet = ITEM_FIST;
|
|||
|
}else{
|
|||
|
iRet = ITEM_getInt( itemindex, ITEM_TYPE );
|
|||
|
}
|
|||
|
|
|||
|
return iRet;
|
|||
|
}
|
|||
|
|
|||
|
static int aBowW[50] =
|
|||
|
{
|
|||
|
0, 2, 1, 4, 3, 0, 1, 2, 3, 4,
|
|||
|
1, 0, 3, 2, 4, 1, 3, 0, 2, 4,
|
|||
|
2, 4, 0, 1, 3, 2, 0, 4, 1, 3,
|
|||
|
3, 1, 0, 2, 4, 3, 1, 0, 2, 4,
|
|||
|
4, 2, 0, 1, 3, 4, 2, 0, 1, 3,
|
|||
|
};
|
|||
|
|
|||
|
void BATTLE_TargetListSet( int charaindex, int attackNo, int *pList)
|
|||
|
{
|
|||
|
int i, j=0, defNo, battleindex=-1;
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
battleindex = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEINDEX );
|
|||
|
|
|||
|
#ifdef _SKILLLIMIT // (<28>ɿ<EFBFBD><C9BF><EFBFBD>) Syu ADD <20><><EFBFBD>ù<EFBFBD><C3B9><EFBFBD><EFBFBD>ҷ<EFBFBD><D2B7><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_FALLRIDE || // <20><><EFBFBD><EFBFBD>
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_WILDVIOLENTATTACK || //<2F><EFBFBD><F1B1A9B9><EFBFBD>
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_TIMID || // <20><>ս
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_MPDAMAGE || // MP<4D><50><EFBFBD><EFBFBD>
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_WEAKEN || // <20><><EFBFBD><EFBFBD>
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_DAMAGETOHP || // <20><>Ѫ
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_STEALMONEY ) { // <20><><EFBFBD><EFBFBD>
|
|||
|
if( BATTLE_CheckSameSide( charaindex, defNo) == 1 ) {
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
// BATTLE_NoAction( battleindex, attackNo );
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX*2; i ++ ){
|
|||
|
pList[i] = defNo;
|
|||
|
}
|
|||
|
#ifdef _BATTLE_ATTCRAZED // ANDY <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
#ifdef _SHOOTCHESTNUT // Syu ADD <20>輼<EFBFBD><E8BCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_ATTCRAZED ||
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_ATTSHOOT ){
|
|||
|
#else
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_ATTCRAZED ){
|
|||
|
#endif
|
|||
|
int deftop,defsub;
|
|||
|
int plive[10];
|
|||
|
int n = CHAR_GETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3);
|
|||
|
|
|||
|
|
|||
|
#ifdef _SHOOTCHESTNUT // Syu ADD <20>輼<EFBFBD><E8BCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( BATTLE_CheckSameSide( charaindex, defNo) == 1 ) {
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
return;
|
|||
|
}
|
|||
|
#endif
|
|||
|
if( 0 <= defNo && defNo <= 9 ){
|
|||
|
defsub = 0;
|
|||
|
deftop = 9;
|
|||
|
}else if( 10 <= defNo && defNo <= 19 ){
|
|||
|
defsub = 10;
|
|||
|
deftop = 19;
|
|||
|
}else{
|
|||
|
pList[1] = -1;
|
|||
|
return;
|
|||
|
}
|
|||
|
for( i = defsub; i < deftop; i ++ ){
|
|||
|
if( BATTLE_TargetCheck( battleindex, i) == FALSE ) continue;
|
|||
|
plive[j++] = i;
|
|||
|
}
|
|||
|
if( j == 0 ) return;
|
|||
|
for( i=0; i<n; i++){
|
|||
|
pList[i] = plive[ RAND(0,j-1)];
|
|||
|
}
|
|||
|
pList[i]=-1;
|
|||
|
return;
|
|||
|
}
|
|||
|
#endif
|
|||
|
if( BATTLE_GetWepon( charaindex ) != ITEM_BOW ){
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
if( 0 <= defNo && defNo <= 19 ){
|
|||
|
int defsub = defNo % 5;
|
|||
|
int deftop = defNo - defsub;
|
|||
|
int Rnd = RAND( 0, 1 );
|
|||
|
for( j = 0, i = 0; j < 5; j ++ ){
|
|||
|
pList[i] = aBowW[ defsub*10+Rnd*5+j] + deftop;
|
|||
|
if( deftop == 0 || deftop == 10 ){
|
|||
|
pList[i+1] = pList[i] + 5;
|
|||
|
}else{
|
|||
|
pList[i+1] = pList[i] - 5;
|
|||
|
}
|
|||
|
if( pList[i] == attackNo ){
|
|||
|
pList[i] = -1;
|
|||
|
}
|
|||
|
if( pList[i+1] == attackNo ){
|
|||
|
pList[i+1] = -1;
|
|||
|
}
|
|||
|
i += 2;
|
|||
|
}
|
|||
|
pList[i] = -1;
|
|||
|
}else{
|
|||
|
pList[1] = -1;
|
|||
|
}
|
|||
|
|
|||
|
return ;
|
|||
|
}
|
|||
|
|
|||
|
int BATTLE_GetAttackCount( int charaindex )
|
|||
|
{
|
|||
|
int iRet = 1, itemindex;
|
|||
|
itemindex = CHAR_getItemIndex( charaindex, CHAR_ARM );
|
|||
|
if( ITEM_CHECKINDEX( itemindex ) == FALSE ){
|
|||
|
return 0;
|
|||
|
}else{
|
|||
|
iRet = RAND( ITEM_getInt( itemindex, ITEM_ATTACKNUM_MIN ),
|
|||
|
ITEM_getInt( itemindex, ITEM_ATTACKNUM_MAX ) );
|
|||
|
}
|
|||
|
if( iRet <= 0 )iRet = 1;
|
|||
|
|
|||
|
return iRet;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
int BATTLE_PetRandomSkill( int battleindex, int charaindex )
|
|||
|
{
|
|||
|
#define PETSKILLSERCHTIME 50
|
|||
|
int i, j, iNum, toNo, k, myNo, side, pskill_array;
|
|||
|
int skill_type;
|
|||
|
#ifdef _FIXWOLF // Syu ADD <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˱<EFBFBD><CBB1><EFBFBD>Bug
|
|||
|
int pid=CHAR_getInt( charaindex , CHAR_PETID);
|
|||
|
int skNum;
|
|||
|
#endif
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
|
|||
|
myNo = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
side = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLESIDE );
|
|||
|
|
|||
|
#ifdef _FIXWOLF // Syu ADD <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˱<EFBFBD><CBB1><EFBFBD>Bug
|
|||
|
iNum = RAND( 0, CHAR_MAXPETSKILLHAVE-1 );
|
|||
|
skNum = CHAR_getPetSkill( charaindex , iNum );
|
|||
|
if( ((pid == 981) || (pid == 982) || (pid == 983) || (pid == 984)) && (skNum == 600)){
|
|||
|
do{
|
|||
|
iNum = RAND ( 0, CHAR_MAXPETSKILLHAVE-1);
|
|||
|
skNum = CHAR_getPetSkill( charaindex , iNum );
|
|||
|
} while ( skNum == 600 );
|
|||
|
}
|
|||
|
#else
|
|||
|
iNum = RAND( 0, CHAR_MAXPETSKILLHAVE-1 );
|
|||
|
#endif
|
|||
|
|
|||
|
for( k = 0; k < 3; k ++){
|
|||
|
toNo = BATTLE_DefaultAttacker( battleindex, 1 - side );
|
|||
|
if( toNo == myNo ){
|
|||
|
|
|||
|
}else{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if( myNo == toNo ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
for( j = 0, i = 0, k = 0; k < PETSKILLSERCHTIME; i ++, k ++ ){
|
|||
|
if( i >= CHAR_MAXPETSKILLHAVE ) i = 0;
|
|||
|
|
|||
|
if( CHAR_getCharHaveSkill( charaindex, i ) == NULL ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
pskill_array = PETSKILL_GetArray( charaindex, i );
|
|||
|
skill_type = PETSKILL_getInt( pskill_array, PETSKILL_FIELD );
|
|||
|
|
|||
|
|
|||
|
if( skill_type == PETSKILL_FIELD_BATTLE
|
|||
|
|| skill_type == PETSKILL_FIELD_ALL
|
|||
|
){
|
|||
|
}else{
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
if( j < iNum ){
|
|||
|
j++;
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
if( PETSKILL_Use( charaindex, iNum, toNo, NULL ) == TRUE ){
|
|||
|
|
|||
|
}else{
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
if( k >= PETSKILLSERCHTIME ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
enum{
|
|||
|
PETAI_MODE_NORMAL,
|
|||
|
PETAI_MODE_TARGETRANDOM,
|
|||
|
PETAI_MODE_RANDOMACT,
|
|||
|
PETAI_MODE_OWNERATTACK,
|
|||
|
PETAI_MODE_ENEMYATTACK,
|
|||
|
PETAI_MODE_ESCAPE,
|
|||
|
PETAI_MODE_NOACT,
|
|||
|
PETAI_MODE_END
|
|||
|
};
|
|||
|
|
|||
|
static int BATTLE_PetLoyalCheck( int battleindex, int bid, int charaindex )
|
|||
|
{
|
|||
|
int ai, toNo, mode = 0, type, Rand, toSide = 1, flg, i;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPET ){
|
|||
|
return 0;
|
|||
|
}
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == TRUE )
|
|||
|
return 0;
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_WAIT ){
|
|||
|
return 0;
|
|||
|
}
|
|||
|
flg = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEFLG );
|
|||
|
flg &= ~CHAR_BATTLEFLG_AIBAD;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEFLG, flg );
|
|||
|
if( BATTLE_CanMoveCheck( charaindex ) == FALSE ){
|
|||
|
return 0;
|
|||
|
}
|
|||
|
toNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
toSide = ( 0 <= toNo && toNo < BATTLE_ENTRY_MAX )?(0):(1);
|
|||
|
ai = CHAR_getWorkInt( charaindex, CHAR_WORKFIXAI );
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_GUARD
|
|||
|
|| bid == toNo
|
|||
|
){
|
|||
|
type = 1;
|
|||
|
}else{
|
|||
|
type = 0;
|
|||
|
}
|
|||
|
|
|||
|
Rand = RAND( 1, 100 );
|
|||
|
|
|||
|
mode = 0; // <20><><EFBFBD><EFBFBD><EFBFBD>е<EFBFBD>
|
|||
|
if( ai >= 80 ){ // <20><><EFBFBD><EFBFBD>պ<EFBFBD><D5BA><EFBFBD>ߡѶ<DFA1><D1B6><EFBFBD>
|
|||
|
mode = PETAI_MODE_NORMAL; // 姸<><E5A7B8><EFBFBD>
|
|||
|
}else
|
|||
|
if( ai >= 70 ){ // <20><><EFBFBD><EFBFBD>պ<EFBFBD><D5BA><EFBFBD>ߡѶ<DFA1><D1B6><EFBFBD>
|
|||
|
if( Rand < 10 )mode = PETAI_MODE_TARGETRANDOM; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
}else
|
|||
|
if( ai >= 60 ){
|
|||
|
if( Rand < 20 )mode = PETAI_MODE_TARGETRANDOM; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
}else
|
|||
|
if( ai >= 50 ){
|
|||
|
if( Rand < 35 )mode = PETAI_MODE_TARGETRANDOM; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
}else
|
|||
|
if( ai >= 40 ){
|
|||
|
if( Rand < 50 )mode = PETAI_MODE_TARGETRANDOM; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
}else
|
|||
|
if( ai >= 30 ){
|
|||
|
if( Rand < 70 )mode = PETAI_MODE_RANDOMACT; // <20><> <20>¼<EFBFBD>ĸة
|
|||
|
}else
|
|||
|
if( ai >= 20 ){
|
|||
|
if( Rand < 70 )mode = PETAI_MODE_RANDOMACT; // <20><> <20>¼<EFBFBD>ĸة
|
|||
|
}else
|
|||
|
if( ai >= 10 ){
|
|||
|
if( Rand < 80 ){
|
|||
|
mode = PETAI_MODE_OWNERATTACK; // DZ<><C7B1> <20><>
|
|||
|
}else{
|
|||
|
mode = PETAI_MODE_ENEMYATTACK; // <20><> <20><>
|
|||
|
}
|
|||
|
}else{
|
|||
|
if( Rand < 60 ){
|
|||
|
mode = PETAI_MODE_OWNERATTACK; // DZ<><C7B1> <20><>
|
|||
|
}else{
|
|||
|
mode = PETAI_MODE_ESCAPE; // <20><><EFBFBD><EFBFBD>
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
if( mode == PETAI_MODE_NORMAL )return 0;
|
|||
|
|
|||
|
for( i = 0; i < CHAR_MAXPETSKILLHAVE;i ++ ){
|
|||
|
if( CHAR_getCharHaveSkill( charaindex, i ) ){
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( i >= CHAR_MAXPETSKILLHAVE ){
|
|||
|
mode = PETAI_MODE_NOACT;
|
|||
|
}
|
|||
|
flg = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEFLG );
|
|||
|
flg |= CHAR_BATTLEFLG_AIBAD;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEFLG, flg );
|
|||
|
|
|||
|
|
|||
|
switch( mode ){
|
|||
|
case PETAI_MODE_NOACT:
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1,
|
|||
|
BATTLE_COM_NONE );
|
|||
|
break;
|
|||
|
case PETAI_MODE_TARGETRANDOM:
|
|||
|
if( type == 1 ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1,
|
|||
|
BATTLE_COM_NONE );
|
|||
|
}else{
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2,
|
|||
|
BATTLE_DefaultAttacker( battleindex, toSide ) );
|
|||
|
|
|||
|
}
|
|||
|
break;
|
|||
|
case PETAI_MODE_RANDOMACT: // <20><> <20><><EFBFBD>¼<EFBFBD>ĸة
|
|||
|
// <20><><EFBFBD>Ѩ<EFBFBD><D1A8><EFBFBD> <20><>姸<F3A1B7B4><E5A7B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĸ<EFBFBD><C4B8>
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_EARTHROUND0 ){
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ūʧ<C5AB><CAA7><EFBFBD>º<D7B7>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
flg = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEFLG );
|
|||
|
flg &= ~CHAR_BATTLEFLG_GUARDIAN;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEFLG, flg );
|
|||
|
|
|||
|
if( toNo == bid ){ // <20><><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
// <20><><EFBFBD><EFBFBD>ƥ<EFBFBD><C6A5>ئ<EFBFBD>г<EFBFBD><D0B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}else{
|
|||
|
// <20>¼<EFBFBD>ĸة<C4B8><D8A9><EFBFBD><EFBFBD> ë<><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
BATTLE_PetRandomSkill( battleindex, charaindex );
|
|||
|
}
|
|||
|
break;
|
|||
|
|
|||
|
case PETAI_MODE_OWNERATTACK: // DZ<><C7B1> <20><>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, bid-5 );
|
|||
|
break;
|
|||
|
|
|||
|
case PETAI_MODE_ENEMYATTACK: // <20><> <20><>
|
|||
|
{ int myside = 0;
|
|||
|
if( bid >= BATTLE_ENTRY_MAX ) myside = 1;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2,
|
|||
|
BATTLE_DefaultAttacker( battleindex, 1 - myside ) );
|
|||
|
}
|
|||
|
break;
|
|||
|
|
|||
|
case PETAI_MODE_ESCAPE: // <20><><EFBFBD>¹<EFBFBD><C2B9><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_S_LOSTESCAPE );
|
|||
|
break;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
return 1;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _ATTACK_MAGIC
|
|||
|
|
|||
|
#define MAX_MAGIC_NUMBER 25
|
|||
|
|
|||
|
// ÿһ<C3BF><D2BB>ħ<EFBFBD><C4A7><EFBFBD>Ĺ<EFBFBD><C4B9><EFBFBD> Χ (id,area)
|
|||
|
int TargetIndex[MAX_MAGIC_NUMBER][2] =
|
|||
|
{
|
|||
|
{301,-1},{302,-1},{303,26},{304,-1},{305,20},{306,20},
|
|||
|
{307,-1},{308,-1},{309,-1},{310,-1},{311,26},{312,20},
|
|||
|
{313,-1},{314,-1},{315,-1},{316,-1},{317,26},{318,20},
|
|||
|
{319,-1},{320,-1},{321,26},{322,-1},{323,26},{324,20},{325,20}
|
|||
|
};
|
|||
|
|
|||
|
int magic,toindex,magic_count;
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
static int BATTLE_Battling( int battleindex )
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_Battling_1";
|
|||
|
BATTLE *pBattle, *pWatchBattle;
|
|||
|
BATTLE_ENTRY *pEntry[2];
|
|||
|
char *aszFieldAttr[] = { "<EFBFBD><EFBFBD>", "<EFBFBD><EFBFBD>", "ˮ", "<EFBFBD><EFBFBD>", "<EFBFBD><EFBFBD>" },
|
|||
|
szBuffer[256]="",
|
|||
|
szWork[256];
|
|||
|
int i,j,k,
|
|||
|
len,
|
|||
|
entrynum,
|
|||
|
charaindex,
|
|||
|
attackNo,
|
|||
|
defNo=-1,
|
|||
|
aAttackList[BATTLE_ENTRY_MAX*2+1],
|
|||
|
aDefList[BATTLE_ENTRY_MAX*2+1],
|
|||
|
ComboId,
|
|||
|
itemindex,
|
|||
|
AllSize = 0;
|
|||
|
BATTLE_CHARLIST EntryList[40];
|
|||
|
int ContFlg, attackNoSub, defNoSub;
|
|||
|
//DebugMainFunction="BATTLE_Battling_2";
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE )return BATTLE_ERR_BATTLEINDEX;
|
|||
|
//DebugMainFunction="BATTLE_Battling_3";
|
|||
|
pBattle = &BattleArray[battleindex];
|
|||
|
pEntry[0] = pBattle->Side[0].Entry;
|
|||
|
pEntry[1] = pBattle->Side[1].Entry;
|
|||
|
//DebugMainFunction="BATTLE_Battling_4";
|
|||
|
for( i = 0; i < arraysizeof(EntryList); i ++ ){
|
|||
|
EntryList[i].charaindex = -1;
|
|||
|
EntryList[i].combo = 0;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_5";
|
|||
|
sprintf( szBuffer, "ս<EFBFBD><EFBFBD> %d ת<><D7AA> %d <20><><EFBFBD><EFBFBD> %s",
|
|||
|
battleindex, pBattle->turn,
|
|||
|
aszFieldAttr[pBattle->field_att]
|
|||
|
);
|
|||
|
//DebugMainFunction="BATTLE_Battling_6";
|
|||
|
entrynum = 0;
|
|||
|
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
pEntry[j][i].flg &= ~BENT_FLG_ULTIMATE;
|
|||
|
if( pEntry[j][i].charaindex == -1 )continue;
|
|||
|
EntryList[entrynum].charaindex = pEntry[j][i].charaindex;
|
|||
|
EntryList[entrynum].side = j;
|
|||
|
EntryList[entrynum].num = pEntry[j][i].bid;
|
|||
|
EntryList[entrynum].dex = BATTLE_DexCalc( pEntry[j][i].charaindex ); //<2F><><EFBFBD><EFBFBD>
|
|||
|
#ifdef _EQUIT_SEQUENCE
|
|||
|
EntryList[entrynum].sequence = CHAR_getWorkInt( pEntry[j][i].charaindex, CHAR_WORKSEQUENCEPOWER);
|
|||
|
#endif
|
|||
|
BATTLE_talkToCli( pEntry[j][i].charaindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
entrynum ++;
|
|||
|
}
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_7";
|
|||
|
szAllBattleString[0] = 0;
|
|||
|
k = 0;
|
|||
|
for( j = 0; j < 2; j ++ ){
|
|||
|
k = j * SIDE_OFFSET;
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX/2; i ++ ){
|
|||
|
szBattleString[0] = 0;
|
|||
|
if( pBattle->iEntryBack[k] >= 0
|
|||
|
&& pBattle->Side[j].Entry[i].charaindex == -1){
|
|||
|
if( pBattle->iEntryBack2[k] >= 0 ){
|
|||
|
sprintf( szBattleString, "BE|et%X|f1|", k );
|
|||
|
//BATTLE_BroadCast( battleindex, "ͻȻ<CDBB><C8BB><EFBFBD>˲<EFBFBD><CBB2><EFBFBD><EFBFBD>ˡ<EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
}else{
|
|||
|
//print( "Ӧ<><D3A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID<49><44><EFBFBD><EFBFBD>ȷ<EFBFBD><C8B7><EFBFBD>ֵ<EFBFBD>error<6F><72>\n" );
|
|||
|
//BATTLE_BroadCast( battleindex, "ID<49><44><EFBFBD><EFBFBD><EFBFBD><EFBFBD>error<6F><72>", CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
k ++;
|
|||
|
strcatsafe( szAllBattleString,sizeof(szAllBattleString), szBattleString );
|
|||
|
}
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_8";
|
|||
|
len = strlen( szAllBattleString );
|
|||
|
//DebugMainFunction="BATTLE_Battling_9";
|
|||
|
AllSize += len;
|
|||
|
EntrySort( EntryList, entrynum );
|
|||
|
//DebugMainFunction="BATTLE_Battling_10";
|
|||
|
ComboCheck( EntryList, entrynum );
|
|||
|
//DebugMainFunction="BATTLE_Battling_11";
|
|||
|
for( i = 0; i < entrynum; i ++ ){
|
|||
|
int COM, myside, otherside, bi,
|
|||
|
attack_flg = 1,
|
|||
|
attack_max = 1,
|
|||
|
attack_count = 0;
|
|||
|
|
|||
|
charaindex = EntryList[i].charaindex;
|
|||
|
myside = EntryList[i].side;
|
|||
|
otherside = 1-myside;
|
|||
|
attackNo = EntryList[i].num;
|
|||
|
bi = attackNo - myside * SIDE_OFFSET;
|
|||
|
|
|||
|
aAttackList[0] = attackNo;
|
|||
|
aAttackList[1] = -1;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == TRUE )continue;
|
|||
|
szBadStatusString[0] = 0;
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE )
|
|||
|
!= BATTLE_CHARMODE_C_OK ){
|
|||
|
//sprintf( szBuffer, "ָ<><D6B8><EFBFBD><EFBFBD><EFBFBD>벻<EFBFBD><EBB2BB>ȫ<EFBFBD><C8AB>(%s)", CHAR_getUseName( charaindex ) );
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
continue;
|
|||
|
}
|
|||
|
if( CHAR_getInt( charaindex, CHAR_HP ) <= 0 )continue;
|
|||
|
|
|||
|
szBattleString[0] = 0;
|
|||
|
pszBattleTop = szBattleString;
|
|||
|
pszBattleLast = szBattleString+arraysizeof(szBattleString);
|
|||
|
|
|||
|
// WON ADD
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) != TRUE )
|
|||
|
BATTLE_StatusSeq( charaindex );
|
|||
|
//DebugMainFunction="BATTLE_Battling_12";
|
|||
|
#ifdef _OTHER_MAGICSTAUTS
|
|||
|
BATTLE_MagicStatusSeq( charaindex );
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_13";
|
|||
|
#ifdef _MAGIC_DEEPPOISON // <20>綾
|
|||
|
if( CHAR_getFlg( charaindex, CHAR_ISDIE ) == TRUE ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
BATTLE_ProfessionStatusSeq( battleindex, charaindex);
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_14";
|
|||
|
|
|||
|
if( BATTLE_CanMoveCheck( charaindex ) == FALSE ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_15";
|
|||
|
gBattleDamageModyfy = 1.0;
|
|||
|
gBattleDuckModyfy = 0;
|
|||
|
gBattleStausChange = -1;
|
|||
|
gBattleStausTurn = 0;
|
|||
|
gWeponType = ITEM_FIST;
|
|||
|
gWeponType = BATTLE_GetWepon( charaindex );
|
|||
|
//DebugMainFunction="BATTLE_Battling_16";
|
|||
|
#ifdef _PETSKILL_BECOMEFOX
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKFOXROUND ) != -1 //<2F><><EFBFBD>DZ<EFBFBD><C7B1><EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD>
|
|||
|
|| CHAR_getInt( charaindex, CHAR_BASEIMAGENUMBER)==101749)
|
|||
|
{
|
|||
|
int COM = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 );
|
|||
|
|
|||
|
gWeponType = ITEM_FIST;
|
|||
|
|
|||
|
if( !(COM == BATTLE_COM_ATTACK
|
|||
|
|| COM == BATTLE_COM_GUARD
|
|||
|
|| COM == BATTLE_COM_NONE) ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֻ<EFBFBD>ܹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_17";
|
|||
|
#ifdef _PETSKILL_BECOMEPIG
|
|||
|
if( CHAR_getInt( charaindex, CHAR_BECOMEPIG) > -1 //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
&& (CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER) )
|
|||
|
{
|
|||
|
int COM = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 );
|
|||
|
|
|||
|
gWeponType = ITEM_FIST;
|
|||
|
//CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
if( !(COM == BATTLE_COM_ATTACK
|
|||
|
|| COM == BATTLE_COM_GUARD
|
|||
|
|| COM == BATTLE_COM_NONE
|
|||
|
|| COM == BATTLE_COM_ITEM
|
|||
|
|| COM == BATTLE_COM_ESCAPE
|
|||
|
|| COM == BATTLE_COM_CAPTURE
|
|||
|
|| COM == BATTLE_COM_WAIT
|
|||
|
|| COM == BATTLE_COM_PETIN
|
|||
|
|| COM == BATTLE_COM_PETOUT) ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_GUARD );
|
|||
|
//CHAR_talkToCli( charaindex, -1, "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֻ<EFBFBD>ܹ<EFBFBD><DCB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܺ<EFBFBD>ʹ<EFBFBD>õ<EFBFBD><C3B5>ߣ<EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ְҵ<EFBFBD><EFBFBD><EFBFBD>ܣ<EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_18";
|
|||
|
gDamageDiv = 1.0;
|
|||
|
attack_max = BATTLE_GetAttackCount( charaindex );
|
|||
|
if( attack_max <= 0 ){
|
|||
|
int work, randwork;
|
|||
|
work = CHAR_getInt( charaindex, CHAR_LV );
|
|||
|
if( work < 10 || CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER ){
|
|||
|
attack_max = 1;
|
|||
|
}else{
|
|||
|
int luckwork = CHAR_getInt( charaindex, CHAR_LUCK )*5;
|
|||
|
if( luckwork > 5*5 ){
|
|||
|
// print( "\nerr:<3A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(%s)(%d)\n",
|
|||
|
// CHAR_getUseName( charaindex ),
|
|||
|
// CHAR_getInt( charaindex, CHAR_LUCK ) );
|
|||
|
luckwork = 5*5;
|
|||
|
}
|
|||
|
randwork = RAND( 1, 1000 );
|
|||
|
if( randwork <= 10 + luckwork){
|
|||
|
attack_max = RAND( 5, 10 );
|
|||
|
}else
|
|||
|
if( randwork <= 30 + luckwork ){
|
|||
|
attack_max = 3;
|
|||
|
}else
|
|||
|
if( randwork <= 70 + luckwork ){
|
|||
|
attack_max = 2;
|
|||
|
}else{
|
|||
|
attack_max = 1;
|
|||
|
}
|
|||
|
}
|
|||
|
}else{
|
|||
|
if( gWeponType == ITEM_FIST )gDamageDiv = attack_max;
|
|||
|
}
|
|||
|
if( gWeponType == ITEM_BREAKTHROW ){
|
|||
|
gBattleStausChange = BATTLE_ST_PARALYSIS;
|
|||
|
gBattleStausTurn = 1-1;
|
|||
|
}else{
|
|||
|
}
|
|||
|
|
|||
|
if( BattleArray[battleindex].Side[myside].flg & BSIDE_FLG_SURPRISE ){
|
|||
|
}else{
|
|||
|
if( BATTLE_PetLoyalCheck( battleindex, attackNo, charaindex ) ) {
|
|||
|
#ifdef _FIXWOLF // Syu ADD <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˱<EFBFBD><CBB1><EFBFBD>Bug
|
|||
|
if ( CHAR_getInt ( charaindex , CHAR_BASEIMAGENUMBER) == 101428 ) {
|
|||
|
if( CHAR_getWorkInt ( charaindex , CHAR_WORKTURN ) == 0){
|
|||
|
CHAR_setInt( charaindex, CHAR_BASEIMAGENUMBER, CHAR_getInt( charaindex , CHAR_BASEBASEIMAGENUMBER));
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKATTACKPOWER, CHAR_getWorkInt( charaindex , CHAR_WORKFIXSTR));
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKQUICK, CHAR_getWorkInt( charaindex , CHAR_WORKFIXDEX));
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_19";
|
|||
|
sprintf( szWork, "BX|%X|", attackNo);
|
|||
|
//DebugMainFunction="BATTLE_Battling_20";
|
|||
|
BATTLESTR_ADD( szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_21";
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_DOOMTIME ) > 0 ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_DOOMTIME, CHAR_getWorkInt( charaindex, CHAR_DOOMTIME) - 1 );
|
|||
|
}
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_DOOMTIME ) == 0
|
|||
|
&& ( CHAR_getWorkInt( charaindex, CHAR_WORK_com1 ) == BATTLE_COM_S_FIRE_SPEAR
|
|||
|
|| CHAR_getWorkInt( charaindex, CHAR_WORK_com1 ) == BATTLE_COM_S_DOOM ) ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, CHAR_getWorkInt( charaindex, CHAR_WORK_com1 ) );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, CHAR_getWorkInt( charaindex, CHAR_WORK_toNo ) );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLEMODE, CHAR_getWorkInt( charaindex, CHAR_WORK_mode ) );
|
|||
|
CHAR_SETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3, CHAR_getWorkInt( charaindex, CHAR_WORK_skill_level ) );
|
|||
|
CHAR_SETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3, CHAR_getWorkInt( charaindex, CHAR_WORK_array ) );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_com1, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_toNo, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_mode, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_skill_level, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_array, 0 );
|
|||
|
}
|
|||
|
|
|||
|
#endif
|
|||
|
COM = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 );
|
|||
|
|
|||
|
switch( COM ){
|
|||
|
case BATTLE_COM_ATTACK:
|
|||
|
//DebugMainFunction="BATTLE_Battling_22";
|
|||
|
if( gWeponType == ITEM_BOOMERANG ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_BOOMERANG );
|
|||
|
|
|||
|
#ifdef _PETSKILL_BECOMEFOX
|
|||
|
if( CHAR_getInt( charaindex, CHAR_BASEIMAGENUMBER)==101749
|
|||
|
|| CHAR_getWorkInt( charaindex, CHAR_WORKFOXROUND ) != -1 ){ //<2F><><EFBFBD>DZ<EFBFBD><C7B1><EFBFBD>С<EFBFBD><D0A1><EFBFBD>겻<EFBFBD><EAB2BB><EFBFBD><EFBFBD>ʹ<EFBFBD>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_BECOMEPIG
|
|||
|
if( CHAR_getInt( charaindex, CHAR_BECOMEPIG) > -1 ){//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
gWeponType = ITEM_FIST;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
}
|
|||
|
#endif
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_23";
|
|||
|
break;
|
|||
|
case BATTLE_COM_COMBO:
|
|||
|
//DebugMainFunction="BATTLE_Battling_24";
|
|||
|
if( ComboCheck2( EntryList, i, entrynum ) == FALSE ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_25";
|
|||
|
break;
|
|||
|
|
|||
|
case BATTLE_COM_S_STATUSCHANGE:
|
|||
|
gBattleStausChange = CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3 );
|
|||
|
gBattleStausTurn = CHAR_GETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3 );
|
|||
|
break;
|
|||
|
|
|||
|
// case BATTLE_COM_S_GYRATE:
|
|||
|
// gBattleStausChange = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM5 );
|
|||
|
// gBattleStausTurn = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM6 );
|
|||
|
// break;
|
|||
|
|
|||
|
#ifdef _PETSKILL_HECTOR
|
|||
|
case BATTLE_COM_S_HECTOR:
|
|||
|
gBattleStausChange = CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3 );
|
|||
|
gBattleStausTurn = CHAR_GETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3 );
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PET_SKILL_SARS // WON ADD <20><>ɷ<EFBFBD><C9B7><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_SARS:
|
|||
|
gBattleStausChange = CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3 );
|
|||
|
gBattleStausTurn = CHAR_GETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3 );
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
case BATTLE_COM_S_CHARGE:
|
|||
|
//DebugMainFunction="BATTLE_Battling_26";
|
|||
|
BATTLE_Charge( battleindex, attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_27";
|
|||
|
break;
|
|||
|
case BATTLE_COM_S_RENZOKU:
|
|||
|
attack_max = CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3 );
|
|||
|
gDamageDiv = attack_max;
|
|||
|
break;
|
|||
|
case BATTLE_COM_S_ZIYUN1:
|
|||
|
attack_max = CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3 );
|
|||
|
gDamageDiv = attack_max;
|
|||
|
gBattleDuckModyfy = CHAR_GETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3 );
|
|||
|
#ifdef _VARY_WOLF
|
|||
|
case BATTLE_COM_S_VARY:
|
|||
|
// <20><><EFBFBD>ò<EFBFBD><C3B2><EFBFBD>
|
|||
|
break;
|
|||
|
#endif
|
|||
|
#ifdef _SKILL_WILDVIOLENT_ATT
|
|||
|
//<2F><EFBFBD><F1B1A9B9><EFBFBD> vincent add 2002/05/16
|
|||
|
case BATTLE_COM_S_WILDVIOLENTATTACK:
|
|||
|
attack_max = RAND(3,10);//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
gDamageDiv = attack_max;//ÿ<>ι<EFBFBD><CEB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˺<EFBFBD>
|
|||
|
gBattleDuckModyfy = CHAR_GETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3 );//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
break;
|
|||
|
#endif
|
|||
|
case BATTLE_COM_S_EARTHROUND0:
|
|||
|
gBattleDamageModyfy = 1.0 + 0.01 * CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM3 );
|
|||
|
break;
|
|||
|
#ifdef _BATTLE_ATTCRAZED
|
|||
|
case BATTLE_COM_S_ATTCRAZED:
|
|||
|
attack_max = CHAR_GETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3);
|
|||
|
break;
|
|||
|
#endif
|
|||
|
#ifdef _SHOOTCHESTNUT // Syu ADD <20>輼<EFBFBD><E8BCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ATTSHOOT:
|
|||
|
attack_max = CHAR_GETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3);
|
|||
|
gDamageDiv = attack_max;//ÿ<>ι<EFBFBD><CEB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˺<EFBFBD>
|
|||
|
break;
|
|||
|
#endif
|
|||
|
case BATTLE_COM_S_MIGHTY:
|
|||
|
gBattleDamageModyfy = CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3 ) * 0.01;
|
|||
|
gBattleDuckModyfy = CHAR_GETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3 ); // <20><><EFBFBD><EFBFBD>ľĤ<C4BE><C4A4>ɧ<EFBFBD>ٳ<EFBFBD>
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_28";
|
|||
|
BATTLE_TargetListSet( charaindex, attackNo, aDefList );
|
|||
|
//DebugMainFunction="BATTLE_Battling_29";
|
|||
|
COM = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM1 );
|
|||
|
|
|||
|
ContFlg = FALSE;
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEFLG ) & CHAR_BATTLEFLG_AIBAD
|
|||
|
&& COM == BATTLE_COM_COMBO ){
|
|||
|
//print( "<22><><EFBFBD><EFBFBD><EFBFBD>ҳ϶Ȳ<CFB6><C8B2><EFBFBD>ʹ<EFBFBD>ñ<EFBFBD>ɱ<EFBFBD><C9B1>ʧ<EFBFBD><CAA7>(%s)\n", CHAR_getUseName( charaindex ) );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_ATTACK );
|
|||
|
}
|
|||
|
#ifdef _BATTLE_TIMESPEED//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٶ<EFBFBD>
|
|||
|
{
|
|||
|
int flgtime = 0;
|
|||
|
switch( COM ){
|
|||
|
#ifdef _BATTLE_ATTCRAZED
|
|||
|
case BATTLE_COM_S_ATTCRAZED:
|
|||
|
flgtime = 200*3;
|
|||
|
break;
|
|||
|
#endif
|
|||
|
#ifdef _SHOOTCHESTNUT // Syu ADD <20>輼<EFBFBD><E8BCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ATTSHOOT:
|
|||
|
flgtime = 80*attack_max;
|
|||
|
break;
|
|||
|
#endif
|
|||
|
case BATTLE_COM_JYUJYUTU:
|
|||
|
case BATTLE_COM_S_ATTACK_MAGIC:
|
|||
|
flgtime = 260; // 1/100sec
|
|||
|
break;
|
|||
|
case BATTLE_COM_COMBO:
|
|||
|
flgtime = 200; // 1/100sec
|
|||
|
break;
|
|||
|
case BATTLE_COM_GUARD:
|
|||
|
break;
|
|||
|
case BATTLE_COM_WAIT:
|
|||
|
default :
|
|||
|
flgtime = 150; // 1/100sec
|
|||
|
break;
|
|||
|
}
|
|||
|
BattleArray[battleindex].flgTime += flgtime;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_BECOMEFOX // <20><><EFBFBD><EFBFBD><EFBFBD>Ļ<EFBFBD><C4BB><EFBFBD><EFBFBD>ṥ<EFBFBD><E1B9A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 20%
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKFOXROUND ) != -1 ){ //<2F><><EFBFBD><EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKATTACKPOWER, CHAR_getWorkInt( charaindex, CHAR_WORKFIXSTR)*0.8);//<2F><><EFBFBD><EFBFBD>20%
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKDEFENCEPOWER, CHAR_getWorkInt( charaindex, CHAR_WORKFIXTOUGH)*0.8);//<2F><><EFBFBD><EFBFBD>20%
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKQUICK, CHAR_getWorkInt( charaindex, CHAR_WORKFIXDEX)*0.8);//<2F><><EFBFBD><EFBFBD>20%
|
|||
|
}
|
|||
|
#endif
|
|||
|
switch( COM ){//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
//==== ֱ<>ӹ<EFBFBD><D3B9><EFBFBD>ϵ ===============================================================
|
|||
|
case BATTLE_COM_S_BRUST: // <20><><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_CHAIN_ATK: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_CHAIN_ATK_2: // ˫<>ع<EFBFBD><D8B9><EFBFBD>
|
|||
|
case BATTLE_COM_S_CAVALRY: // <20><><EFBFBD>﹥<EFBFBD><EFB9A5>
|
|||
|
case BATTLE_COM_S_DEAD_ATTACK: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ATTACK_WEAK: // <20><><EFBFBD>㹥<EFBFBD><E3B9A5>
|
|||
|
case BATTLE_COM_S_PLUNDER: // <20><><EFBFBD>Ӷ<EFBFBD>
|
|||
|
case BATTLE_COM_S_CHAOS: // <20><><EFBFBD>ҹ<EFBFBD><D2B9><EFBFBD>
|
|||
|
{
|
|||
|
// <20><>ֹͬ<D6B9>ӻ<EFBFBD><D3BB><EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Battling_30";
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
if( BATTLE_CheckSameSide( charaindex, defNo) == 1 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo ); break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_31";
|
|||
|
}
|
|||
|
case BATTLE_COM_S_ENRAGE_PET: // <20><>ŭ<EFBFBD><C5AD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_Battling_32";
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISATTACKED, 1 );
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
battle_profession_attack_fun(battleindex, attackNo, defNo, charaindex);
|
|||
|
//change fix <20><><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9>ְҵ<D6B0>ò<EFBFBD><C3B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//BATTLE_AddProfit( battleindex, aAttackList);
|
|||
|
//DebugMainFunction="BATTLE_Battling_33";
|
|||
|
}
|
|||
|
break;
|
|||
|
//==== ħ<><C4A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵ ================================================================
|
|||
|
case BATTLE_COM_S_VOLCANO_SPRINGS: // <20><>ɽȪ
|
|||
|
case BATTLE_COM_S_FIRE_BALL: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_FIRE_SPEAR: // <20><><EFBFBD><EFBFBD>ǹ
|
|||
|
case BATTLE_COM_S_SUMMON_THUNDER: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_CURRENT: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_STORM: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ICE_ARROW: // <20><><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ICE_CRACK: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ICE_MIRROR: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_DOOM: // <20><><EFBFBD><EFBFBD>ĩ<EFBFBD><C4A9>
|
|||
|
case BATTLE_COM_S_BLOOD_WORMS: // <20><>Ѫ<EFBFBD><D1AA>
|
|||
|
case BATTLE_COM_S_SIGN: // һ<><D2BB><EFBFBD><EFBFBD>Ѫ
|
|||
|
case BATTLE_COM_S_ENCLOSE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_THROUGH_ATTACK: // <20>ᴩ<EFBFBD><E1B4A9><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_CONVOLUTE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
/* if( COM == BATTLE_COM_S_DOOM //<2F><><EFBFBD><EFBFBD>ĩ<EFBFBD>ռ<EFBFBD><D5BC><EFBFBD>
|
|||
|
|| COM == BATTLE_COM_S_FIRE_SPEAR){
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_DOOMTIME ) > 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
sprintf( szWork, "bt|%x|", attackNo );
|
|||
|
BATTLESTR_ADD( szWork );
|
|||
|
break;
|
|||
|
}
|
|||
|
}*/
|
|||
|
#endif
|
|||
|
// <20><>ֹͬ<D6B9>ӻ<EFBFBD><D3BB><EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Battling_34";
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
if( BATTLE_CheckSameSide( charaindex, defNo) == 1 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo ); break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_35";
|
|||
|
}
|
|||
|
case BATTLE_COM_S_BLOOD: // <20><>Ѫ<EFBFBD><D1AA><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_Battling_36";
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISATTACKED, 1 );
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
#if 1 // Robin fix <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѫ<EFBFBD><D1AA><EFBFBD><EFBFBD><EFBFBD>˵<EFBFBD>Ѫ
|
|||
|
if( defNo != attackNo && COM == BATTLE_COM_S_BLOOD ){
|
|||
|
//print("\n <20>ķ<EFBFBD><C4B7><EFBFBD>!<21><>Ѫ<EFBFBD><D1AA><EFBFBD><EFBFBD><EFBFBD>˵<EFBFBD>Ѫ!!:%s ", CHAR_getChar( charaindex, CHAR_CDKEY) );
|
|||
|
defNo = attackNo;
|
|||
|
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>쳣<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߡ<EFBFBD>", CHAR_COLORYELLOW);
|
|||
|
CONNECT_setCloseRequest( CHAR_getWorkInt( charaindex, CHAR_WORKFD ) , 1 );
|
|||
|
break;
|
|||
|
}
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_37";
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
if( COM == BATTLE_COM_S_ICE_CRACK ){
|
|||
|
if( pBattle->ice_count >= 20 )
|
|||
|
pBattle->ice_count = 0;
|
|||
|
pBattle->ice_use[pBattle->ice_count] = TRUE;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
pBattle->ice_level[pBattle->ice_count] = CHAR_GETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3);
|
|||
|
pBattle->ice_bout[pBattle->ice_count] = 2;
|
|||
|
pBattle->ice_toNo[pBattle->ice_count] = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
pBattle->ice_array[pBattle->ice_count] = CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3);
|
|||
|
pBattle->ice_charaindex[pBattle->ice_count] = charaindex;
|
|||
|
pBattle->ice_attackNo[pBattle->ice_count] = attackNo;
|
|||
|
++pBattle->ice_count;
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n<><6E><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_38";
|
|||
|
#endif
|
|||
|
battle_profession_attack_magic_fun(battleindex, attackNo, defNo, charaindex);
|
|||
|
//DebugMainFunction="BATTLE_Battling_39";
|
|||
|
//change fix <20><><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9>ְҵ<D6B0>ò<EFBFBD><C3B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//BATTLE_AddProfit( battleindex, aAttackList);
|
|||
|
break;
|
|||
|
}
|
|||
|
//==== <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵ ====================================================================
|
|||
|
case BATTLE_COM_S_FOCUS: // רעս<D7A2><D5BD>
|
|||
|
case BATTLE_COM_S_AVOID: // <20>ر<EFBFBD>
|
|||
|
case BATTLE_COM_S_RECOVERY: // <20><>Ѫ
|
|||
|
case BATTLE_COM_S_SCAPEGOAT: // <20><><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA>
|
|||
|
case BATTLE_COM_S_ENRAGE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_COLLECT: // <20><><EFBFBD><EFBFBD><EFBFBD>ۼ<EFBFBD>
|
|||
|
case BATTLE_COM_S_TRAP: // <20><><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_TRANSPOSE: // <20><><EFBFBD>λ<EFBFBD>λ
|
|||
|
case BATTLE_COM_S_DOCILE: // ѱ<><D1B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
case BATTLE_COM_S_CALL_NATURE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȼ
|
|||
|
#endif
|
|||
|
{
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISATTACKED, 1 );
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_40";
|
|||
|
battle_profession_assist_fun(battleindex, attackNo, defNo, charaindex);
|
|||
|
//DebugMainFunction="BATTLE_Battling_41";
|
|||
|
break;
|
|||
|
}
|
|||
|
//==== <20><><EFBFBD>иı<D0B8>״̬ϵ ====================================================================
|
|||
|
case BATTLE_COM_S_SHIELD_ATTACK: // <20>ܻ<EFBFBD>
|
|||
|
case BATTLE_COM_S_ENTWINE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_DRAGNET: // <20><><EFBFBD><EFBFBD><DEB5><EFBFBD>
|
|||
|
case BATTLE_COM_S_TOXIN_WEAPON: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_INSTIGATE: // <20><><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_OBLIVION: // <20><><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
// <20><>ֹͬ<D6B9>ӻ<EFBFBD><D3BB><EFBFBD>
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_42";
|
|||
|
if( BATTLE_CheckSameSide( charaindex, defNo) == 1 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//if( COM == BATTLE_COM_S_TOXIN_WEAPON )
|
|||
|
//printf("\nbug-ͬ<>ӻ<EFBFBD><D3BB><EFBFBD>");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_43";
|
|||
|
}
|
|||
|
case BATTLE_COM_S_RESIST_FIRE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_RESIST_ICE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_RESIST_THUNDER: // <20><EFBFBD><D7BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
case BATTLE_COM_S_RESIST_F_I_T: // <20><>Ȼ<EFBFBD><C8BB><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_BOUNDARY: // <20><><EFBFBD><EFBFBD><EFBFBD>Խ<EFBFBD><D4BD><EFBFBD>
|
|||
|
#endif
|
|||
|
case BATTLE_COM_S_FIRE_ENCLOSE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ICE_ENCLOSE: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_THUNDER_ENCLOSE: // <20><EFBFBD><D7B8><EFBFBD>
|
|||
|
{
|
|||
|
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISATTACKED, 1 );
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_44";
|
|||
|
battle_profession_status_chang_fun(battleindex, attackNo, defNo, charaindex);
|
|||
|
//DebugMainFunction="BATTLE_Battling_45";
|
|||
|
//if( COM == BATTLE_COM_S_TOXIN_WEAPON )
|
|||
|
//printf("\nbug-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
//DebugMainFunction="BATTLE_Battling_46";
|
|||
|
break;
|
|||
|
}
|
|||
|
//====================================================================================
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_ACUPUNCTURE
|
|||
|
case BATTLE_COM_S_ACUPUNCTURE: //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƥ
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKACUPUNCTURE, 1);
|
|||
|
//print("\n<><6E><EFBFBD><EFBFBD>:%s",CHAR_getChar(charaindex,CHAR_NAME));
|
|||
|
#endif
|
|||
|
case BATTLE_COM_S_CHARGE_OK:
|
|||
|
case BATTLE_COM_S_POWERBALANCE:
|
|||
|
case BATTLE_COM_S_STATUSCHANGE:
|
|||
|
case BATTLE_COM_S_EARTHROUND0:
|
|||
|
case BATTLE_COM_S_MIGHTY:
|
|||
|
if( COM == BATTLE_COM_S_MIGHTY ){
|
|||
|
int def_index = -1;
|
|||
|
int i;
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );//ȡ<>ñ<EFBFBD><C3B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߵ<EFBFBD>λ<EFBFBD><CEBB>
|
|||
|
if( BATTLE_TargetCheck(battleindex, defNo) == FALSE
|
|||
|
|| CHAR_getWorkInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_EARTHROUND0 ){
|
|||
|
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һֻ<D2BB><D6BB>
|
|||
|
if( defNo < 10 ){
|
|||
|
for( i=0;i<10;i++ )
|
|||
|
if( BATTLE_TargetCheck(battleindex, i)
|
|||
|
&& CHAR_getWorkInt( BATTLE_No2Index( battleindex, i ), CHAR_WORKBATTLECOM1 ) != BATTLE_COM_S_EARTHROUND0){
|
|||
|
defNo = i;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
else{
|
|||
|
for( i=10;i<20;i++ )
|
|||
|
if( BATTLE_TargetCheck(battleindex, i)
|
|||
|
&& CHAR_getWorkInt( BATTLE_No2Index( battleindex, i ), CHAR_WORKBATTLECOM1 ) != BATTLE_COM_S_EARTHROUND0){
|
|||
|
defNo = i;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( BATTLE_TargetCheck(battleindex, defNo) == FALSE
|
|||
|
|| CHAR_getWorkInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_EARTHROUND0 ) {
|
|||
|
return 0;
|
|||
|
}
|
|||
|
}
|
|||
|
def_index = BATTLE_No2Index( battleindex, defNo );//ȡ<>ñ<EFBFBD><C3B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߵ<EFBFBD>idx
|
|||
|
|
|||
|
// <20><>ֹͬ<D6B9>ӻ<EFBFBD><D3BB><EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Battling_47";
|
|||
|
if( BATTLE_CheckSameSide( charaindex, defNo) == 1 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo ); break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_48";
|
|||
|
if( !CHAR_CHECKINDEX( def_index ) ) break;
|
|||
|
//DebugMainFunction="BATTLE_Battling_49";
|
|||
|
if( PROFESSION_BATTLE_StatusAttackCheck( charaindex, def_index, CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM5), CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM7) ) )
|
|||
|
CHAR_setWorkInt( def_index, StatusTbl[CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM5)], CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM6));//<2F>趨<EFBFBD><E8B6A8><EFBFBD><EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Battling_50";
|
|||
|
}
|
|||
|
|
|||
|
case BATTLE_COM_S_GUARDIAN_ATTACK:
|
|||
|
case BATTLE_COM_S_RENZOKU:
|
|||
|
#ifdef _BATTLE_ATTCRAZED // ANDY <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ATTCRAZED:
|
|||
|
#endif
|
|||
|
#ifdef _SHOOTCHESTNUT // Syu ADD <20>輼<EFBFBD><E8BCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ATTSHOOT:
|
|||
|
#endif
|
|||
|
#ifdef _SKILL_WILDVIOLENT_ATT
|
|||
|
case BATTLE_COM_S_WILDVIOLENTATTACK://<2F><EFBFBD><F1B1A9B9><EFBFBD> vincent add 2002/05/16
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SKILL_SPEEDY_ATT
|
|||
|
case BATTLE_COM_S_SPEEDYATTACK: //<2F><><EFBFBD>ٹ<EFBFBD><D9B9><EFBFBD> vincent add 2002/05/20
|
|||
|
#endif
|
|||
|
case BATTLE_COM_ATTACK:
|
|||
|
#ifdef _PET_SKILL_SARS // WON ADD <20><>ɷ<EFBFBD><C9B7><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_SARS:
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_BECOMEFOX
|
|||
|
case BATTLE_COM_S_BECOMEFOX:
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_BECOMEPIG
|
|||
|
case BATTLE_COM_S_BECOMEPIG:
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_SHOWMERCY
|
|||
|
case BATTLE_COM_S_SHOWMERCY:
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_GYRATE
|
|||
|
case BATTLE_COM_S_GYRATE:
|
|||
|
if( COM == BATTLE_COM_S_GYRATE ){
|
|||
|
int i,j=0,f_num,temp[5]={0};
|
|||
|
char szWork[256];
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
if(defNo < 5)
|
|||
|
f_num = 0;
|
|||
|
else if(defNo >=5 && defNo < 10)
|
|||
|
f_num = 5;
|
|||
|
else if(defNo >=10 && defNo < 15)
|
|||
|
f_num = 10;
|
|||
|
else
|
|||
|
f_num = 15;
|
|||
|
|
|||
|
// ȡ<><C8A1>ս<EFBFBD><D5BD><EFBFBD>ϴ<EFBFBD><CFB4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
for( i=f_num; i<f_num+5; i++ ){
|
|||
|
if(BATTLE_TargetCheck(battleindex, i) != FALSE){
|
|||
|
temp[j] = i;
|
|||
|
j++;
|
|||
|
}
|
|||
|
}
|
|||
|
if(j==0) break;
|
|||
|
//DebugMainFunction="BATTLE_Battling_51";
|
|||
|
sprintf( szWork, "BH|a%X|", attackNo ); //<2F>¹<EFBFBD><C2B9><EFBFBD>ָ<EFBFBD><D6B8>
|
|||
|
//DebugMainFunction="BATTLE_Battling_52";
|
|||
|
BATTLESTR_ADD( szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_53";
|
|||
|
for(i=0;i<j;i++){
|
|||
|
//int atk_index = BATTLE_No2Index( battleindex, attackNo );
|
|||
|
//int def_index = BATTLE_No2Index( battleindex, temp[i] );
|
|||
|
//DebugMainFunction="BATTLE_Battling_54";
|
|||
|
BATTLE_Attack( battleindex, attackNo, temp[i] );
|
|||
|
//DebugMainFunction="BATTLE_Battling_55";
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_56";
|
|||
|
BATTLESTR_ADD( "FF|" );
|
|||
|
//DebugMainFunction="BATTLE_Battling_57";
|
|||
|
break;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_FIREKILL
|
|||
|
case BATTLE_COM_S_FIREKILL:
|
|||
|
if( COM == BATTLE_COM_S_FIREKILL ){
|
|||
|
int i;
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_58";
|
|||
|
//Ŀ<><C4BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<2C><EFBFBD><F2B2BBB4><EFBFBD>,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>
|
|||
|
if( BATTLE_TargetCheck(battleindex, defNo) == FALSE
|
|||
|
|| CHAR_getWorkInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_EARTHROUND0 ){
|
|||
|
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һֻ<D2BB><D6BB>
|
|||
|
if( defNo < 10 ){
|
|||
|
for( i=0;i<10;i++ )
|
|||
|
if( BATTLE_TargetCheck(battleindex, i)
|
|||
|
&& CHAR_getWorkInt( BATTLE_No2Index( battleindex, i ), CHAR_WORKBATTLECOM1 ) != BATTLE_COM_S_EARTHROUND0){
|
|||
|
defNo = i;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
else{
|
|||
|
for( i=10;i<20;i++ )
|
|||
|
if( BATTLE_TargetCheck(battleindex, i)
|
|||
|
&& CHAR_getWorkInt( BATTLE_No2Index( battleindex, i ), CHAR_WORKBATTLECOM1 ) != BATTLE_COM_S_EARTHROUND0){
|
|||
|
defNo = i;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( BATTLE_TargetCheck(battleindex, defNo) == FALSE
|
|||
|
|| CHAR_getWorkInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_EARTHROUND0 ) {
|
|||
|
return 0;
|
|||
|
}
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_59";
|
|||
|
// <20><>ֹͬ<D6B9>ӻ<EFBFBD><D3BB><EFBFBD>
|
|||
|
if( BATTLE_CheckSameSide( charaindex, defNo) == 1 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD>ܶ<EFBFBD>ͬ<EFBFBD><EFBFBD>ʹ<EFBFBD>ô˼<EFBFBD><EFBFBD><EFBFBD>!", CHAR_COLORYELLOW);
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_60";
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ80%
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKATTACKPOWER,((float)CHAR_getWorkInt(charaindex,CHAR_WORKFIXSTR)*0.8));
|
|||
|
//DebugMainFunction="BATTLE_Battling_61";
|
|||
|
sprintf( szWork, "Bf|a%X|", attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_62";
|
|||
|
BATTLESTR_ADD( szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_63";
|
|||
|
BATTLE_Attack_FIREKILL( battleindex, attackNo, defNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_64";
|
|||
|
BATTLE_MultiAttMagic_Fire(battleindex,attackNo,defNo,2,200);//2<><32>200<30><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ħ<EFBFBD><C4A7>200<30>˺<EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Battling_65";
|
|||
|
BATTLESTR_ADD( "FF|" );
|
|||
|
//DebugMainFunction="BATTLE_Battling_66";
|
|||
|
break;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_HECTOR
|
|||
|
case BATTLE_COM_S_HECTOR:
|
|||
|
if( COM == BATTLE_COM_S_HECTOR ){
|
|||
|
int def_index = -1;
|
|||
|
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );//ȡ<>ñ<EFBFBD><C3B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߵ<EFBFBD>λ<EFBFBD><CEBB>
|
|||
|
//DebugMainFunction="BATTLE_Battling_67";
|
|||
|
int i;
|
|||
|
if( BATTLE_TargetCheck(battleindex, defNo) == FALSE
|
|||
|
|| CHAR_getWorkInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_EARTHROUND0 ){
|
|||
|
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һֻ<D2BB><D6BB>
|
|||
|
if( defNo < 10 ){
|
|||
|
for( i=0;i<10;i++ )
|
|||
|
if( BATTLE_TargetCheck(battleindex, i)
|
|||
|
&& CHAR_getWorkInt( BATTLE_No2Index( battleindex, i ), CHAR_WORKBATTLECOM1 ) != BATTLE_COM_S_EARTHROUND0){
|
|||
|
defNo = i;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
else{
|
|||
|
for( i=10;i<20;i++ )
|
|||
|
if( BATTLE_TargetCheck(battleindex, i)
|
|||
|
&& CHAR_getWorkInt( BATTLE_No2Index( battleindex, i ), CHAR_WORKBATTLECOM1 ) != BATTLE_COM_S_EARTHROUND0){
|
|||
|
defNo = i;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( BATTLE_TargetCheck(battleindex, defNo) == FALSE
|
|||
|
|| CHAR_getWorkInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_EARTHROUND0 ) {
|
|||
|
return 0;
|
|||
|
}
|
|||
|
}
|
|||
|
def_index = BATTLE_No2Index( battleindex, defNo );//ȡ<>ñ<EFBFBD><C3B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߵ<EFBFBD>idx
|
|||
|
//DebugMainFunction="BATTLE_Battling_68";
|
|||
|
|
|||
|
// <20><>ֹͬ<D6B9>ӻ<EFBFBD><D3BB><EFBFBD>
|
|||
|
if( BATTLE_CheckSameSide( charaindex, defNo) == 1 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo ); break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_69";
|
|||
|
if( !CHAR_CHECKINDEX( def_index ) ) break;
|
|||
|
|
|||
|
if( PROFESSION_BATTLE_StatusAttackCheck( charaindex, def_index, CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM5), CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM7) ) )
|
|||
|
CHAR_setWorkInt( def_index, StatusTbl[CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM5)], CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM6));//<2F>趨<EFBFBD><E8B6A8><EFBFBD><EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Battling_70";
|
|||
|
}
|
|||
|
#endif
|
|||
|
case BATTLE_COM_S_ZIYUN1:
|
|||
|
if( COM == BATTLE_COM_S_ZIYUN1 ){
|
|||
|
int def_index = -1;
|
|||
|
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );//ȡ<>ñ<EFBFBD><C3B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߵ<EFBFBD>λ<EFBFBD><CEBB>
|
|||
|
int i;
|
|||
|
if( BATTLE_TargetCheck(battleindex, defNo) == FALSE
|
|||
|
|| CHAR_getWorkInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_EARTHROUND0 ){
|
|||
|
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һֻ<D2BB><D6BB>
|
|||
|
if( defNo < 10 ){
|
|||
|
for( i=0;i<10;i++ )
|
|||
|
if( BATTLE_TargetCheck(battleindex, i)
|
|||
|
&& CHAR_getWorkInt( BATTLE_No2Index( battleindex, i ), CHAR_WORKBATTLECOM1 ) != BATTLE_COM_S_EARTHROUND0){
|
|||
|
defNo = i;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
else{
|
|||
|
for( i=10;i<20;i++ )
|
|||
|
if( BATTLE_TargetCheck(battleindex, i)
|
|||
|
&& CHAR_getWorkInt( BATTLE_No2Index( battleindex, i ), CHAR_WORKBATTLECOM1 ) != BATTLE_COM_S_EARTHROUND0){
|
|||
|
defNo = i;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if( BATTLE_TargetCheck(battleindex, defNo) == FALSE
|
|||
|
|| CHAR_getWorkInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WORKBATTLECOM1 ) == BATTLE_COM_S_EARTHROUND0 ) {
|
|||
|
return 0;
|
|||
|
}
|
|||
|
}
|
|||
|
def_index = BATTLE_No2Index( battleindex, defNo );//ȡ<>ñ<EFBFBD><C3B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߵ<EFBFBD>idx
|
|||
|
|
|||
|
// <20><>ֹͬ<D6B9>ӻ<EFBFBD><D3BB><EFBFBD>
|
|||
|
if( BATTLE_CheckSameSide( charaindex, defNo) == 1 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo ); break;
|
|||
|
}
|
|||
|
|
|||
|
if( !CHAR_CHECKINDEX( def_index ) ) break;
|
|||
|
|
|||
|
if( PROFESSION_BATTLE_StatusAttackCheck( charaindex, def_index, CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM5), CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM7) ) )
|
|||
|
CHAR_setWorkInt( def_index, StatusTbl[CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM5)], CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM6));//<2F>趨<EFBFBD><E8B6A8><EFBFBD><EFBFBD>
|
|||
|
}
|
|||
|
#ifdef _PETSKILL_ANTINTER
|
|||
|
case BATTLE_COM_S_ANTINTER:
|
|||
|
if( COM == BATTLE_COM_S_ANTINTER ){
|
|||
|
int skill;
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
if( CHAR_getInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WHICHTYPE ) == CHAR_TYPEPET
|
|||
|
&& CHAR_getInt( BATTLE_No2Index( battleindex, defNo ), CHAR_HP ) <= 0 ){
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
//DebugMainFunction="BATTLE_Battling_71";
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_ANTINTER, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_72";
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_RETRACE
|
|||
|
case BATTLE_COM_S_RETRACE:
|
|||
|
if ( COM == BATTLE_COM_S_RETRACE ) CHAR_setWorkInt( charaindex, CHAR_WORKRETRACE, 1);
|
|||
|
#endif
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISATTACKED, 1 );
|
|||
|
if( gWeponType == ITEM_BOW ){
|
|||
|
//DebugMainFunction="BATTLE_Battling_73";
|
|||
|
for( attack_count = 0; attack_count < 10; attack_count++ ){
|
|||
|
defNo = aDefList[attack_count];
|
|||
|
if( attackNo == defNo )continue;
|
|||
|
if( BATTLE_TargetCheck( battleindex, defNo ) == TRUE )
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_74";
|
|||
|
if( attack_count >= 10 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_75";
|
|||
|
defNo = aDefList[0];
|
|||
|
}else
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0
|
|||
|
|| defNo == attackNo){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_76";
|
|||
|
if( COM == BATTLE_COM_S_EARTHROUND0 ){
|
|||
|
sprintf( szWork, "BI|a%X|", attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_77";
|
|||
|
}else {
|
|||
|
#ifdef _FIXBUG_ATTACKBOW
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKITEMMETAMO) > 0 ||
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKNPCMETAMO) > 0
|
|||
|
|| CHAR_getWorkInt( charaindex, CHAR_WORKFOXROUND ) != -1 ){ //<2F><><EFBFBD>DZ<EFBFBD><C7B1><EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
if( gWeponType == ITEM_BOW || gWeponType == ITEM_BOUNDTHROW ||
|
|||
|
gWeponType == ITEM_BREAKTHROW || gWeponType == ITEM_BOOMERANG) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><EFBFBD>Զ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!!", CHAR_COLORYELLOW);
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_78";
|
|||
|
if( gWeponType == ITEM_BOW ) sprintf( szWork, "BB|a%X|w0|", attackNo );
|
|||
|
else if( gWeponType == ITEM_BOUNDTHROW ) //<2F><><EFBFBD>Ƕ<EFBFBD><C7B6><EFBFBD>ͷ
|
|||
|
sprintf( szWork, "BB|a%X|w1|", attackNo );
|
|||
|
else if( gWeponType == ITEM_BREAKTHROW )
|
|||
|
sprintf( szWork, "BB|a%X|w2|", attackNo );
|
|||
|
else sprintf( szWork, "BH|a%X|", attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_79";
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _SHOOTCHESTNUT // Syu ADD <20>輼<EFBFBD><E8BCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if ( COM == BATTLE_COM_S_ATTSHOOT )
|
|||
|
sprintf( szWork, "BB|a%X|w0|", attackNo );
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_80";
|
|||
|
BATTLESTR_ADD( szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_81";
|
|||
|
if( COM == BATTLE_COM_S_CHARGE_OK ||
|
|||
|
COM == BATTLE_COM_S_EARTHROUND0 ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1, BATTLE_COM_NONE );
|
|||
|
}else{
|
|||
|
|
|||
|
#ifdef _SHOOTCHESTNUT // Syu ADD <20>輼<EFBFBD><E8BCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if ( CHAR_getWorkInt(charaindex, CHAR_WORKBATTLECOM1) != BATTLE_COM_S_ATTSHOOT)
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_SHOWMERCY
|
|||
|
if( CHAR_getWorkInt(charaindex, CHAR_WORKBATTLECOM1) != BATTLE_COM_S_SHOWMERCY)
|
|||
|
#endif
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM1,BATTLE_COM_ATTACK );
|
|||
|
}
|
|||
|
for( attack_count = 0, k = 0;; ){
|
|||
|
if( gWeponType == ITEM_BOW ){
|
|||
|
if( BATTLE_TargetCheck( battleindex, defNo ) == FALSE ){
|
|||
|
attack_flg = 0;
|
|||
|
}else{
|
|||
|
attack_flg = 1;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
if( attack_flg ){
|
|||
|
|
|||
|
|
|||
|
ContFlg = BATTLE_Attack( battleindex, attackNo, defNo );
|
|||
|
#ifdef _PETSKILL_RETRACE
|
|||
|
if( Battle_Attack_ReturnData_x.Battle_Attack_ReturnData == BATTLE_RET_DODGE
|
|||
|
&& COM == BATTLE_COM_S_RETRACE ){
|
|||
|
if( RAND(1,100) < 80 ){ //80%<25><><EFBFBD>ʷ<EFBFBD><CAB7><EFBFBD>2<EFBFBD>ι<EFBFBD><CEB9><EFBFBD>
|
|||
|
//<2F><>+20%
|
|||
|
|
|||
|
CHAR_setWorkInt( BATTLE_No2Index( battleindex, attackNo ),
|
|||
|
CHAR_WORKATTACKPOWER,
|
|||
|
( CHAR_getWorkInt( BATTLE_No2Index( battleindex, attackNo ), CHAR_WORKFIXSTR) + ( CHAR_getWorkInt( BATTLE_No2Index( battleindex, attackNo ), CHAR_WORKFIXSTR) * 0.2 ) ) );
|
|||
|
//DebugMainFunction="BATTLE_Battling_82";
|
|||
|
BATTLE_Attack( battleindex, attackNo, defNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_83";
|
|||
|
}
|
|||
|
Battle_Attack_ReturnData_x.Battle_Attack_ReturnData = 0;
|
|||
|
}
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_84";
|
|||
|
BATTLE_AddProfit( battleindex, aAttackList);
|
|||
|
//DebugMainFunction="BATTLE_Battling_85";
|
|||
|
if( ++attack_count >= attack_max ) break;
|
|||
|
if( CHAR_getInt( charaindex, CHAR_HP ) <= 0 ) {
|
|||
|
ContFlg = FALSE;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
defNo = aDefList[++k];
|
|||
|
if( defNo < 0 ) break;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKBATTLECOM2, defNo );
|
|||
|
if( gWeponType == ITEM_BOW ){
|
|||
|
}else
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
break;
|
|||
|
}
|
|||
|
if( BATTLE_CountAlive( battleindex, 0) == 0 || BATTLE_CountAlive( battleindex, 1) == 0) {
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
gBattleDamageModyfy = 1.0;
|
|||
|
gBattleDuckModyfy = 0;
|
|||
|
|
|||
|
for( k = 0; k < 5 && ContFlg == TRUE; k ++ ){
|
|||
|
if( ( k & 1 ) == 1 ){
|
|||
|
attackNoSub = attackNo;
|
|||
|
defNoSub = defNo;
|
|||
|
}else{
|
|||
|
defNoSub = attackNo;
|
|||
|
attackNoSub = defNo;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_86";
|
|||
|
ContFlg = BATTLE_Counter(battleindex, attackNoSub, defNoSub );
|
|||
|
//DebugMainFunction="BATTLE_Battling_87";
|
|||
|
aAttackList[0] = attackNoSub;
|
|||
|
aAttackList[1] = -1;
|
|||
|
BATTLE_AddProfit( battleindex, aAttackList);
|
|||
|
//DebugMainFunction="BATTLE_Battling_88";
|
|||
|
}
|
|||
|
aAttackList[0] = -1;
|
|||
|
//DebugMainFunction="BATTLE_Battling_89";
|
|||
|
BATTLESTR_ADD( "FF|" );
|
|||
|
//DebugMainFunction="BATTLE_Battling_90";
|
|||
|
|
|||
|
#ifdef _PETSKILL_BECOMEFOX // <20><><EFBFBD>Է<EFBFBD>ʹ<EFBFBD><CAB9><EFBFBD>Ļ<EFBFBD><C4BB><EFBFBD>
|
|||
|
if ( (COM == BATTLE_COM_S_BECOMEFOX )
|
|||
|
&& (Battle_Attack_ReturnData_x.Battle_Attack_ReturnData != BATTLE_RET_MISS) //û<><C3BB>miss
|
|||
|
&& (Battle_Attack_ReturnData_x.Battle_Attack_ReturnData != BATTLE_RET_DODGE) //û<><C3BB><EFBFBD><EFBFBD><EFBFBD>ܹ<EFBFBD>
|
|||
|
&& (Battle_Attack_ReturnData_x.Battle_Attack_ReturnData != BATTLE_RET_ALLGUARD)
|
|||
|
&& (Battle_Attack_ReturnData_x.Battle_Attack_ReturnData != BATTLE_RET_ARRANGE)
|
|||
|
&& (BATTLE_TargetCheck( battleindex, defNo )) //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
&& (rand()%100 < 31)
|
|||
|
&& (CHAR_getInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER) //ֻ<>г<EFBFBD><D0B3><EFBFBD>(CHAR_TYPEPET)<29>ſ<EFBFBD><C5BF>Ա<EFBFBD><D4B1>Ļ<EFBFBD>
|
|||
|
&& (CHAR_getWorkInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WORK_PETFLG ) != 0 )
|
|||
|
#ifdef _PETSKILL_BECOMEPIG
|
|||
|
&& (CHAR_getInt( charaindex, CHAR_BECOMEPIG) == -1)//û<>д<EFBFBD><D0B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
#endif
|
|||
|
)
|
|||
|
{
|
|||
|
int ToList[SIDE_OFFSET*2+1];
|
|||
|
int defindex = BATTLE_No2Index( battleindex, defNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_91";
|
|||
|
BATTLE_MultiList( battleindex, defNo, ToList );
|
|||
|
//DebugMainFunction="BATTLE_Battling_92";
|
|||
|
BATTLE_MagicEffect( battleindex, defNo, ToList, 101120, 101750);
|
|||
|
//DebugMainFunction="BATTLE_Battling_93";
|
|||
|
|
|||
|
CHAR_setWorkInt( defindex, CHAR_WORKFOXROUND, pBattle->turn );
|
|||
|
|
|||
|
if( CHAR_getInt( defindex, CHAR_RIDEPET) != -1 ) { //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setInt( defindex, CHAR_RIDEPET, -1 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_94";
|
|||
|
BATTLE_changeRideImage( defindex );
|
|||
|
//DebugMainFunction="BATTLE_Battling_95";
|
|||
|
CHAR_setWorkInt( defindex, CHAR_WORKPETFALL, 1 );
|
|||
|
}
|
|||
|
|
|||
|
CHAR_setInt( defindex, CHAR_BASEIMAGENUMBER, 101749);
|
|||
|
}
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_96";
|
|||
|
#ifdef _PETSKILL_BECOMEPIG // <20><><EFBFBD>Է<EFBFBD>ʹ<EFBFBD><CAB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if ( (COM == BATTLE_COM_S_BECOMEPIG )
|
|||
|
&& (Battle_Attack_ReturnData_x.Battle_Attack_ReturnData != BATTLE_RET_MISS) //û<><C3BB>miss
|
|||
|
&& (Battle_Attack_ReturnData_x.Battle_Attack_ReturnData != BATTLE_RET_DODGE) //û<><C3BB><EFBFBD><EFBFBD><EFBFBD>ܹ<EFBFBD>
|
|||
|
&& (Battle_Attack_ReturnData_x.Battle_Attack_ReturnData != BATTLE_RET_ALLGUARD)
|
|||
|
&& (Battle_Attack_ReturnData_x.Battle_Attack_ReturnData != BATTLE_RET_ARRANGE)
|
|||
|
&& (BATTLE_TargetCheck( battleindex, defNo )) //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
&& (CHAR_getInt( BATTLE_No2Index( battleindex, defNo ), CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER) //ֻ<><D6BB><EFBFBD><EFBFBD><EFBFBD>Ҳſ<D2B2><C5BF>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
&& (BATTLE_CheckSameSide( charaindex, defNo) != 1 ) // <20><>ֹͬ<D6B9>ӻ<EFBFBD><D3BB><EFBFBD>
|
|||
|
&& CHAR_getInt( BATTLE_No2Index( battleindex, defNo ), CHAR_BECOMEPIG) < 2000000000 ) //<2F><>ֹ<EFBFBD>Ʊ<EFBFBD>
|
|||
|
{
|
|||
|
char temp[64];
|
|||
|
int ToList[SIDE_OFFSET*2+1], compute,petrate,pettime,pigbbi=100250;
|
|||
|
char *pszOption=NULL;
|
|||
|
//DebugMainFunction="BATTLE_Battling_97";
|
|||
|
int defindex = BATTLE_No2Index( battleindex, defNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_98";
|
|||
|
pszOption = PETSKILL_getChar( CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3 ), PETSKILL_OPTION );
|
|||
|
//DebugMainFunction="BATTLE_Battling_99";
|
|||
|
if( pszOption == "\0")
|
|||
|
sscanf( pszOption, "%d %d %d", &petrate, &pettime, &pigbbi);
|
|||
|
else
|
|||
|
petrate = 100, pettime = 60, pigbbi = 100250;
|
|||
|
//DebugMainFunction="BATTLE_Battling_100";
|
|||
|
if( rand()%100 < petrate ){
|
|||
|
CHAR_setWorkInt( defindex, CHAR_WORKITEMMETAMO, 0);//<2F><><EFBFBD>߱<EFBFBD><DFB1><EFBFBD>ȡ<EFBFBD><C8A1>
|
|||
|
CHAR_setWorkInt( defindex, CHAR_WORKNPCMETAMO, 0 );//NPC<50><43><EFBFBD><EFBFBD>ȡ<EFBFBD><C8A1>
|
|||
|
CHAR_setWorkInt( defindex, CHAR_WORKFOXROUND, -1);//<2F>Ļ<EFBFBD><C4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȡ<EFBFBD><C8A1>
|
|||
|
//DebugMainFunction="BATTLE_Battling_101";
|
|||
|
BATTLE_MultiList( battleindex, defNo, ToList );
|
|||
|
//DebugMainFunction="BATTLE_Battling_102";
|
|||
|
BATTLE_MagicEffect( battleindex, defNo, ToList, 101120, 101750);
|
|||
|
//DebugMainFunction="BATTLE_Battling_103";
|
|||
|
if( CHAR_getInt( defindex, CHAR_RIDEPET) != -1 ){ //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
CHAR_setInt( defindex, CHAR_RIDEPET, -1 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_104";
|
|||
|
BATTLE_changeRideImage( defindex );
|
|||
|
//DebugMainFunction="BATTLE_Battling_105";
|
|||
|
CHAR_setWorkInt( defindex, CHAR_WORKPETFALL, 1 );
|
|||
|
}
|
|||
|
|
|||
|
CHAR_setInt( defindex, CHAR_BECOMEPIG_BBI, pigbbi );
|
|||
|
|
|||
|
compute = CHAR_getInt( defindex, CHAR_BECOMEPIG);
|
|||
|
CHAR_setInt( defindex, CHAR_BASEIMAGENUMBER, CHAR_getInt( defindex, CHAR_BECOMEPIG_BBI ) );
|
|||
|
if( compute == -1 )//<2F><>һ<EFBFBD><D2BB><EFBFBD><EFBFBD>
|
|||
|
CHAR_setInt( defindex, CHAR_BECOMEPIG, pettime + 1 + compute ); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>(<28><>λ:<3A><>)
|
|||
|
else
|
|||
|
CHAR_setInt( defindex, CHAR_BECOMEPIG, pettime + compute );
|
|||
|
sprintf(temp, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>:%d<><64>", CHAR_getInt( defindex, CHAR_BECOMEPIG) );
|
|||
|
CHAR_talkToCli( defindex, -1, temp, CHAR_COLORYELLOW);
|
|||
|
//DebugMainFunction="BATTLE_Battling_106";
|
|||
|
//print("\n<><6E><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʼ0:%s,round:%d", CHAR_getChar( defindex, CHAR_NAME), CHAR_getWorkInt( defindex, CHAR_WORKFOXROUND));
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
break;
|
|||
|
//<2F><><EFBFBD>´<EFBFBD><C2B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E2B9A5>
|
|||
|
case BATTLE_COM_BOOMERANG:
|
|||
|
gBattleDamageModyfy = 0.3;
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_107";
|
|||
|
if( defNo < 0 ){
|
|||
|
defNo = BATTLE_DefaultAttacker( battleindex, 1 - myside );
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_108";
|
|||
|
if( 0 <= defNo && defNo <= 19 ){
|
|||
|
defNo /= 5; //
|
|||
|
}else{
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_109";
|
|||
|
if( (int)(attackNo / 5 ) == defNo ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_110";
|
|||
|
{
|
|||
|
int *pBoomerangTbl = BoomerangVsTbl[defNo];
|
|||
|
for( k = 0; k < 5; k ++ ){
|
|||
|
if( BATTLE_TargetCheck( battleindex, pBoomerangTbl[k] ) == FALSE ){
|
|||
|
continue;
|
|||
|
}else{
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_111";
|
|||
|
if( k == 5 ){
|
|||
|
defNo = BATTLE_DefaultAttacker( battleindex, 1 - myside );
|
|||
|
if( 0 <= defNo && defNo <= 19 ){
|
|||
|
defNo /= 5;
|
|||
|
}else{
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_112";
|
|||
|
}
|
|||
|
sprintf( szWork, "BO|a%X|", attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_113";
|
|||
|
BATTLESTR_ADD( szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_114";
|
|||
|
{
|
|||
|
//DebugMainFunction="BATTLE_Battling_115";
|
|||
|
int *pBoomerangTbl = BoomerangVsTbl[defNo];
|
|||
|
//DebugMainFunction="BATTLE_Battling_116";
|
|||
|
if( myside == 1 ){
|
|||
|
k = 4; j = -1;
|
|||
|
}else{
|
|||
|
k = 0; j = 1;
|
|||
|
}
|
|||
|
for( ; ; k += j ){
|
|||
|
if( j > 0 && k > 4 )break;
|
|||
|
if( j < 0 && k < 0 )break;
|
|||
|
defNo = pBoomerangTbl[k];
|
|||
|
if( BATTLE_TargetCheck( battleindex, defNo ) == FALSE ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
BATTLE_Attack( battleindex, attackNo, defNo );
|
|||
|
}
|
|||
|
}
|
|||
|
gBattleDamageModyfy = 1.0;
|
|||
|
gBattleDuckModyfy = 0;
|
|||
|
//DebugMainFunction="BATTLE_Battling_117";
|
|||
|
BATTLESTR_ADD( "FF|" );
|
|||
|
//DebugMainFunction="BATTLE_Battling_118";
|
|||
|
break;
|
|||
|
|
|||
|
//---------------------------------------------
|
|||
|
case BATTLE_COM_CAPTURE:
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_119";
|
|||
|
BATTLE_Capture( battleindex, attackNo, defNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_120";
|
|||
|
break;
|
|||
|
|
|||
|
//---------------------------------------------
|
|||
|
#ifdef _VARY_WOLF
|
|||
|
case BATTLE_COM_S_VARY:
|
|||
|
{
|
|||
|
int ToList[SIDE_OFFSET*2+1];
|
|||
|
int bk_amn = 0;
|
|||
|
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
bk_amn = (CHAR_getInt( charaindex, CHAR_BASEBASEIMAGENUMBER) + 5) + (myside*4);
|
|||
|
//DebugMainFunction="BATTLE_Battling_121";
|
|||
|
BATTLE_MultiList( battleindex, defNo, ToList );
|
|||
|
//DebugMainFunction="BATTLE_Battling_122";
|
|||
|
BATTLE_MagicEffect( battleindex, attackNo, ToList, 101120, bk_amn);
|
|||
|
//DebugMainFunction="BATTLE_Battling_123";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
case BATTLE_COM_GUARD:
|
|||
|
//DebugMainFunction="BATTLE_Battling_124";
|
|||
|
BATTLE_Guard( battleindex, attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_125";
|
|||
|
|
|||
|
break;
|
|||
|
case BATTLE_COM_ESCAPE:
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPET ){
|
|||
|
if (BATTLE_Escape(battleindex, attackNo, 0) == TRUE)
|
|||
|
{
|
|||
|
if (CHAR_getWorkInt(charaindex, CHAR_WORKFMPKFLAG) == 1)
|
|||
|
CHAR_setWorkInt(charaindex, CHAR_WORKFMPKFLAG, -1);
|
|||
|
}
|
|||
|
}
|
|||
|
break;
|
|||
|
case BATTLE_COM_COMPELESCAPE: //ǿ<><C7BF><EFBFBD>뿪
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPET ){
|
|||
|
//DebugMainFunction="BATTLE_Battling_126";
|
|||
|
BATTLE_Escape( battleindex, attackNo, 1);
|
|||
|
//DebugMainFunction="BATTLE_Battling_127";
|
|||
|
if (CHAR_getWorkInt(charaindex, CHAR_WORKFMPKFLAG) == 1)
|
|||
|
CHAR_setWorkInt(charaindex, CHAR_WORKFMPKFLAG, -1);
|
|||
|
}
|
|||
|
break;
|
|||
|
|
|||
|
case BATTLE_COM_PETIN:
|
|||
|
if( CHAR_getInt( charaindex, CHAR_DEFAULTPET ) == -1 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
{
|
|||
|
char szWork[256];
|
|||
|
//DebugMainFunction="BATTLE_Battling_128";
|
|||
|
snprintf( szWork, sizeof( szWork ), "K%d", CHAR_getInt( charaindex, CHAR_DEFAULTPET ) );
|
|||
|
//DebugMainFunction="BATTLE_Battling_129";
|
|||
|
CHAR_sendStatusString( charaindex, szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_130";
|
|||
|
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_131";
|
|||
|
BATTLE_PetIn( battleindex, attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_132";
|
|||
|
lssproto_KS_send(
|
|||
|
getfdFromCharaIndex( charaindex ),
|
|||
|
CHAR_getInt( charaindex, CHAR_DEFAULTPET ), 1 );
|
|||
|
break;
|
|||
|
case BATTLE_COM_PETOUT:
|
|||
|
if( CHAR_getInt( charaindex, CHAR_DEFAULTPET ) != -1 ){
|
|||
|
lssproto_KS_send(
|
|||
|
getfdFromCharaIndex( charaindex ),
|
|||
|
CHAR_getInt( charaindex, CHAR_DEFAULTPET ), 1 );
|
|||
|
{
|
|||
|
char szWork[256];
|
|||
|
snprintf( szWork, sizeof( szWork ), "K%d", CHAR_getInt( charaindex, CHAR_DEFAULTPET ) );
|
|||
|
CHAR_sendStatusString( charaindex, szWork );
|
|||
|
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_133";
|
|||
|
BATTLE_PetIn( battleindex, attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_134";
|
|||
|
}
|
|||
|
// shan 2002/01/14 Begin <20><>ֻ<EFBFBD><D6BB>
|
|||
|
{
|
|||
|
int attackindex, petNo;
|
|||
|
|
|||
|
attackindex = BATTLE_No2Index( battleindex, attackNo );
|
|||
|
petNo = CHAR_getWorkInt( attackindex, CHAR_WORKBATTLECOM2 );
|
|||
|
#ifdef _TRANS_7_COLOR //CF<43><46><EFBFBD><EFBFBD><EFBFBD>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ٻ<EFBFBD><D9BB><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( getpetsummon() == 0 ){
|
|||
|
|
|||
|
if( CHAR_getWorkInt(charaindex, CHAR_WORK_PET0_STAT+petNo) != PET_STAT_SELECT)
|
|||
|
break;
|
|||
|
}
|
|||
|
#endif
|
|||
|
/* //CAX
|
|||
|
#ifndef _PET_STANDBY
|
|||
|
if( CHAR_getWorkInt(charaindex, CHAR_WORK_PET0_STAT+petNo) != PET_STAT_SELECT)
|
|||
|
break;
|
|||
|
#endif
|
|||
|
*/
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_135";
|
|||
|
// shan End
|
|||
|
BATTLE_PetOut( battleindex, attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_136";
|
|||
|
lssproto_KS_send(
|
|||
|
getfdFromCharaIndex( charaindex ),
|
|||
|
CHAR_getInt( charaindex, CHAR_DEFAULTPET ), 1 );
|
|||
|
break;
|
|||
|
// Terry add 2001/11/05
|
|||
|
#ifdef _ATTACK_MAGIC
|
|||
|
case BATTLE_COM_S_ATTACK_MAGIC: // <20><><EFBFBD><EFBFBD>ħ<EFBFBD><C4A7>
|
|||
|
magic = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
toindex = CHAR_getWorkInt(charaindex,CHAR_WORKBATTLECOM2);
|
|||
|
// print("magic->%d,toindex->%d\n",magic,toindex);
|
|||
|
// <20>жϹ<D0B6> Χ
|
|||
|
//DebugMainFunction="BATTLE_Battling_137";
|
|||
|
for(magic_count=0;magic_count<MAX_MAGIC_NUMBER;magic_count++){
|
|||
|
// <20>ȶ<EFBFBD>ħ<EFBFBD><C4A7><EFBFBD><EFBFBD>idֵ<64><D6B5><EFBFBD>ҳ<EFBFBD>ħ<EFBFBD><C4A7><EFBFBD>Ĺ<EFBFBD><C4B9><EFBFBD> Χ
|
|||
|
if(magic == TargetIndex[magic_count][0]){
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>Ǵ<EFBFBD>ȫ<EFBFBD><C8AB><EFBFBD><EFBFBD>ħ<EFBFBD><C4A7>
|
|||
|
if(TargetIndex[magic_count][1] == 20)
|
|||
|
toindex = TargetIndex[magic_count][1];
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ǵ<EFBFBD><C7B4><EFBFBD><EFBFBD>˵<EFBFBD>ħ<EFBFBD><C4A7>
|
|||
|
else if(TargetIndex[magic_count][1] != -1){
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>Ǵ<EFBFBD><C7B4><EFBFBD><EFBFBD>µ<EFBFBD><C2B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>
|
|||
|
if(toindex >= 0 && toindex <= 4)
|
|||
|
toindex = TargetIndex[magic_count][1];
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD>ǰ<EFBFBD><C7B0><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>
|
|||
|
else
|
|||
|
toindex = TargetIndex[magic_count][1]-1;
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_138";
|
|||
|
// print("toindex->%d\n",toindex);
|
|||
|
MAGIC_DirectUse(charaindex,magic,toindex,CHAR_GETWORKINT_HIGH(charaindex,CHAR_WORKBATTLECOM3));
|
|||
|
//DebugMainFunction="BATTLE_Battling_139";
|
|||
|
BATTLE_AddProfit( battleindex, aAttackList );
|
|||
|
//DebugMainFunction="BATTLE_Battling_140";
|
|||
|
break;
|
|||
|
#endif
|
|||
|
case BATTLE_COM_JYUJYUTU:
|
|||
|
//DebugMainFunction="BATTLE_Battling_141";
|
|||
|
MAGIC_DirectUse(
|
|||
|
charaindex,
|
|||
|
CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3 ),
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 ),
|
|||
|
CHAR_GETWORKINT_HIGH( charaindex, CHAR_WORKBATTLECOM3 )
|
|||
|
);
|
|||
|
//DebugMainFunction="BATTLE_Battling_142";
|
|||
|
break;
|
|||
|
|
|||
|
case BATTLE_COM_ITEM:
|
|||
|
itemindex = CHAR_getItemIndex(charaindex, CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM3 ));
|
|||
|
if( ITEM_CHECKINDEX( itemindex ) == FALSE ){
|
|||
|
// print( "\nerr:Ҫʹ<D2AA>õ<EFBFBD>itemλ<6D><CEBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(%s)(%d)\n",
|
|||
|
// CHAR_getUseName( charaindex ), CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM3 ) );
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
#if 1 // Robin fix ս<><D5BD><EFBFBD><EFBFBD><EFBFBD>ɻ<EFBFBD><C9BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ʒ
|
|||
|
#ifdef _BATTLE_EQUIT_OTHER
|
|||
|
if(getBattleEquitOther()!=1)
|
|||
|
#endif
|
|||
|
{
|
|||
|
int itemtype = ITEM_getInt( itemindex, ITEM_TYPE );
|
|||
|
if( itemtype == ITEM_HELM
|
|||
|
|| itemtype == ITEM_ARMOUR
|
|||
|
|| itemtype == ITEM_BRACELET
|
|||
|
//|| itemtype == ITEM_MUSIC
|
|||
|
|| itemtype == ITEM_NECKLACE
|
|||
|
|| itemtype == ITEM_RING
|
|||
|
|| itemtype == ITEM_BELT
|
|||
|
|| itemtype == ITEM_EARRING
|
|||
|
|| itemtype == ITEM_NOSERING
|
|||
|
|| itemtype == ITEM_AMULET
|
|||
|
//|| itemtype == CHAR_HEAD
|
|||
|
)
|
|||
|
{
|
|||
|
//print("\n <20>ķ<EFBFBD><C4B7><EFBFBD>!ս<><D5BD><EFBFBD><EFBFBD><EFBFBD>ɻ<EFBFBD><C9BB><EFBFBD><EFBFBD><EFBFBD>!!:%s ", CHAR_getChar( charaindex, CHAR_CDKEY) );
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _FIXBUG_ATTACKBOW
|
|||
|
{
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKITEMMETAMO) > 0 ||
|
|||
|
CHAR_getWorkInt( charaindex, CHAR_WORKNPCMETAMO) > 0
|
|||
|
|| CHAR_getWorkInt( charaindex, CHAR_WORKFOXROUND ) != -1 ){ //<2F><><EFBFBD>DZ<EFBFBD><C7B1><EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
int armtype;
|
|||
|
int itemindex = CHAR_getItemIndex( charaindex, CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM3 ));
|
|||
|
if( !ITEM_CHECKINDEX(itemindex) ) break;
|
|||
|
armtype = ITEM_getInt( itemindex, ITEM_TYPE );
|
|||
|
|
|||
|
if( armtype == ITEM_BOW || armtype == ITEM_BOUNDTHROW ||
|
|||
|
armtype == ITEM_BREAKTHROW || armtype == ITEM_BOOMERANG) {
|
|||
|
CHAR_talkToCli( charaindex, -1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><EFBFBD>Զ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>", CHAR_COLORYELLOW );
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_143";
|
|||
|
CHAR_ItemUse(charaindex,CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 ), CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM3 ));
|
|||
|
//DebugMainFunction="BATTLE_Battling_144";
|
|||
|
if( ITEM_getEquipPlace( charaindex, itemindex ) == CHAR_ARM ){
|
|||
|
//DebugMainFunction="BATTLE_Battling_145";
|
|||
|
sprintf( szWork, "BN|a%X|%X|", attackNo,
|
|||
|
CHAR_getInt( charaindex, CHAR_BASEIMAGENUMBER ) );
|
|||
|
//DebugMainFunction="BATTLE_Battling_146";
|
|||
|
BATTLESTR_ADD( szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_147";
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
// <20><><EFBFBD><EFBFBD>ר<EFBFBD><D7A8>
|
|||
|
BATTLE_ProfessionStatus_init( battleindex, charaindex );
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_148";
|
|||
|
}else{
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_149";
|
|||
|
break;
|
|||
|
|
|||
|
#ifdef _PSKILL_FALLGROUND
|
|||
|
case BATTLE_COM_S_FALLRIDE://<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_150";
|
|||
|
ContFlg = BATTLE_S_FallGround( battleindex, attackNo, defNo, BATTLE_COM_S_FALLRIDE);
|
|||
|
//DebugMainFunction="BATTLE_Battling_151";
|
|||
|
break;
|
|||
|
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_TIMID
|
|||
|
case BATTLE_COM_S_TIMID:
|
|||
|
{
|
|||
|
int skill;
|
|||
|
//DebugMainFunction="BATTLE_Battling_152";
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_153";
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_TIMID, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_154";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_2TIMID
|
|||
|
case BATTLE_COM_S_2TIMID:
|
|||
|
{
|
|||
|
int skill;
|
|||
|
//DebugMainFunction="BATTLE_Battling_155";
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_156";
|
|||
|
if( BATTLE_CheckSameSide( charaindex, defNo) == 1 ) {
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_157";
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_2TIMID, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_158";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_PROPERTY
|
|||
|
case BATTLE_COM_S_PROPERTYSKILL:
|
|||
|
{
|
|||
|
int skill;
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
//DebugMainFunction="BATTLE_Battling_159";
|
|||
|
BATTLE_S_PetSkillProperty( battleindex, attackNo, COM, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_160";
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_161";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _BATTLE_LIGHTTAKE
|
|||
|
case BATTLE_COM_S_LIGHTTAKE:
|
|||
|
{
|
|||
|
int skill;
|
|||
|
//DebugMainFunction="BATTLE_Battling_162";
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_163";
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_LIGHTTAKE, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_164";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SKILL_DAMAGETOHP
|
|||
|
case BATTLE_COM_S_DAMAGETOHP: //<2F><>Ѫ<EFBFBD><D1AA>
|
|||
|
{
|
|||
|
int skill;
|
|||
|
//DebugMainFunction="BATTLE_Battling_165";
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_166";
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_DAMAGETOHP, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_167";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_DAMAGETOHP
|
|||
|
case BATTLE_COM_S_DAMAGETOHP2: //<2F><><EFBFBD>¿<EFBFBD><C2BF><EFBFBD>(<28><>Ѫ<EFBFBD><D1AA><EFBFBD>ı<EFBFBD><C4B1><EFBFBD>)
|
|||
|
{
|
|||
|
int skill,attackidxtemp;
|
|||
|
//DebugMainFunction="BATTLE_Battling_168";
|
|||
|
attackidxtemp = BATTLE_No2Index( battleindex, attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_169";
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_170";
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_DAMAGETOHP2, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_171";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _Skill_MPDAMAGE
|
|||
|
case BATTLE_COM_S_MPDAMAGE: //MP<4D>˺<EFBFBD>
|
|||
|
{
|
|||
|
int skill;
|
|||
|
//DebugMainFunction="BATTLE_Battling_172";
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_173";
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_MPDAMAGE, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_174";
|
|||
|
break;
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
#ifdef _SKILL_TOOTH
|
|||
|
case BATTLE_COM_S_TOOTHCRUSHE:
|
|||
|
{
|
|||
|
int skill;
|
|||
|
//DebugMainFunction="BATTLE_Battling_175";
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_176";
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_TOOTHCRUSHE, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_177";
|
|||
|
break;
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
#ifdef _PSKILL_MODIFY
|
|||
|
case BATTLE_COM_S_MODIFYATT:
|
|||
|
{
|
|||
|
int skill;
|
|||
|
//DebugMainFunction="BATTLE_Battling_178";
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_179";
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_MODIFYATT, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_180";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
#ifdef _PSKILL_MDFYATTACK
|
|||
|
case BATTLE_COM_S_MDFYATTACK:
|
|||
|
{
|
|||
|
int skill;
|
|||
|
//DebugMainFunction="BATTLE_Battling_181";
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_182";
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_MDFYATTACK, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_183";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_TEAR
|
|||
|
case BATTLE_COM_S_PETSKILLTEAR:
|
|||
|
{
|
|||
|
int skill;
|
|||
|
//DebugMainFunction="BATTLE_Battling_184";
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_185";
|
|||
|
skill = CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3);
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_PETSKILLTEAR, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_186";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SONIC_ATTACK // WON ADD <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_SONIC:
|
|||
|
{
|
|||
|
int skill, defNo2=-1, index2=-1;
|
|||
|
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
skill = CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3);
|
|||
|
|
|||
|
if( defNo >= 15 && defNo < 20 ) defNo2 = defNo - 5;
|
|||
|
else if( defNo >= 5 && defNo < 10 ) defNo2 = defNo - 5;
|
|||
|
else defNo2 = -1;
|
|||
|
|
|||
|
battleindex = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEINDEX );
|
|||
|
index2 = BATTLE_No2Index( battleindex, defNo2 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_187";
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_SONIC, skill );
|
|||
|
//DebugMainFunction="BATTLE_Battling_188";
|
|||
|
if( index2 >= 0 ){
|
|||
|
if( defNo2 >= 0 ){
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo2, BATTLE_COM_S_SONIC2, skill );
|
|||
|
}
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_189";
|
|||
|
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_REGRET
|
|||
|
case BATTLE_COM_S_REGRET:
|
|||
|
{
|
|||
|
int skill, defNo2=-1, index2=-1;
|
|||
|
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
skill = CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3);
|
|||
|
|
|||
|
if( defNo >= 15 && defNo < 20 ) defNo2 = defNo - 5;
|
|||
|
else if( defNo >= 5 && defNo < 10 ) defNo2 = defNo - 5;
|
|||
|
else defNo2 = -1;
|
|||
|
|
|||
|
battleindex = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEINDEX );
|
|||
|
index2 = BATTLE_No2Index( battleindex, defNo2 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_190";
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo, BATTLE_COM_S_REGRET, skill );
|
|||
|
//DebugMainFunction="BATTLE_Battling_191";
|
|||
|
if( index2 >= 0 ){
|
|||
|
if( defNo2 >= 0 ){
|
|||
|
ContFlg = BATTLE_S_AttackDamage( battleindex, attackNo, defNo2, BATTLE_COM_S_REGRET2, skill );
|
|||
|
}
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_192";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _MAGIC_SUPERWALL
|
|||
|
case BATTLE_COM_S_SUPERWALL:
|
|||
|
{
|
|||
|
int skill;
|
|||
|
defNo = CHAR_getWorkInt(charaindex,CHAR_WORKBATTLECOM2);
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
//DebugMainFunction="BATTLE_Battling_193";
|
|||
|
ContFlg = PETSKILL_MagicStatusChange_Battle( battleindex, attackNo, defNo, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_194";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_SETDUCK
|
|||
|
case BATTLE_COM_S_SETDUCK:
|
|||
|
{
|
|||
|
int skill;
|
|||
|
defNo = CHAR_getWorkInt(charaindex,CHAR_WORKBATTLECOM2);
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
//DebugMainFunction="BATTLE_Battling_195";
|
|||
|
ContFlg = PETSKILL_SetDuckChange_Battle( battleindex, attackNo, defNo, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_196";
|
|||
|
break;
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _MAGICPET_SKILL
|
|||
|
case BATTLE_COM_S_SETMAGICPET:
|
|||
|
{
|
|||
|
int skill;
|
|||
|
defNo = CHAR_getWorkInt(charaindex,CHAR_WORKBATTLECOM2);
|
|||
|
skill = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
//DebugMainFunction="BATTLE_Battling_197";
|
|||
|
ContFlg = PETSKILL_SetMagicPet_Battle( battleindex, attackNo, defNo, skill);
|
|||
|
//DebugMainFunction="BATTLE_Battling_198";
|
|||
|
break;
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _OFFLINE_SYSTEM
|
|||
|
case BATTLE_COM_S_OFFLINE_RECOVERY:
|
|||
|
{
|
|||
|
defNo = CHAR_getWorkInt(charaindex,CHAR_WORKBATTLECOM2);
|
|||
|
int HP = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
ContFlg = OFFLINE_MultiRessurect( battleindex, attackNo, defNo, HP, 0);
|
|||
|
break;
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _PRO_BATTLEENEMYSKILL
|
|||
|
case BATTLE_COM_S_ENEMYRELIFE:
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_199";
|
|||
|
ContFlg =BATTLE_E_ENEMYREFILE( battleindex, attackNo, defNo, BATTLE_COM_S_ENEMYRELIFE);
|
|||
|
//DebugMainFunction="BATTLE_Battling_200";
|
|||
|
if( ContFlg == FALSE ) {
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISATTACKED, 1 );
|
|||
|
ContFlg = BATTLE_Attack( battleindex, attackNo, defNo );
|
|||
|
BATTLE_AddProfit( battleindex, aAttackList );
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_201";
|
|||
|
BATTLE_AddProfit( battleindex, aAttackList );
|
|||
|
//DebugMainFunction="BATTLE_Battling_202";
|
|||
|
break;
|
|||
|
|
|||
|
case BATTLE_COM_S_ENEMYREHP:
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_203";
|
|||
|
ContFlg =BATTLE_E_ENEMYREHP( battleindex, attackNo, defNo, BATTLE_COM_S_ENEMYREHP);
|
|||
|
//DebugMainFunction="BATTLE_Battling_204";
|
|||
|
if( ContFlg == FALSE ) {
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISATTACKED, 1 );
|
|||
|
ContFlg = BATTLE_Attack( battleindex, attackNo, defNo );
|
|||
|
BATTLE_AddProfit( battleindex, aAttackList );
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_205";
|
|||
|
BATTLE_AddProfit( battleindex, aAttackList );
|
|||
|
//DebugMainFunction="BATTLE_Battling_206";
|
|||
|
break;
|
|||
|
|
|||
|
case BATTLE_COM_S_ENEMYHELP:
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
//print("\n BATTLE_NoAction()");
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_207";
|
|||
|
ContFlg =BATTLE_E_ENEMYHELP( battleindex, attackNo, defNo, BATTLE_COM_S_ENEMYREHP);
|
|||
|
//DebugMainFunction="BATTLE_Battling_208";
|
|||
|
if( ContFlg == FALSE ) {
|
|||
|
CHAR_setFlg( charaindex, CHAR_ISATTACKED, 1 );
|
|||
|
ContFlg = BATTLE_Attack( battleindex, attackNo, defNo );
|
|||
|
BATTLE_AddProfit( battleindex, aAttackList );
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_209";
|
|||
|
BATTLE_AddProfit( battleindex, aAttackList );
|
|||
|
//DebugMainFunction="BATTLE_Battling_210";
|
|||
|
break;
|
|||
|
#endif
|
|||
|
case BATTLE_COM_S_GBREAK: //<2F>Ƴ<EFBFBD><C6B3><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_211";
|
|||
|
ContFlg = BATTLE_S_GBreak( battleindex, attackNo, defNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_212";
|
|||
|
break;
|
|||
|
#ifdef _SKILL_GUARDBREAK2//<2F>Ƴ<EFBFBD><C6B3><EFBFBD><EFBFBD><EFBFBD>2 vincent add 2002/05/20
|
|||
|
case BATTLE_COM_S_GBREAK2:
|
|||
|
//ȷ<><C8B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_213";
|
|||
|
ContFlg = BATTLE_S_GBreak2( battleindex, attackNo, defNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_214";
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SKILL_SACRIFICE
|
|||
|
case BATTLE_COM_S_SACRIFICE://<2F><>Ԯ vincent add 2002/05/30
|
|||
|
//ȷ<><C8B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_215";
|
|||
|
ContFlg = BATTLE_S_Sacrifice( battleindex, attackNo, defNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_216";
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SKILL_REFRESH
|
|||
|
case BATTLE_COM_S_REFRESH://״̬<D7B4>ظ<EFBFBD> vincent add 2002/08/08
|
|||
|
{
|
|||
|
int array;
|
|||
|
array = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
// print("\n vincent--case BATTLE_COM_S_REFRESH:-->defNo:%d",defNo);
|
|||
|
//DebugMainFunction="BATTLE_Battling_217";
|
|||
|
ContFlg = BATTLE_S_Refresh( battleindex, attackNo, defNo ,array);
|
|||
|
//DebugMainFunction="BATTLE_Battling_218";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SKILL_WEAKEN //vincent<6E>輼:<3A><><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_WEAKEN:
|
|||
|
{
|
|||
|
int array;
|
|||
|
array = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
//print("\n vincent--case BATTLE_COM_S_WEAKEN:-->defNo:%d",defNo);
|
|||
|
//DebugMainFunction="BATTLE_Battling_219";
|
|||
|
ContFlg = BATTLE_S_Weaken( battleindex, attackNo, defNo ,array);
|
|||
|
//DebugMainFunction="BATTLE_Battling_220";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SKILL_DEEPPOISON //vincent<6E>輼:<3A>綾
|
|||
|
case BATTLE_COM_S_DEEPPOISON:
|
|||
|
{
|
|||
|
int array;
|
|||
|
array = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
// DebugMainFunction="BATTLE_Battling_221";
|
|||
|
ContFlg = BATTLE_S_Deeppoison( battleindex, attackNo, defNo ,array);
|
|||
|
//DebugMainFunction="BATTLE_Battling_222";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SKILL_BARRIER //vincent<6E>輼:ħ<><C4A7>
|
|||
|
case BATTLE_COM_S_BARRIER:
|
|||
|
{
|
|||
|
int array;
|
|||
|
array = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_223";
|
|||
|
ContFlg = BATTLE_S_Barrier( battleindex, attackNo, defNo ,array);
|
|||
|
//DebugMainFunction="BATTLE_Battling_224";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SKILL_NOCAST //vincent<6E>輼:<3A><>Ĭ
|
|||
|
case BATTLE_COM_S_NOCAST:
|
|||
|
{
|
|||
|
int array;
|
|||
|
array = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
defNo = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLECOM2 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_225";
|
|||
|
ContFlg = BATTLE_S_Nocast( battleindex, attackNo, defNo ,array);
|
|||
|
//DebugMainFunction="BATTLE_Battling_226";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _SKILL_ROAR //vincent<6E>輼:<3A><><EFBFBD><EFBFBD>
|
|||
|
case BATTLE_COM_S_ROAR:
|
|||
|
{
|
|||
|
int array;
|
|||
|
//ȷ<><C8B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
array = CHAR_GETWORKINT_LOW(charaindex,CHAR_WORKBATTLECOM3);
|
|||
|
//DebugMainFunction="BATTLE_Battling_227";
|
|||
|
ContFlg = BATTLE_S_Roar( battleindex, attackNo, defNo ,array);
|
|||
|
//DebugMainFunction="BATTLE_Battling_228";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
case BATTLE_COM_S_ABDUCT:
|
|||
|
{
|
|||
|
int array;
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
array = CHAR_GETWORKINT_LOW( charaindex, CHAR_WORKBATTLECOM3);
|
|||
|
//DebugMainFunction="BATTLE_Battling_229";
|
|||
|
BATTLE_Abduct( battleindex, attackNo, defNo, array);
|
|||
|
//DebugMainFunction="BATTLE_Battling_230";
|
|||
|
}
|
|||
|
break;
|
|||
|
case BATTLE_COM_COMBO:
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
gDamageDiv = 1.0;
|
|||
|
ComboId = EntryList[i].combo;
|
|||
|
aAttackList[0] = EntryList[i].num; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
i ++; // <20>ݼ<EFBFBD><DDBC>о<EFBFBD><D0BE><EFBFBD>
|
|||
|
k = 1;
|
|||
|
for( ; EntryList[i].combo == ComboId && i < entrynum; i ++ ){
|
|||
|
int charmode;
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¾<EFBFBD><C2BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( CHAR_CHECKINDEX( EntryList[i].charaindex ) == FALSE )continue;
|
|||
|
|
|||
|
// <20><> <20>帨<EFBFBD><E5B8A8><EFBFBD>ƻ<EFBFBD><C6BB><EFBFBD>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݳ<EFBFBD>
|
|||
|
charmode = CHAR_getWorkInt( EntryList[i].charaindex, CHAR_WORKBATTLEMODE );
|
|||
|
if( charmode == 0 || charmode == BATTLE_CHARMODE_FINAL ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ټ<EFBFBD><D9BC><EFBFBD><EFBFBD><EFBFBD> <20><>
|
|||
|
//DebugMainFunction="BATTLE_Battling_231";
|
|||
|
BATTLE_StatusSeq( EntryList[i].charaindex );
|
|||
|
//DebugMainFunction="BATTLE_Battling_232";
|
|||
|
#ifdef _OTHER_MAGICSTAUTS
|
|||
|
BATTLE_MagicStatusSeq( EntryList[i].charaindex );
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_233";
|
|||
|
// <20><>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( BATTLE_CanMoveCheck( EntryList[i].charaindex ) == FALSE ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
if( CHAR_getInt( EntryList[i].charaindex, CHAR_HP ) <= 0 ){
|
|||
|
continue;
|
|||
|
}
|
|||
|
aAttackList[k++] = EntryList[i].num;
|
|||
|
}
|
|||
|
aAttackList[k] = -1;
|
|||
|
i--;
|
|||
|
if( k == 1 ){
|
|||
|
//print( "\nerr:һ<><D2BB>combo bug\n" );
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_234";
|
|||
|
sprintf( szWork, "BY|r%X|", defNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_235";
|
|||
|
BATTLESTR_ADD( szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_236";
|
|||
|
BATTLE_Combo( battleindex, aAttackList, defNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_237";
|
|||
|
#ifdef _Item_ReLifeAct
|
|||
|
BATTLE_AddProfit( battleindex, aAttackList );
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_238";
|
|||
|
// <20><> FF ë<><C3AB><EFBFBD>ȹ<EFBFBD><C8B9><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
BATTLESTR_ADD( "FF|" );
|
|||
|
//DebugMainFunction="BATTLE_Battling_239";
|
|||
|
break;
|
|||
|
|
|||
|
//---------------------------------------------
|
|||
|
case BATTLE_COM_WAIT:
|
|||
|
case BATTLE_COM_NONE:
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
|
|||
|
//---------------------------------------------
|
|||
|
case BATTLE_COM_S_EARTHROUND1:
|
|||
|
//DebugMainFunction="BATTLE_Battling_240";
|
|||
|
BATTLE_EarthRoundHide( battleindex, attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_241";
|
|||
|
break;
|
|||
|
|
|||
|
//---------------------------------------------
|
|||
|
case BATTLE_COM_S_LOSTESCAPE:
|
|||
|
//DebugMainFunction="BATTLE_Battling_242";
|
|||
|
BATTLE_LostEscape( battleindex, attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_243";
|
|||
|
break;
|
|||
|
|
|||
|
case BATTLE_COM_S_STEAL:
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_244";
|
|||
|
BATTLE_Steal( battleindex, attackNo, defNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_245";
|
|||
|
break;
|
|||
|
|
|||
|
#ifdef _BATTLESTEAL_FIX
|
|||
|
case BATTLE_COM_S_STEALMONEY:
|
|||
|
if( (defNo = BATTLE_TargetAdjust( battleindex, charaindex, myside )) < 0 ){
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_246";
|
|||
|
BATTLE_StealMoney( battleindex, attackNo, defNo) ;
|
|||
|
//DebugMainFunction="BATTLE_Battling_247";
|
|||
|
break;
|
|||
|
#endif
|
|||
|
case BATTLE_COM_S_NOGUARD:
|
|||
|
BATTLE_NoAction( battleindex, attackNo );
|
|||
|
break;
|
|||
|
case BATTLE_COM_S_CHARGE:
|
|||
|
//DebugMainFunction="BATTLE_Battling_248";
|
|||
|
sprintf( szWork, "bt|%x|", attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_249";
|
|||
|
BATTLESTR_ADD( szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_250";
|
|||
|
break;
|
|||
|
#ifdef _PETSKILL_LER
|
|||
|
case BATTLE_COM_S_BAT_FLY:
|
|||
|
{
|
|||
|
if((defNo = BATTLE_TargetAdjust(battleindex,charaindex,myside)) < 0){
|
|||
|
BATTLE_NoAction(battleindex,attackNo);
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_251";
|
|||
|
BATTLE_BatFly(battleindex,attackNo,myside);
|
|||
|
//DebugMainFunction="BATTLE_Battling_252";
|
|||
|
}
|
|||
|
break;
|
|||
|
case BATTLE_COM_S_DIVIDE_ATTACK:
|
|||
|
{
|
|||
|
if((defNo = BATTLE_TargetAdjust(battleindex,charaindex,myside)) < 0){
|
|||
|
BATTLE_NoAction(battleindex,attackNo);
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_253";
|
|||
|
BATTLE_DivideAttack(battleindex,attackNo,myside);
|
|||
|
//DebugMainFunction="BATTLE_Battling_254";
|
|||
|
}
|
|||
|
break;
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_BATTLE_MODEL
|
|||
|
case BATTLE_COM_S_BATTLE_MODEL:
|
|||
|
//DebugMainFunction="BATTLE_Battling_255";
|
|||
|
BATTLE_BattleModel(battleindex,attackNo,myside);
|
|||
|
//DebugMainFunction="BATTLE_Battling_256";
|
|||
|
break;
|
|||
|
#endif
|
|||
|
//---------------------------------------------
|
|||
|
default:
|
|||
|
//print( "\nerr:<3A><><EFBFBD>ֵ<EFBFBD><D6B5><EFBFBD><EFBFBD><EFBFBD>(%d:%d:%s)\n", charaindex, COM,
|
|||
|
//CHAR_getUseName( charaindex ) );
|
|||
|
//DebugMainFunction="BATTLE_Battling_257";
|
|||
|
sprintf( szWork, "bg|%x|", attackNo );
|
|||
|
//DebugMainFunction="BATTLE_Battling_258";
|
|||
|
BATTLESTR_ADD( szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_259";
|
|||
|
break;
|
|||
|
}
|
|||
|
#ifdef _VARY_WOLF
|
|||
|
if(CHAR_getInt( charaindex, CHAR_BASEIMAGENUMBER)==101428)
|
|||
|
{
|
|||
|
if(CHAR_getWorkInt( charaindex, CHAR_WORKTURN)==0)
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKTURN, 1);
|
|||
|
else
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKTURN, CHAR_getWorkInt( charaindex, CHAR_WORKTURN)+1);
|
|||
|
|
|||
|
if(CHAR_getWorkInt( charaindex, CHAR_WORKTURN)>5)
|
|||
|
{
|
|||
|
CHAR_setInt( charaindex, CHAR_BASEIMAGENUMBER, CHAR_getInt( charaindex, CHAR_BASEBASEIMAGENUMBER));
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKATTACKPOWER, CHAR_getWorkInt( charaindex, CHAR_WORKFIXSTR));
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKQUICK, CHAR_getWorkInt( charaindex, CHAR_WORKFIXDEX));
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKTURN, 0);
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
if(CHAR_getWorkInt(charaindex,CHAR_WORKPETSKILLBT)==1){
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKPETSKILLBT,0);
|
|||
|
}
|
|||
|
//#ifdef _PETSKILL_NONO_FIX
|
|||
|
// if(CHAR_getWorkInt(charaindex,CHAR_WORKLISTPAGE)==1 && CHAR_getInt(charaindex,CHAR_WHICHTYPE)==CHAR_TYPEPET){
|
|||
|
// CHAR_setWorkInt(charaindex,CHAR_WORKLISTPAGE,0);
|
|||
|
// }
|
|||
|
//#endif
|
|||
|
#ifdef _WARNPC_CTRL
|
|||
|
if(CHAR_getWorkInt(charaindex,CHAR_WORKNPCENEMYBATTLETIME)>0){
|
|||
|
time_t timep;
|
|||
|
struct tm *p;
|
|||
|
time(&timep);
|
|||
|
p=localtime(&timep); /*ȡ<>õ<EFBFBD><C3B5><EFBFBD>ʱ<EFBFBD><CAB1>*/
|
|||
|
timep = mktime(p);
|
|||
|
if(CHAR_getWorkInt(charaindex,CHAR_WORKNPCENEMYBATTLETIME)>=timep){
|
|||
|
CHAR_talkToCli( charaindex,-1,"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ս<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",CHAR_COLORYELLOW);
|
|||
|
CONNECT_setCloseRequest( getfdFromCharaIndex( charaindex ) , 1 );
|
|||
|
//CONNECT_endOne_debug(getfdFromCharaIndex(charaindex));
|
|||
|
//CHAR_setInt(charaindex,CHAR_MP,0);
|
|||
|
}
|
|||
|
if(CHAR_getWorkInt(charaindex,CHAR_WORKNPCENEMYBATTLETIME)==1)
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKNPCENEMYBATTLETIME,timep+CHAR_getWorkInt(charaindex,CHAR_WORKNPCENEMYTIME));
|
|||
|
else
|
|||
|
CHAR_setWorkInt(charaindex,CHAR_WORKNPCENEMYBATTLETIME,0);
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_BECOMEFOX // <20>ж<EFBFBD><D0B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ļ<EFBFBD><C4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƿ<EFBFBD><C7B7>ѵ<EFBFBD><D1B5>ָ<EFBFBD><D6B8>Ļغ<C4BB><D8BA><EFBFBD>
|
|||
|
//if(CHAR_getInt( charaindex, CHAR_BASEIMAGENUMBER)==101749) //<2F><>ͼ<EFBFBD><CDBC><EFBFBD>жϵĻ<CFB5>,<2C><><EFBFBD><EFBFBD><EFBFBD>˱<EFBFBD><CBB1><EFBFBD>ʱ,<2C>ᱻ<EFBFBD>Զ<EFBFBD><D4B6>Ļ<EFBFBD>ȥ
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKFOXROUND ) != -1 ) //<2F><><EFBFBD>DZ<EFBFBD><C7B1><EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD>
|
|||
|
{
|
|||
|
if(CHAR_getInt( charaindex, CHAR_BASEIMAGENUMBER)!=101749)
|
|||
|
CHAR_setInt( charaindex, CHAR_BASEIMAGENUMBER, 101749 );
|
|||
|
|
|||
|
if(pBattle->turn - CHAR_getWorkInt( charaindex, CHAR_WORKFOXROUND) > 2)
|
|||
|
{
|
|||
|
int defNo = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
int toNo = defNo - 5;//<2F><><EFBFBD>˵ı<CBB5><C4B1><EFBFBD>
|
|||
|
//print("\n<><6E><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ظ<EFBFBD>:%s,round:%d", CHAR_getChar( charaindex, CHAR_NAME), CHAR_getWorkInt( charaindex, CHAR_WORKFOXROUND));
|
|||
|
|
|||
|
CHAR_setInt( charaindex, CHAR_BASEIMAGENUMBER, CHAR_getInt( charaindex, CHAR_BASEBASEIMAGENUMBER));
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKATTACKPOWER, CHAR_getWorkInt( charaindex, CHAR_WORKFIXSTR));
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKDEFENCEPOWER, CHAR_getWorkInt( charaindex, CHAR_WORKFIXTOUGH));
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKQUICK, CHAR_getWorkInt( charaindex, CHAR_WORKFIXDEX));
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFOXROUND, -1);
|
|||
|
|
|||
|
//Change fix <20>ظ<EFBFBD><D8B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Battling_260";
|
|||
|
sprintf( szWork, "W%d", CHAR_getInt( BATTLE_No2Index( battleindex, toNo ), CHAR_DEFAULTPET ) );
|
|||
|
//DebugMainFunction="BATTLE_Battling_261";
|
|||
|
CHAR_sendStatusString( BATTLE_No2Index( battleindex, toNo ), szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_262";
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
#ifdef _PETSKILL_BECOMEPIG
|
|||
|
if( CHAR_getInt( charaindex, CHAR_BECOMEPIG) > -1
|
|||
|
&& (CHAR_getInt( charaindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER) )
|
|||
|
{
|
|||
|
char pigbuffer[128];
|
|||
|
CHAR_setInt( charaindex, CHAR_BASEIMAGENUMBER, CHAR_getInt( charaindex, CHAR_BECOMEPIG_BBI ) );
|
|||
|
if( CHAR_getInt( charaindex, CHAR_BECOMEPIG) > 0 ){
|
|||
|
sprintf(pigbuffer, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>:%d<><64>", CHAR_getInt( charaindex, CHAR_BECOMEPIG ));
|
|||
|
CHAR_talkToCli( charaindex,-1,pigbuffer,CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
else{
|
|||
|
sprintf(pigbuffer, " <20><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>뿪ս<EBBFAA><D5BD><EFBFBD><EFBFBD><EFBFBD>ɽ<EFBFBD><C9BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:%d ", CHAR_getInt( charaindex, CHAR_BECOMEPIG ));
|
|||
|
CHAR_talkToCli( charaindex,-1,pigbuffer,CHAR_COLORWHITE);
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
{
|
|||
|
/* for(i=0;i<20;i++){
|
|||
|
if( pBattle->ice_use[i] ){//<2F><><EFBFBD><EFBFBD><EFBFBD><D7BC><EFBFBD><EFBFBD>
|
|||
|
print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
if( pBattle->ice_bout[i] > 0 ){//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
if( --pBattle->ice_bout[i] == 0 ){//<2F>ű<EFBFBD><C5B1><EFBFBD>
|
|||
|
print("\n<EFBFBD>ű<EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
pBattle->ice_use[i] = FALSE;
|
|||
|
if( CHAR_CHECKINDEX(pBattle->ice_charaindex[i]) ){
|
|||
|
int battlecom = CHAR_getWorkInt( pBattle->ice_charaindex[i], CHAR_WORKBATTLECOM1 );
|
|||
|
print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
print("\nbattlecom:%d",battlecom);
|
|||
|
CHAR_setWorkInt( pBattle->ice_charaindex[i], CHAR_WORKBATTLECOM1, BATTLE_COM_S_ICE_CRACK );
|
|||
|
CHAR_SETWORKINT_HIGH( pBattle->ice_charaindex[i], CHAR_WORKBATTLECOM3, pBattle->ice_level[i] );
|
|||
|
CHAR_setWorkInt( pBattle->ice_charaindex[i], CHAR_WORKBATTLECOM2, pBattle->ice_toNo[i] );
|
|||
|
CHAR_SETWORKINT_HIGH( pBattle->ice_charaindex[i], CHAR_WORKBATTLECOM3, pBattle->ice_level[i] );
|
|||
|
CHAR_SETWORKINT_LOW( pBattle->ice_charaindex[i], CHAR_WORKBATTLECOM3, pBattle->ice_array[i] );
|
|||
|
battle_profession_attack_magic_fun(battleindex, pBattle->ice_attackNo[i], pBattle->ice_toNo[i], pBattle->ice_charaindex[i]);
|
|||
|
CHAR_setWorkInt( pBattle->ice_charaindex[i], CHAR_WORKBATTLECOM1, battlecom );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}*/
|
|||
|
}
|
|||
|
{
|
|||
|
int earth_boundary = GETHIGHVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXEARTHAT_BOUNDARY ) );
|
|||
|
int water_boundary = GETHIGHVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXWATERAT_BOUNDARY ) );
|
|||
|
int fire_boundary = GETHIGHVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXFIREAT_BOUNDARY ) );
|
|||
|
int wind_boundary = GETHIGHVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXWINDAT_BOUNDARY ) );
|
|||
|
int boundary_turn=0;
|
|||
|
BOOL boundaryclear = FALSE;
|
|||
|
if( earth_boundary > 0 ){//<2F>ؽ<EFBFBD><D8BD><EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Battling_263";
|
|||
|
boundary_turn = GETLOWVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXEARTHAT_BOUNDARY ) ) - 1;
|
|||
|
//DebugMainFunction="BATTLE_Battling_264";
|
|||
|
// print("\n<><6E>:%d ",boundary_turn );
|
|||
|
if( boundary_turn <= -1 )
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXEARTHAT_BOUNDARY, 0 ),boundaryclear = TRUE;
|
|||
|
else
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXEARTHAT_BOUNDARY, MAKE2VALUE(earth_boundary,boundary_turn) );
|
|||
|
|
|||
|
}
|
|||
|
if( water_boundary > 0 ){//ˮ<><CBAE><EFBFBD><EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Battling_265";
|
|||
|
boundary_turn = GETLOWVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXWATERAT_BOUNDARY ) ) - 1;
|
|||
|
//DebugMainFunction="BATTLE_Battling_266";
|
|||
|
// print("\nˮ:%d ",boundary_turn );
|
|||
|
|
|||
|
if( boundary_turn <= -1 )
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXWATERAT_BOUNDARY, 0 ),boundaryclear = TRUE;
|
|||
|
else
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXWATERAT_BOUNDARY, MAKE2VALUE(water_boundary,boundary_turn) );
|
|||
|
//DebugMainFunction="BATTLE_Battling_267";
|
|||
|
}
|
|||
|
if( fire_boundary > 0 ){//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Battling_268";
|
|||
|
boundary_turn = GETLOWVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXFIREAT_BOUNDARY ) ) - 1;
|
|||
|
// print("\n<><6E>:%d ",boundary_turn );
|
|||
|
//DebugMainFunction="BATTLE_Battling_269";
|
|||
|
if( boundary_turn <= -1 )
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXFIREAT_BOUNDARY, 0 ),boundaryclear = TRUE;
|
|||
|
else
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXFIREAT_BOUNDARY, MAKE2VALUE(fire_boundary,boundary_turn) );
|
|||
|
|
|||
|
}
|
|||
|
if( wind_boundary > 0 ){//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//DebugMainFunction="BATTLE_Battling_270";
|
|||
|
boundary_turn = GETLOWVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXWINDAT_BOUNDARY ) ) - 1;
|
|||
|
// print("\n<><6E>:%d ",boundary_turn );
|
|||
|
//DebugMainFunction="BATTLE_Battling_271";
|
|||
|
if( boundary_turn <= -1 )
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXWINDAT_BOUNDARY, 0 ),boundaryclear = TRUE;
|
|||
|
else
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXWINDAT_BOUNDARY, MAKE2VALUE(wind_boundary,boundary_turn) );
|
|||
|
//DebugMainFunction="BATTLE_Battling_272";
|
|||
|
}
|
|||
|
if( GETHIGHVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXEARTHAT_BOUNDARY ) ) == 0
|
|||
|
&& GETHIGHVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXWATERAT_BOUNDARY ) ) == 0
|
|||
|
&& GETHIGHVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXFIREAT_BOUNDARY ) ) == 0
|
|||
|
&& GETHIGHVALUE( CHAR_getWorkInt( charaindex, CHAR_WORKFIXWINDAT_BOUNDARY ) ) == 0
|
|||
|
&& boundaryclear ){
|
|||
|
int toNo = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
if( toNo < 10 )//<2F>ҷ<EFBFBD>
|
|||
|
snprintf( szWork, sizeof( szWork ), "Ba|%X|%X|", 0,1 );
|
|||
|
else
|
|||
|
snprintf( szWork, sizeof( szWork ), "Ba|%X|%X|", 0,0 );
|
|||
|
//DebugMainFunction="BATTLE_Battling_273";
|
|||
|
BATTLESTR_ADD( szWork );
|
|||
|
//DebugMainFunction="BATTLE_Battling_274";
|
|||
|
BATTLESTR_ADD( "FF|" );
|
|||
|
//DebugMainFunction="BATTLE_Battling_275";
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _Item_ReLifeAct
|
|||
|
{
|
|||
|
//pEntry
|
|||
|
int k, userindex=-1;
|
|||
|
// if( BattleArray[ battleindex].type != BATTLE_TYPE_P_vs_P){
|
|||
|
for( k=0; k<20; k++) {
|
|||
|
//DebugMainFunction="BATTLE_Battling_276";
|
|||
|
userindex = BATTLE_getBattleDieIndex( battleindex, k);
|
|||
|
//DebugMainFunction="BATTLE_Battling_277";
|
|||
|
if( !CHAR_CHECKINDEX( userindex) ) continue;
|
|||
|
//Change fix CHECK_ITEM_RELIFE<46><45><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD>,<2C><><EFBFBD>ﲻ<EFBFBD><EFB2BB>
|
|||
|
//if( CHAR_getFlg( userindex, CHAR_ISDIE ) == FALSE )
|
|||
|
// continue;
|
|||
|
if( CHAR_getInt( userindex, CHAR_HP) > 0 )
|
|||
|
continue;
|
|||
|
if( CHAR_getInt( userindex, CHAR_WHICHTYPE ) == CHAR_TYPEPLAYER ) {
|
|||
|
//DebugMainFunction="BATTLE_Battling_278";
|
|||
|
CHECK_ITEM_RELIFE( battleindex, userindex);
|
|||
|
//DebugMainFunction="BATTLE_Battling_279";
|
|||
|
}
|
|||
|
#ifdef _LOSE_FINCH_
|
|||
|
else if( CHAR_getInt( userindex, CHAR_WHICHTYPE ) == CHAR_TYPEPET ){
|
|||
|
//DebugMainFunction="BATTLE_Battling_280";
|
|||
|
CHECK_PET_RELIFE( battleindex, userindex);
|
|||
|
//DebugMainFunction="BATTLE_Battling_281";
|
|||
|
}
|
|||
|
#endif
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
//DebugMainFunction="BATTLE_Battling_282";
|
|||
|
BATTLESTR_ADD( szBadStatusString );
|
|||
|
//DebugMainFunction="BATTLE_Battling_283";
|
|||
|
BATTLE_AddProfit( battleindex, aAttackList );//ȡ<>þ<EFBFBD><C3BE><EFBFBD>ֵ
|
|||
|
//DebugMainFunction="BATTLE_Battling_284";
|
|||
|
len = pszBattleTop - szBattleString;
|
|||
|
if( AllSize + len >= sizeof( szAllBattleString ) - 1 ){
|
|||
|
// <20><>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><D7BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ئ<EFBFBD><D8A6>
|
|||
|
}else{
|
|||
|
//DebugMainFunction="BATTLE_Battling_285";
|
|||
|
memcpy( szAllBattleString+AllSize, szBattleString, len );
|
|||
|
//DebugMainFunction="BATTLE_Battling_286";
|
|||
|
szAllBattleString[AllSize+len] = 0;// NULL ë<><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
AllSize += len;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_287";
|
|||
|
if( BATTLE_CountAlive( battleindex, 0 ) == 0 || BATTLE_CountAlive( battleindex, 1 ) == 0 ) {
|
|||
|
break;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_288";
|
|||
|
}
|
|||
|
#ifdef _PETSKILL_LER
|
|||
|
{
|
|||
|
register int i,dieindex;
|
|||
|
for(i=0;i<20;i++){
|
|||
|
dieindex = BATTLE_getBattleDieIndex(battleindex,i);
|
|||
|
if(!CHAR_CHECKINDEX(dieindex)) continue;
|
|||
|
if(CHAR_getFlg(dieindex,CHAR_ISDIE) == FALSE) continue;
|
|||
|
if(CHAR_getInt(dieindex,CHAR_HP) > 0) continue;
|
|||
|
// <20><EFBFBD><D7B6><EFBFBD><EFBFBD><EFBFBD>,<2C><><EFBFBD><EFBFBD>
|
|||
|
if(CHAR_getInt(dieindex,CHAR_BASEBASEIMAGENUMBER) == 101813 ||
|
|||
|
CHAR_getInt(dieindex,CHAR_BASEBASEIMAGENUMBER) == 101814){
|
|||
|
//DebugMainFunction="BATTLE_Battling_289";
|
|||
|
BATTLE_LerChange(battleindex,dieindex,i);
|
|||
|
//DebugMainFunction="BATTLE_Battling_290";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
szBattleString[0] = 0;
|
|||
|
pszBattleTop = szBattleString;
|
|||
|
pszBattleLast = szBattleString+arraysizeof(szBattleString);
|
|||
|
if( pBattle->field_att != BATTLE_ATTR_NONE ){
|
|||
|
pBattle->att_count--;
|
|||
|
if( pBattle->att_count <= 0 ){
|
|||
|
pBattle->field_att = BATTLE_ATTR_NONE;
|
|||
|
//snprintf( szBuffer, sizeof(szBuffer),
|
|||
|
// "field<6C>ظ<EFBFBD><D8B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԡ<EFBFBD>"
|
|||
|
//);
|
|||
|
//BATTLE_BroadCast( battleindex, szBuffer, CHAR_COLORYELLOW );
|
|||
|
//DebugMainFunction="BATTLE_Battling_291";
|
|||
|
BATTLESTR_ADD( "BV|15|0|" );
|
|||
|
//DebugMainFunction="BATTLE_Battling_292";
|
|||
|
}
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_293";
|
|||
|
strncat( szAllBattleString, szBattleString, sizeof( szAllBattleString ) );
|
|||
|
//DebugMainFunction="BATTLE_Battling_294";
|
|||
|
for( i = 0; i < entrynum; i ++ ){
|
|||
|
charaindex = EntryList[i].charaindex;
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE ) == BATTLE_CHARMODE_RESCUE )
|
|||
|
continue;
|
|||
|
|
|||
|
if( BATTLE_CommandSend( charaindex, szAllBattleString ) == TRUE ){
|
|||
|
}
|
|||
|
}
|
|||
|
pWatchBattle = pBattle->pNext;
|
|||
|
for( ; pWatchBattle ; pWatchBattle = pWatchBattle->pNext ){
|
|||
|
if( BATTLE_CHECKADDRESS( pWatchBattle ) == FALSE ){
|
|||
|
//print( "err:<3A><>սbattle address<73><73><EFBFBD><EFBFBD>(%p)\n", pWatchBattle );
|
|||
|
break;
|
|||
|
}
|
|||
|
for( i = 0; i < BATTLE_ENTRY_MAX; i ++ ){
|
|||
|
charaindex = pWatchBattle->Side[0].Entry[i].charaindex;
|
|||
|
if( CHAR_CHECKINDEX( charaindex ) == FALSE )continue;
|
|||
|
//DebugMainFunction="BATTLE_Battling_295";
|
|||
|
BATTLE_CommandSend( charaindex, szAllBattleString );
|
|||
|
//DebugMainFunction="BATTLE_Battling_296";
|
|||
|
}
|
|||
|
pWatchBattle->mode = BATTLE_MODE_WATCHAFTER;
|
|||
|
}
|
|||
|
//DebugMainFunction="BATTLE_Battling_297";
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _Item_ReLifeAct
|
|||
|
BOOL CHECK_ITEM_RELIFE( int battleindex, int toindex)
|
|||
|
{
|
|||
|
int i, itemindex;
|
|||
|
CHAR_EquipPlace ep;
|
|||
|
typedef void (*DIERELIFEFUNC)(int,int,int);
|
|||
|
DIERELIFEFUNC Drf;
|
|||
|
|
|||
|
if( CHAR_getInt( toindex, CHAR_HP) > 0 )
|
|||
|
return FALSE;
|
|||
|
|
|||
|
#ifdef _DUMMYDIE
|
|||
|
if( CHAR_getFlg( toindex, CHAR_ISDIE ) == FALSE && CHAR_getFlg( toindex, CHAR_ISDUMMYDIE ) == FALSE )
|
|||
|
#else
|
|||
|
if( CHAR_getFlg( toindex, CHAR_ISDIE ) == FALSE )
|
|||
|
#endif
|
|||
|
return FALSE;
|
|||
|
|
|||
|
for( i = 0 ; i < 5 ; i++ ){
|
|||
|
itemindex = CHAR_getItemIndex( toindex , i );
|
|||
|
if( !ITEM_CHECKINDEX( itemindex))
|
|||
|
continue;
|
|||
|
ep = ITEM_getEquipPlace( toindex, itemindex );
|
|||
|
if( ep == -1 )
|
|||
|
continue;
|
|||
|
Drf=(DIERELIFEFUNC)ITEM_getFunctionPointer(itemindex, ITEM_DIERELIFEFUNC);
|
|||
|
if( Drf ) {
|
|||
|
Drf( toindex, itemindex, i);
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
#ifdef _ALLBLUES_LUA_1_2
|
|||
|
else{
|
|||
|
if(RunItemDieReLifeEvent(toindex, itemindex, i) == TRUE)
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
return FALSE;
|
|||
|
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _LOSE_FINCH_
|
|||
|
BOOL CHECK_PET_RELIFE( int battleindex, int petindex)
|
|||
|
{
|
|||
|
int ReceveEffect=-1;
|
|||
|
int toNo;
|
|||
|
int attackNo=-1;
|
|||
|
int WORK_HP=1;
|
|||
|
int i;
|
|||
|
struct _RePet{
|
|||
|
int petid;
|
|||
|
int Effect;
|
|||
|
int Addhp;
|
|||
|
//Syu Mod
|
|||
|
// }rePet[]={{1,SPR_fukkatu3,100},{-1,0,0}};
|
|||
|
}rePet[]={{-1,0,0}};
|
|||
|
|
|||
|
if( BATTLE_CHECKINDEX( battleindex ) == FALSE ) {
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
if( CHAR_CHECKINDEX( petindex) == FALSE )
|
|||
|
return FALSE;
|
|||
|
|
|||
|
if( CHAR_getFlg( petindex, CHAR_ISDIE) == FALSE ) {
|
|||
|
//print("\n PET_RELIFE:[ %d, CHAR_ISDIE FALSE] return !", petindex);
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
if( CHAR_getWorkInt( petindex, CHAR_WORKSPETRELIFE) != 0 )
|
|||
|
return FALSE;
|
|||
|
for( i=0;i<arraysizeof( rePet); i++){
|
|||
|
if( CHAR_getInt( petindex, CHAR_PETID) == rePet[i].petid ) //<2F><>ȸ
|
|||
|
break;
|
|||
|
}
|
|||
|
if( i == arraysizeof( rePet) )
|
|||
|
return FALSE;
|
|||
|
//ReceveEffect = SPR_fukkatu3;
|
|||
|
ReceveEffect = rePet[i].Effect;//<2F><>ȸ<EFBFBD><C8B8><EFBFBD><EFBFBD> δ<><CEB4>
|
|||
|
|
|||
|
WORK_HP = CHAR_getWorkInt( petindex, CHAR_WORKMAXHP )*(rePet[i].Addhp/100);
|
|||
|
toNo = BATTLE_Index2No( battleindex, petindex );
|
|||
|
attackNo = -1;
|
|||
|
BATTLE_MultiReLife( battleindex, attackNo, toNo, WORK_HP, ReceveEffect );
|
|||
|
CHAR_setWorkInt( petindex, CHAR_WORKSPETRELIFE, 1);
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _OTHER_MAGICSTAUTS
|
|||
|
void BATTLE_MagicStatusSeq( int charaindex )
|
|||
|
{
|
|||
|
int cnt, i, bid, battleindex;
|
|||
|
|
|||
|
battleindex = CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEINDEX );
|
|||
|
bid = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
|
|||
|
for( i = 1; i < MAXSTATUSTYPE; i++ ){
|
|||
|
if( ( cnt = CHAR_getWorkInt( charaindex, MagicTbl[i] )) <= 0 )continue;
|
|||
|
CHAR_setWorkInt( charaindex, MagicTbl[i], --cnt );
|
|||
|
if( cnt <= 0 ){
|
|||
|
//char szBuffer[256];
|
|||
|
CHAR_setWorkInt( charaindex, MagicTbl[i], 0);
|
|||
|
// sprintf( szBuffer, "Bm|%X|%X|", bid, 0 );
|
|||
|
// BATTLESTR_ADD( szBuffer );
|
|||
|
continue;
|
|||
|
}
|
|||
|
}
|
|||
|
return;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
int Battle_getTotalBattleNum()
|
|||
|
{
|
|||
|
return Total_BattleNum;
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _TYPE_TOXICATION
|
|||
|
void CHAR_ComToxicationHp( int charaindex)
|
|||
|
{
|
|||
|
int hp,dhp, nums;
|
|||
|
if( CHAR_getWorkInt( charaindex, CHAR_WORKBATTLEMODE) != BATTLE_CHARMODE_NONE ) return;
|
|||
|
dhp = (CHAR_getWorkInt( charaindex, CHAR_WORKMAXHP)/100)+1;
|
|||
|
if( dhp < 1 ) dhp = 1;
|
|||
|
hp = CHAR_getInt( charaindex, CHAR_HP);
|
|||
|
hp -= dhp;
|
|||
|
nums = CHAR_getWorkInt( charaindex, CHAR_WORKTOXICATION) + 1;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKTOXICATION, nums);
|
|||
|
if( hp <= 0 ){
|
|||
|
int floor, x, y;
|
|||
|
char buf[256];
|
|||
|
int fd = getfdFromCharaIndex(charaindex);
|
|||
|
sprintf( buf, "<EFBFBD><EFBFBD><EFBFBD>ж<EFBFBD><EFBFBD><EFBFBD><EFBFBD>أ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Իؼ<EFBFBD>¼<EFBFBD>㡣");
|
|||
|
CHAR_talkToCli( charaindex, -1, buf, CHAR_COLORYELLOW);
|
|||
|
CHAR_DischargePartyNoMsg( charaindex);//<2F><>ɢ<EFBFBD>Ŷ<EFBFBD>
|
|||
|
if( CHAR_getElderPosition(
|
|||
|
CHAR_getInt( charaindex, CHAR_LASTTALKELDER), &floor, &x, &y ) != TRUE ){
|
|||
|
CHAR_warpToSpecificPoint( charaindex, 1006, 15, 15);
|
|||
|
}else {
|
|||
|
CHAR_warpToSpecificPoint( charaindex, floor, x, y);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
setToxication( fd, 0);
|
|||
|
hp = 1;
|
|||
|
}else if( nums%10 == 0 || hp <= (dhp+1)*5 ){
|
|||
|
char buf[256];
|
|||
|
sprintf( buf, "<EFBFBD><EFBFBD><EFBFBD>ж<EFBFBD><EFBFBD><EFBFBD>HPʣ<EFBFBD><EFBFBD>%d<><64>", hp);
|
|||
|
CHAR_talkToCli( charaindex, -1, buf, CHAR_COLORYELLOW);
|
|||
|
}
|
|||
|
CHAR_setInt( charaindex, CHAR_HP, hp);
|
|||
|
CHAR_send_P_StatusString( charaindex, CHAR_P_STRING_HP);
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
void BATTLE_ProfessionStatus_init( int battleindex, int charaindex )
|
|||
|
{
|
|||
|
int profession_class = CHAR_getInt( charaindex, PROFESSION_CLASS);
|
|||
|
|
|||
|
if( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER ) return;
|
|||
|
if( profession_class <= PROFESSION_CLASS_NONE ) return;
|
|||
|
|
|||
|
// <20><>ʼ<EFBFBD><CABC>
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_WEAPON, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKMOD_WEAPON, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_P_DUCK, 0);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKMOD_P_DUCK, 0 );
|
|||
|
|
|||
|
{
|
|||
|
int i=0, Pskillid=-1, skillid=-1;
|
|||
|
int value=0, old_value=0, WeaponType=-1;
|
|||
|
int rate=0;
|
|||
|
char *skill_name, *pszOption, *pszP;
|
|||
|
CHAR_HaveSkill* hskill;
|
|||
|
|
|||
|
for( i=0; i<CHAR_SKILLMAXHAVE; i++ ){
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>ID
|
|||
|
skillid = CHAR_getCharSkill( charaindex, i);
|
|||
|
Pskillid = PROFESSION_SKILL_getskillArray( skillid);
|
|||
|
if( Pskillid <= 0 ) continue;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
skill_name = PROFESSION_SKILL_getChar( Pskillid, PROFESSION_SKILL_FUNCNAME);
|
|||
|
if( skill_name == "\0" ) continue;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( (strcmp( skill_name , "PROFESSION_FIRE_PRACTICE" )) == 0 ){
|
|||
|
int old_practice = CHAR_getInt( charaindex, PROFESSION_FIRE_P );
|
|||
|
int add_practice = 0;
|
|||
|
int skill_level = 0;
|
|||
|
|
|||
|
// <20><><EFBFBD>ܵȼ<DCB5>
|
|||
|
hskill = CHAR_getCharHaveSkill( charaindex, i );
|
|||
|
skill_level = SKILL_getInt( &hskill->skill, SKILL_LEVEL);
|
|||
|
skill_level = PROFESSION_CHANGE_SKILL_LEVEL_M( skill_level );
|
|||
|
|
|||
|
if( skill_level >= 6 ) add_practice = (skill_level-5) * 3 + 10;
|
|||
|
else add_practice = skill_level * 2;
|
|||
|
if( add_practice > 25 ) add_practice = 25;
|
|||
|
|
|||
|
add_practice += old_practice;
|
|||
|
// <20><>Ϊold_practice=0<><30><EFBFBD><EFBFBD>add_practiceΪ2~25
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_F_PROFICIENCY, add_practice );
|
|||
|
|
|||
|
}else
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( (strcmp( skill_name , "PROFESSION_ICE_PRACTICE" )) == 0 ){
|
|||
|
int old_practice = CHAR_getInt( charaindex, PROFESSION_ICE_P );
|
|||
|
int add_practice = 0;
|
|||
|
int skill_level = 0;
|
|||
|
|
|||
|
// <20><><EFBFBD>ܵȼ<DCB5>
|
|||
|
hskill = CHAR_getCharHaveSkill( charaindex, i );
|
|||
|
skill_level = SKILL_getInt( &hskill->skill, SKILL_LEVEL);
|
|||
|
skill_level = PROFESSION_CHANGE_SKILL_LEVEL_M( skill_level );
|
|||
|
|
|||
|
if( skill_level >= 6 ) add_practice = (skill_level-5) * 3 + 10;
|
|||
|
else add_practice = skill_level * 2;
|
|||
|
if( add_practice > 25 ) add_practice = 25;
|
|||
|
|
|||
|
add_practice += old_practice;
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_I_PROFICIENCY, add_practice );
|
|||
|
|
|||
|
}else
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( (strcmp( skill_name , "PROFESSION_THUNDER_PRACTICE" )) == 0 ){
|
|||
|
int old_practice = CHAR_getInt( charaindex, PROFESSION_THUNDER_P );
|
|||
|
int add_practice = 0;
|
|||
|
int skill_level = 0;
|
|||
|
|
|||
|
// <20><><EFBFBD>ܵȼ<DCB5>
|
|||
|
hskill = CHAR_getCharHaveSkill( charaindex, i );
|
|||
|
skill_level = SKILL_getInt( &hskill->skill, SKILL_LEVEL);
|
|||
|
skill_level = PROFESSION_CHANGE_SKILL_LEVEL_M( skill_level );
|
|||
|
|
|||
|
if( skill_level >= 6 ) add_practice = (skill_level-5) * 3 + 10;
|
|||
|
else add_practice = skill_level * 2;
|
|||
|
if( add_practice > 25 ) add_practice = 25;
|
|||
|
|
|||
|
add_practice += old_practice;
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_T_PROFICIENCY, add_practice );
|
|||
|
|
|||
|
}else
|
|||
|
// <20>ر<EFBFBD>
|
|||
|
if( (strcmp( skill_name , "PROFESSION_AVOID" )) == 0 ){
|
|||
|
int skill_level = 0;
|
|||
|
|
|||
|
if( profession_class != PROFESSION_SKILL_getInt( Pskillid, PROFESSION_SKILL_PROFESSION_CLASS) ) return;
|
|||
|
|
|||
|
// <20><><EFBFBD>ܵȼ<DCB5>
|
|||
|
hskill = CHAR_getCharHaveSkill( charaindex, i );
|
|||
|
skill_level = SKILL_getInt( &hskill->skill, SKILL_LEVEL);
|
|||
|
skill_level = PROFESSION_CHANGE_SKILL_LEVEL_A( skill_level );
|
|||
|
|
|||
|
if( skill_level <=5 )
|
|||
|
value = skill_level * 2;
|
|||
|
else
|
|||
|
value = (skill_level-5) * 3;
|
|||
|
if( value > 25 ) value = 25;
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_P_DUCK, 1);
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKMOD_P_DUCK, value );
|
|||
|
|
|||
|
}else
|
|||
|
// <20><><EFBFBD><EFBFBD>
|
|||
|
if( (strcmp( skill_name , "PROFESSION_DEFLECT" )) == 0 ){
|
|||
|
int skill_level = 0;
|
|||
|
int old_value = 0, add_value = 0;
|
|||
|
|
|||
|
if( profession_class != PROFESSION_SKILL_getInt( Pskillid, PROFESSION_SKILL_PROFESSION_CLASS) ) return;
|
|||
|
|
|||
|
// <20><><EFBFBD>ܵȼ<DCB5>
|
|||
|
hskill = CHAR_getCharHaveSkill( charaindex, i );
|
|||
|
skill_level = SKILL_getInt( &hskill->skill, SKILL_LEVEL);
|
|||
|
skill_level = PROFESSION_CHANGE_SKILL_LEVEL_A( skill_level );
|
|||
|
|
|||
|
old_value = CHAR_getWorkInt( charaindex, CHAR_WORKFIXARRANGE );
|
|||
|
add_value = old_value + skill_level + 10;
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKFIXARRANGE, add_value );
|
|||
|
CHAR_complianceParameter( charaindex );
|
|||
|
|
|||
|
}else
|
|||
|
// <20><><EFBFBD><EFBFBD>ר<EFBFBD><D7A8>
|
|||
|
if( (strcmp( skill_name , "PROFESSION_WEAPON_FOCUS" )) == 0 ){
|
|||
|
int skill_level = 0;
|
|||
|
|
|||
|
rate = 0;
|
|||
|
if( profession_class != PROFESSION_SKILL_getInt( Pskillid, PROFESSION_SKILL_PROFESSION_CLASS) ) continue;
|
|||
|
|
|||
|
// <20><><EFBFBD>ܵȼ<DCB5>
|
|||
|
hskill = CHAR_getCharHaveSkill( charaindex, i );
|
|||
|
skill_level = SKILL_getInt( &hskill->skill, SKILL_LEVEL);
|
|||
|
skill_level = PROFESSION_CHANGE_SKILL_LEVEL_A( skill_level );
|
|||
|
|
|||
|
// <20><><EFBFBD>ܲ<EFBFBD><DCB2><EFBFBD>
|
|||
|
pszOption = PROFESSION_SKILL_getChar( Pskillid, PROFESSION_SKILL_OPTION);
|
|||
|
if( pszOption == "\0" ) continue;
|
|||
|
|
|||
|
// װ<><D7B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
WeaponType = BATTLE_GetWepon( charaindex );
|
|||
|
|
|||
|
switch( WeaponType ){
|
|||
|
case ITEM_AXE:
|
|||
|
if( (pszP=strstr( pszOption, "<EFBFBD><EFBFBD>" ))!=NULL) rate = 1; break;
|
|||
|
case ITEM_CLUB:
|
|||
|
if( (pszP=strstr( pszOption, "<EFBFBD><EFBFBD>" ))!=NULL) rate = 1; break;
|
|||
|
case ITEM_SPEAR:
|
|||
|
if( (pszP=strstr( pszOption, "ǹ" ))!=NULL) rate = 1; break;
|
|||
|
case ITEM_BOW:
|
|||
|
if( (pszP=strstr( pszOption, "<EFBFBD><EFBFBD>" ))!=NULL) rate = 1; break;
|
|||
|
case ITEM_BOOMERANG: // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
if( (pszP=strstr( pszOption, "<EFBFBD><EFBFBD>" ))!=NULL) rate = 1; break;
|
|||
|
case ITEM_BOUNDTHROW: // Ͷ<><CDB6><EFBFBD><EFBFBD>ͷ
|
|||
|
if( (pszP=strstr( pszOption, "Ͷ" ))!=NULL) rate = 1; break;
|
|||
|
case ITEM_BREAKTHROW: // Ͷ<><CDB6>ʯ
|
|||
|
if( (pszP=strstr( pszOption, "ʯ" ))!=NULL) rate = 1; break;
|
|||
|
default: rate = 0; break;
|
|||
|
}
|
|||
|
|
|||
|
if( rate == 1 ){
|
|||
|
old_value = CHAR_getWorkInt( charaindex, CHAR_MYSKILLSTRPOWER);
|
|||
|
|
|||
|
if( skill_level <=5 )
|
|||
|
value = skill_level * 2 + old_value;
|
|||
|
else
|
|||
|
value = (skill_level-5) * 3 + 10 + old_value;
|
|||
|
|
|||
|
if( value > 25 ) value = 25;
|
|||
|
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORK_WEAPON, 1 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKMOD_WEAPON, value );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void BATTLE_ProfessionStatusSeq( int battleindex, int charaindex )
|
|||
|
{
|
|||
|
int profession_class=0, i=0, j=0, Pskillid=-1, skillid=-1;
|
|||
|
int skill_level=0, value=0, old_value=0;
|
|||
|
int bid=-1, hp=0, flag=0;
|
|||
|
char *skill_name, szcommand[256];
|
|||
|
CHAR_HaveSkill* hskill;
|
|||
|
|
|||
|
|
|||
|
int status_table[9]={ 2, //<2F><><EFBFBD><EFBFBD>
|
|||
|
3, //˯<><CBAF>
|
|||
|
4, //ʯ<><CAAF>
|
|||
|
12, //<2F><>ѣ
|
|||
|
13, //<2F><><EFBFBD><EFBFBD>
|
|||
|
14, //<2F><><EFBFBD><EFBFBD>
|
|||
|
15, //<2F><><EFBFBD><EFBFBD>
|
|||
|
17, //<2F><><EFBFBD><EFBFBD>
|
|||
|
23, }; //<2F><EFBFBD><D7B8><EFBFBD>
|
|||
|
|
|||
|
#ifdef _PETSKILL_DAMAGETOHP
|
|||
|
/* {
|
|||
|
char msg[32]={0};
|
|||
|
int pet,pindex;
|
|||
|
pet = CHAR_getInt( charaindex, CHAR_DEFAULTPET );
|
|||
|
if( pet >= 0 ){
|
|||
|
sprintf( msg, "o%d", pet );
|
|||
|
//if(CHAR_getInt( petindex, CHAR_PETID) == "<22><>" //<2F><><EFBFBD><EFBFBD>ID
|
|||
|
// && CHAR_getInt( petindex, CHAR_HP) )
|
|||
|
CHAR_sendStatusString( charaindex, msg );
|
|||
|
pindex = CHAR_getCharPet( charaindex, pet );
|
|||
|
print("\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:%s",CHAR_getChar( pindex, CHAR_NAME));
|
|||
|
}
|
|||
|
else
|
|||
|
print("\<EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
|
|||
|
} */
|
|||
|
#endif
|
|||
|
|
|||
|
if ( CHAR_getInt( charaindex, CHAR_WHICHTYPE ) != CHAR_TYPEPLAYER ) return;
|
|||
|
|
|||
|
profession_class=CHAR_getInt( charaindex, PROFESSION_CLASS);
|
|||
|
if( profession_class <= PROFESSION_CLASS_NONE ) return;
|
|||
|
|
|||
|
for( i=0; i<CHAR_SKILLMAXHAVE; i++ ){
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>ID
|
|||
|
skillid = CHAR_getCharSkill( charaindex, i);
|
|||
|
Pskillid = PROFESSION_SKILL_getskillArray( skillid);
|
|||
|
if( Pskillid <= 0 ) return;
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
skill_name = PROFESSION_SKILL_getChar( Pskillid, PROFESSION_SKILL_FUNCNAME);
|
|||
|
if( skill_name == "\0" ) return;
|
|||
|
|
|||
|
// ״̬<D7B4>ظ<EFBFBD>
|
|||
|
if( (strcmp( skill_name , "PROFESSION_REBACK" )) == 0 ){
|
|||
|
|
|||
|
if( profession_class != PROFESSION_SKILL_getInt( Pskillid, PROFESSION_SKILL_PROFESSION_CLASS) ) return;
|
|||
|
|
|||
|
// <20>ж<EFBFBD><D0B6>쳣״̬
|
|||
|
for( j=0; j<9; j++ ){
|
|||
|
if( (CHAR_getWorkInt( charaindex, StatusTbl[ status_table[j] ] )) > 0 ){
|
|||
|
flag=1;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if( flag > 0 ){
|
|||
|
// <20><><EFBFBD>ܵȼ<DCB5>
|
|||
|
hskill = CHAR_getCharHaveSkill( charaindex, i );
|
|||
|
skill_level = SKILL_getInt( &hskill->skill, SKILL_LEVEL);
|
|||
|
skill_level = PROFESSION_CHANGE_SKILL_LEVEL_M( skill_level );
|
|||
|
|
|||
|
value = skill_level * 2;
|
|||
|
if( value > 20 ) value = 20;
|
|||
|
|
|||
|
old_value = CHAR_getWorkInt( charaindex, CHAR_WORKMAXHP);
|
|||
|
|
|||
|
value = old_value * value / 100 ;
|
|||
|
|
|||
|
hp = CHAR_getInt( charaindex, CHAR_HP);
|
|||
|
|
|||
|
if( value + hp > old_value )
|
|||
|
value = old_value - hp;
|
|||
|
|
|||
|
if( value < 0 ) value = 0;
|
|||
|
|
|||
|
CHAR_setInt( charaindex, CHAR_HP, value + hp );
|
|||
|
|
|||
|
bid = BATTLE_Index2No( battleindex, charaindex );
|
|||
|
sprintf( szcommand, "BD|r%X|0|1|%X|", bid, value );
|
|||
|
BATTLESTR_ADD( szcommand );
|
|||
|
|
|||
|
PROFESSION_SKILL_LVEVEL_UP( charaindex, "PROFESSION_REBACK" );
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>
|
|||
|
if( (strcmp( skill_name , "PROFESSION_TRAP" )) == 0 ){
|
|||
|
int count=0;
|
|||
|
|
|||
|
count = CHAR_getWorkInt( charaindex, CHAR_WORKTRAP);
|
|||
|
if( count > 0 ){
|
|||
|
count--;
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKTRAP, count );
|
|||
|
}else if( count == 0 ){
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKTRAP, 0 );
|
|||
|
CHAR_setWorkInt( charaindex, CHAR_WORKMODTRAP, 0 );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _FM_NPC_LOOK_WAR
|
|||
|
int SearchFmWarRandIndex(int charaindex,int fmwarfloor)
|
|||
|
{
|
|||
|
int i=1,j,fmwarindex;
|
|||
|
int bindex[100];
|
|||
|
bindex[0]=-1;
|
|||
|
for( j = 0; j < BATTLE_battlenum; j ++ ){
|
|||
|
if( BattleArray[j].use == FALSE ){
|
|||
|
continue;
|
|||
|
}else{
|
|||
|
if(BattleArray[j].floor!=fmwarfloor){
|
|||
|
continue;
|
|||
|
}else{
|
|||
|
bindex[i-1]=j;
|
|||
|
i++;
|
|||
|
continue;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if(bindex[0]>-1){
|
|||
|
fmwarindex = bindex[RAND(1,i)-1];
|
|||
|
if(BATTLE_CHECKINDEX(fmwarindex)==FALSE)
|
|||
|
return -1;
|
|||
|
else{
|
|||
|
if(BattleArray[fmwarindex].floor!=fmwarfloor)
|
|||
|
return -1;
|
|||
|
if(BATTLE_CreateForWatcher( charaindex, fmwarindex )==0){
|
|||
|
int fd;
|
|||
|
if( ( fd = getfdFromCharaIndex(charaindex) ) != -1 ){
|
|||
|
lssproto_EN_send( fd, BattleArray[fmwarindex].type, BattleArray[fmwarindex].field_no );
|
|||
|
}
|
|||
|
char szBuffer[256];
|
|||
|
sprintf( szBuffer, "BP|%X|%X|%X",
|
|||
|
20, BP_FLG_JOIN, CHAR_getInt(charaindex, CHAR_MP ) );
|
|||
|
BATTLE_CommandSend( charaindex, szBuffer );
|
|||
|
return 0;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return -1;
|
|||
|
}
|
|||
|
|
|||
|
char* SearchFmWar(int charaindex,int fmwarselect)
|
|||
|
{
|
|||
|
int fmlistpage = CHAR_getWorkInt(charaindex,CHAR_WORKLISTPAGE);
|
|||
|
int fmwarfloor = -1;
|
|||
|
switch(fmwarselect){
|
|||
|
case 1:
|
|||
|
fmwarfloor=1042;
|
|||
|
break;
|
|||
|
case 2:
|
|||
|
fmwarfloor=2032;
|
|||
|
break;
|
|||
|
case 3:
|
|||
|
fmwarfloor=3032;
|
|||
|
break;
|
|||
|
case 4:
|
|||
|
fmwarfloor=4032;
|
|||
|
break;
|
|||
|
case 5:
|
|||
|
fmwarfloor=20000;
|
|||
|
break;
|
|||
|
case 6:
|
|||
|
fmwarfloor=51000;
|
|||
|
break;
|
|||
|
default:
|
|||
|
break;
|
|||
|
}
|
|||
|
if(fmlistpage>0){
|
|||
|
if(fmwarfloor == 1042 && fmlistpage*6+1-6<=afmwarnum){
|
|||
|
int i=fmlistpage*6+1-6+1;
|
|||
|
char fmwarbuff[1024];
|
|||
|
sprintf(fmwarbuff,"2\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA>ս<EFBFBD>Ķ<EFBFBD><C4B6>项\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֣ӡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
char name1[64],name2[64],newname1[64],fmwarindexbuf[32];
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
int fmwarindex = -1;
|
|||
|
for(;i<=fmlistpage*6+1;i++){
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
if(getStringFromIndexWithDelim( afmwar, ",", i, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
break;
|
|||
|
if(strlen(fmwarindexbuf)<1)
|
|||
|
break;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
strcpy(name1,BattleArray[fmwarindex].leadername);
|
|||
|
strcpy(name2,BattleArray[fmwarindex].rivalname);
|
|||
|
int namelen1 = strlen(name1);
|
|||
|
int j;
|
|||
|
for(j=0;j<16-namelen1;j++){
|
|||
|
if(j==0)
|
|||
|
strcpy(newname1," ");
|
|||
|
else
|
|||
|
strcat(newname1," ");
|
|||
|
}
|
|||
|
if(strlen(newname1)<1)
|
|||
|
sprintf(fmwarbuff,"%s\n%s <20>֣<EFBFBD> %s",fmwarbuff,name1,name2);
|
|||
|
else
|
|||
|
sprintf(fmwarbuff,"%s\n%s%s <20>֣<EFBFBD> %s",fmwarbuff,newname1,name1,name2);
|
|||
|
}
|
|||
|
return fmwarbuff;
|
|||
|
}else if(fmwarfloor == 2032 && fmlistpage*6+1-6<=bfmwarnum){
|
|||
|
int i=fmlistpage*6+1-6+1;
|
|||
|
char fmwarbuff[1024];
|
|||
|
sprintf(fmwarbuff,"2\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA>ս<EFBFBD>Ķ<EFBFBD><C4B6>项\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֣ӡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
char name1[64],name2[64],newname1[64],fmwarindexbuf[32];
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
int fmwarindex = -1;
|
|||
|
for(;i<=fmlistpage*6+1;i++){
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
if(getStringFromIndexWithDelim( bfmwar, ",", i, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
break;
|
|||
|
if(strlen(fmwarindexbuf)<1)
|
|||
|
break;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
strcpy(name1,BattleArray[fmwarindex].leadername);
|
|||
|
strcpy(name2,BattleArray[fmwarindex].rivalname);
|
|||
|
int namelen1 = strlen(name1);
|
|||
|
int j;
|
|||
|
for(j=0;j<16-namelen1;j++){
|
|||
|
if(j==0)
|
|||
|
strcpy(newname1," ");
|
|||
|
else
|
|||
|
strcat(newname1," ");
|
|||
|
}
|
|||
|
if(strlen(newname1)<1)
|
|||
|
sprintf(fmwarbuff,"%s\n%s <20>֣<EFBFBD> %s",fmwarbuff,name1,name2);
|
|||
|
else
|
|||
|
sprintf(fmwarbuff,"%s\n%s%s <20>֣<EFBFBD> %s",fmwarbuff,newname1,name1,name2);
|
|||
|
}
|
|||
|
return fmwarbuff;
|
|||
|
}else if(fmwarfloor == 3032 && fmlistpage*6+1-6<=cfmwarnum){
|
|||
|
int i=fmlistpage*6+1-6+1;
|
|||
|
char fmwarbuff[1024];
|
|||
|
sprintf(fmwarbuff,"2\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA>ս<EFBFBD>Ķ<EFBFBD><C4B6>项\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֣ӡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
char name1[64],name2[64],newname1[64],fmwarindexbuf[32];
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
int fmwarindex = -1;
|
|||
|
for(;i<=fmlistpage*6+1;i++){
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
if(getStringFromIndexWithDelim( cfmwar, ",", i, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
break;
|
|||
|
if(strlen(fmwarindexbuf)<1)
|
|||
|
break;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
strcpy(name1,BattleArray[fmwarindex].leadername);
|
|||
|
strcpy(name2,BattleArray[fmwarindex].rivalname);
|
|||
|
int namelen1 = strlen(name1);
|
|||
|
int j;
|
|||
|
for(j=0;j<16-namelen1;j++){
|
|||
|
if(j==0)
|
|||
|
strcpy(newname1," ");
|
|||
|
else
|
|||
|
strcat(newname1," ");
|
|||
|
}
|
|||
|
if(strlen(newname1)<1)
|
|||
|
sprintf(fmwarbuff,"%s\n%s <20>֣<EFBFBD> %s",fmwarbuff,name1,name2);
|
|||
|
else
|
|||
|
sprintf(fmwarbuff,"%s\n%s%s <20>֣<EFBFBD> %s",fmwarbuff,newname1,name1,name2);
|
|||
|
}
|
|||
|
return fmwarbuff;
|
|||
|
}else if(fmwarfloor == 4032 && fmlistpage*6+1-6<=dfmwarnum){
|
|||
|
int i=fmlistpage*6+1-6+1;
|
|||
|
char fmwarbuff[1024];
|
|||
|
sprintf(fmwarbuff,"2\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA>ս<EFBFBD>Ķ<EFBFBD><C4B6>项\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֣ӡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
char name1[64],name2[64],newname1[64],fmwarindexbuf[32];
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
int fmwarindex = -1;
|
|||
|
for(;i<=fmlistpage*6+1;i++){
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
if(getStringFromIndexWithDelim( dfmwar, ",", i, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
break;
|
|||
|
if(strlen(fmwarindexbuf)<1)
|
|||
|
break;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
strcpy(name1,BattleArray[fmwarindex].leadername);
|
|||
|
strcpy(name2,BattleArray[fmwarindex].rivalname);
|
|||
|
int namelen1 = strlen(name1);
|
|||
|
int j;
|
|||
|
for(j=0;j<16-namelen1;j++){
|
|||
|
if(j==0)
|
|||
|
strcpy(newname1," ");
|
|||
|
else
|
|||
|
strcat(newname1," ");
|
|||
|
}
|
|||
|
if(strlen(newname1)<1)
|
|||
|
sprintf(fmwarbuff,"%s\n%s <20>֣<EFBFBD> %s",fmwarbuff,name1,name2);
|
|||
|
else
|
|||
|
sprintf(fmwarbuff,"%s\n%s%s <20>֣<EFBFBD> %s",fmwarbuff,newname1,name1,name2);
|
|||
|
}
|
|||
|
return fmwarbuff;
|
|||
|
}else if(fmwarfloor == 20000 && fmlistpage*6+1-6<=efmwarnum){
|
|||
|
int i=fmlistpage*6+1-6+1;
|
|||
|
char fmwarbuff[1024];
|
|||
|
sprintf(fmwarbuff,"2\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA>ս<EFBFBD>Ķ<EFBFBD><C4B6>项\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֣ӡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
char name1[64],name2[64],newname1[64],fmwarindexbuf[32];
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
int fmwarindex = -1;
|
|||
|
for(;i<=fmlistpage*6+1;i++){
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
if(getStringFromIndexWithDelim( efmwar, ",", i, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
break;
|
|||
|
if(strlen(fmwarindexbuf)<1)
|
|||
|
break;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
strcpy(name1,BattleArray[fmwarindex].leadername);
|
|||
|
strcpy(name2,BattleArray[fmwarindex].rivalname);
|
|||
|
int namelen1 = strlen(name1);
|
|||
|
int j;
|
|||
|
for(j=0;j<16-namelen1;j++){
|
|||
|
if(j==0)
|
|||
|
strcpy(newname1," ");
|
|||
|
else
|
|||
|
strcat(newname1," ");
|
|||
|
}
|
|||
|
if(strlen(newname1)<1)
|
|||
|
sprintf(fmwarbuff,"%s\n%s <20>֣<EFBFBD> %s",fmwarbuff,name1,name2);
|
|||
|
else
|
|||
|
sprintf(fmwarbuff,"%s\n%s%s <20>֣<EFBFBD> %s",fmwarbuff,newname1,name1,name2);
|
|||
|
}
|
|||
|
return fmwarbuff;
|
|||
|
}else if(fmwarfloor == 51000 && fmlistpage*6+1-6<=ffmwarnum){
|
|||
|
int i=fmlistpage*6+1-6+1;
|
|||
|
char fmwarbuff[1024];
|
|||
|
sprintf(fmwarbuff,"2\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA>ս<EFBFBD>Ķ<EFBFBD><C4B6>项\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>֣ӡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|||
|
char name1[64],name2[64],newname1[64],fmwarindexbuf[32];
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
int fmwarindex = -1;
|
|||
|
for(;i<=fmlistpage*6+1;i++){
|
|||
|
memset(newname1, 0, sizeof(newname1));
|
|||
|
if(getStringFromIndexWithDelim( ffmwar, ",", i, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
break;
|
|||
|
if(strlen(fmwarindexbuf)<1)
|
|||
|
break;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
strcpy(name1,BattleArray[fmwarindex].leadername);
|
|||
|
strcpy(name2,BattleArray[fmwarindex].rivalname);
|
|||
|
int namelen1 = strlen(name1);
|
|||
|
int j;
|
|||
|
for(j=0;j<16-namelen1;j++){
|
|||
|
if(j==0)
|
|||
|
strcpy(newname1," ");
|
|||
|
else
|
|||
|
strcat(newname1," ");
|
|||
|
}
|
|||
|
if(strlen(newname1)<1)
|
|||
|
sprintf(fmwarbuff,"%s\n%s <20>֣<EFBFBD> %s",fmwarbuff,name1,name2);
|
|||
|
else
|
|||
|
sprintf(fmwarbuff,"%s\n%s%s <20>֣<EFBFBD> %s",fmwarbuff,newname1,name1,name2);
|
|||
|
}
|
|||
|
return fmwarbuff;
|
|||
|
}
|
|||
|
}
|
|||
|
return "err";
|
|||
|
}
|
|||
|
|
|||
|
int LookFmWarIndex(int charaindex,int fmwarselect)
|
|||
|
{
|
|||
|
int listselect = CHAR_getWorkInt(charaindex,CHAR_WORKLISTSELECT);
|
|||
|
if(listselect<1 || listselect>6)
|
|||
|
return -1;
|
|||
|
int fmwarindex = -1;
|
|||
|
char fmwarindexbuf[64];
|
|||
|
if(listselect == 1){
|
|||
|
if(getStringFromIndexWithDelim( afmwar, ",", CHAR_getWorkInt(charaindex,CHAR_WORKLISTPAGE)*6+1-6+fmwarselect, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
return -1;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
}else if(listselect == 2){
|
|||
|
if(getStringFromIndexWithDelim( bfmwar, ",", CHAR_getWorkInt(charaindex,CHAR_WORKLISTPAGE)*6+1-6+fmwarselect, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
return -1;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
}else if(listselect == 3){
|
|||
|
if(getStringFromIndexWithDelim( cfmwar, ",", CHAR_getWorkInt(charaindex,CHAR_WORKLISTPAGE)*6+1-6+fmwarselect, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
return -1;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
}else if(listselect == 4){
|
|||
|
if(getStringFromIndexWithDelim( dfmwar, ",", CHAR_getWorkInt(charaindex,CHAR_WORKLISTPAGE)*6+1-6+fmwarselect, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
return -1;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
}else if(listselect == 5){
|
|||
|
if(getStringFromIndexWithDelim( efmwar, ",", CHAR_getWorkInt(charaindex,CHAR_WORKLISTPAGE)*6+1-6+fmwarselect, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
return -1;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
}else if(listselect == 6){
|
|||
|
if(getStringFromIndexWithDelim( ffmwar, ",", CHAR_getWorkInt(charaindex,CHAR_WORKLISTPAGE)*6+1-6+fmwarselect, fmwarindexbuf, sizeof(fmwarindexbuf))==FALSE)
|
|||
|
return -1;
|
|||
|
fmwarindex = atoi(fmwarindexbuf);
|
|||
|
}
|
|||
|
|
|||
|
if(BATTLE_CHECKINDEX(fmwarindex)==FALSE)
|
|||
|
return -1;
|
|||
|
if(BATTLE_CreateForWatcher( charaindex, fmwarindex )==0){
|
|||
|
int fd;
|
|||
|
if( ( fd = getfdFromCharaIndex(charaindex) ) != -1 ){
|
|||
|
lssproto_EN_send( fd, BattleArray[fmwarindex].type, BattleArray[fmwarindex].field_no );
|
|||
|
}
|
|||
|
char szBuffer[256];
|
|||
|
sprintf( szBuffer, "BP|%X|%X|%X",
|
|||
|
20, BP_FLG_JOIN, CHAR_getInt(charaindex, CHAR_MP ) );
|
|||
|
BATTLE_CommandSend( charaindex, szBuffer );
|
|||
|
return 0;
|
|||
|
}
|
|||
|
return -1;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _ALLBLUES_LUA_1_4
|
|||
|
INLINE BOOL BATTLE_setLUAFunction( int battleindex, int functype, lua_State *L, const char *luafunctable)
|
|||
|
{
|
|||
|
if( !BATTLE_CHECKINDEX(battleindex) )return FALSE;
|
|||
|
|
|||
|
if( functype < 0 || functype >= BATTLE_FUNCTABLENUM )return FALSE;
|
|||
|
|
|||
|
BattleArray[battleindex].lua[functype] = L;
|
|||
|
BattleArray[battleindex].luafunctable[functype] = allocateMemory( strlen(luafunctable) );
|
|||
|
memset(BattleArray[battleindex].luafunctable[functype], 0, strlen(luafunctable));
|
|||
|
strcpy(BattleArray[battleindex].luafunctable[functype], luafunctable);
|
|||
|
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
INLINE lua_State *BATTLE_getLUAFunction( int battleindex, int functype)
|
|||
|
{
|
|||
|
|
|||
|
if( !BATTLE_CHECKINDEX(battleindex) )return NULL;
|
|||
|
|
|||
|
if( functype < 0 || functype >= BATTLE_FUNCTABLENUM )
|
|||
|
return NULL;
|
|||
|
|
|||
|
if(BattleArray[battleindex].lua[functype] == NULL){
|
|||
|
return NULL;
|
|||
|
}
|
|||
|
|
|||
|
lua_getglobal( BattleArray[battleindex].lua[functype], BattleArray[battleindex].luafunctable[functype]);
|
|||
|
return BattleArray[battleindex].lua[functype];
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
int BATTLE_getType( int battleindex )
|
|||
|
{
|
|||
|
if(battleindex>=BATTLE_battlenum || battleindex<0 )return -1;
|
|||
|
|
|||
|
return BattleArray[battleindex].type;
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _BATTLE_TIMESPEED
|
|||
|
int BATTLE_getCreateTime( int battleindex )
|
|||
|
{
|
|||
|
if(battleindex>=BATTLE_battlenum || battleindex<0 )return -1;
|
|||
|
|
|||
|
return BattleArray[battleindex].CreateTime;
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
int BATTLE_getBattleFloor( int battleindex )
|
|||
|
{
|
|||
|
if(battleindex>=BATTLE_battlenum || battleindex<0 )return -1;
|
|||
|
|
|||
|
return BattleArray[battleindex].BattleFloor;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
void Enemy_setStayLoop(int charaindex)
|
|||
|
{
|
|||
|
int fd = getfdFromCharaIndex( charaindex );
|
|||
|
setStayEncount(fd);
|
|||
|
{
|
|||
|
Char *ch;
|
|||
|
ch = CHAR_getCharPointer( charaindex);
|
|||
|
if( ch == NULL ) return;
|
|||
|
strcpysafe( ch->charfunctable[CHAR_LOOPFUNCTEMP1].string,
|
|||
|
sizeof( ch->charfunctable[CHAR_LOOPFUNCTEMP1]), "CHAR_BattleStayLoop");//ս<><D5BD>
|
|||
|
CHAR_setInt( charaindex, CHAR_LOOPINTERVAL, getOfflineBattleTime());
|
|||
|
CHAR_constructFunctable( charaindex);
|
|||
|
}
|
|||
|
}
|