├── FKFoxLuaScript ├── FKFoxLuaScript.cpp └── FKFoxLuaScript.vcproj ├── FKSvr2Billing ├── FKSvr2Billing.vcproj ├── Main │ ├── Billing.cpp │ ├── Billing.h │ ├── DBManager.cpp │ ├── DBManager.h │ ├── DBTypes.h │ ├── ODBCInterface.cpp │ ├── ODBCInterface.h │ ├── Player.cpp │ ├── Player.h │ ├── PlayerManager.cpp │ ├── PlayerManager.h │ ├── PlayerPool.cpp │ ├── PlayerPool.h │ ├── ServerManager.cpp │ ├── ServerManager.h │ ├── ServerPlayer.cpp │ ├── ServerPlayer.h │ ├── UserDBManager.cpp │ ├── UserDBManager.h │ ├── WebPlayer.cpp │ └── WebPlayer.h ├── Packets │ ├── BLRetAuthHandler.cpp │ ├── BWConnectHandler.cpp │ ├── BWValidateUserHandler.cpp │ ├── LBAskAuthHandler.cpp │ ├── SSConnectHandler.cpp │ ├── SSScenePlayerCountHandler.cpp │ └── WBRetValidateUserHandler.cpp ├── stdafx.cpp └── stdafx.h ├── FKSvr2Common ├── Assertx.cpp ├── Assertx.h ├── BaseType.h ├── BuffImpactMgr.cpp ├── BuffImpactMgr.h ├── CampDataMgr.cpp ├── CampDataMgr.h ├── Chain.cpp ├── Chain.h ├── Combat │ ├── CampAndStand.cpp │ ├── CampAndStand.h │ ├── DataRecords.cpp │ ├── DataRecords.h │ ├── SpecialObjData.cpp │ ├── TemplateManager.cpp │ └── TemplateManager.h ├── DBSystem │ └── DataBase │ │ ├── DBAbilityList.cpp │ │ ├── DBAbilityList.h │ │ ├── DBCharFullData.cpp │ │ ├── DBCharFullData.h │ │ ├── DBCharList.cpp │ │ ├── DBCharList.h │ │ ├── DBCoolDownInfo.cpp │ │ ├── DBCoolDownInfo.h │ │ ├── DBCreateCharOp.cpp │ │ ├── DBCreateCharOp.h │ │ ├── DBDeleteCharOp.cpp │ │ ├── DBDeleteCharOp.h │ │ ├── DBEquipBaseList.cpp │ │ ├── DBEquipBaseList.h │ │ ├── DBGuildInfo.cpp │ │ ├── DBGuildInfo.h │ │ ├── DBImpactList.cpp │ │ ├── DBImpactList.h │ │ ├── DBInterface.cpp │ │ ├── DBInterface.h │ │ ├── DBItemList.cpp │ │ ├── DBItemList.h │ │ ├── DBItemSerial.cpp │ │ ├── DBItemSerial.h │ │ ├── DBMailInfo.cpp │ │ ├── DBMailInfo.h │ │ ├── DBManager.cpp │ │ ├── DBManager.h │ │ ├── DBPetList.cpp │ │ ├── DBPetList.h │ │ ├── DBPrivateInfo.cpp │ │ ├── DBPrivateInfo.h │ │ ├── DBRelationList.cpp │ │ ├── DBRelationList.h │ │ ├── DBSkillList.cpp │ │ ├── DBSkillList.h │ │ ├── DBTaskList.cpp │ │ ├── DBTaskList.h │ │ ├── DBTitleInfo.cpp │ │ ├── DBTitleInfo.h │ │ ├── DBTypes.h │ │ ├── DBWebShopInfo.cpp │ │ ├── DBWebShopInfo.h │ │ ├── DBXinFaList.cpp │ │ ├── DBXinFaList.h │ │ ├── ODBCBase.cpp │ │ ├── ODBCBase.h │ │ ├── ODBCInterface.cpp │ │ ├── ODBCInterface.h │ │ ├── SqlTemplate.cpp │ │ └── SqlTemplate.h ├── DB_Struct.cpp ├── DB_Struct.h ├── DataBase │ ├── TLBB_DBC.cpp │ └── TLBB_DBC.h ├── DirectlyImpactMgr.cpp ├── DirectlyImpactMgr.h ├── FileDataMgr.cpp ├── FileDataMgr.h ├── GameDefine.h ├── GameDefine2.h ├── GameDefine_Attr.h ├── GameDefine_City.h ├── GameDefine_Guild.h ├── GameDefine_Item.h ├── GameDefine_PlayerShop.h ├── GameDefine_Result.cpp ├── GameDefine_Result.h ├── GameDefine_Scene.h ├── GameStruct.cpp ├── GameStruct.h ├── GameStruct_Camp.h ├── GameStruct_City.h ├── GameStruct_Finger.cpp ├── GameStruct_Finger.h ├── GameStruct_Guild.h ├── GameStruct_Impact.h ├── GameStruct_Item.h ├── GameStruct_MinorPasswd.cpp ├── GameStruct_MinorPasswd.h ├── GameStruct_Pet.cpp ├── GameStruct_Pet.h ├── GameStruct_Relation.cpp ├── GameStruct_Relation.h ├── GameStruct_Scene.h ├── GameStruct_Script.cpp ├── GameStruct_Script.h ├── GameStruct_Skill.h ├── GameStruct_Team.h ├── GameUtil.cpp ├── GameUtil.h ├── KeyDog.h ├── KeyDog.lib ├── Net │ ├── FileAPI.cpp │ ├── FileAPI.h │ ├── Packet.cpp │ ├── Packet.h │ ├── ServerSocket.cpp │ ├── ServerSocket.h │ ├── Socket.cpp │ ├── Socket.h │ ├── SocketAPI.cpp │ ├── SocketAPI.h │ ├── SocketInputStream.cpp │ ├── SocketInputStream.h │ ├── SocketOutputStream.cpp │ └── SocketOutputStream.h ├── OResultDef.h ├── PacketDefine.h ├── PacketFactory.h ├── PacketFactoryManager.cpp ├── PacketFactoryManager.h ├── Packets │ ├── BLRetAuth.cpp │ ├── BLRetAuth.h │ ├── BWConnect.cpp │ ├── BWConnect.h │ ├── BWValidateUser.cpp │ ├── BWValidateUser.h │ ├── CGApplyPrivateInfo.cpp │ ├── CGApplyPrivateInfo.h │ ├── CGAskActiveTimeUpdate.cpp │ ├── CGAskActiveTimeUpdate.h │ ├── CGAskChangeScene.cpp │ ├── CGAskChangeScene.h │ ├── CGAskDetailAbilityInfo.cpp │ ├── CGAskDetailAbilityInfo.h │ ├── CGAskDetailAttrib.cpp │ ├── CGAskDetailAttrib.h │ ├── CGAskDetailEquipList.cpp │ ├── CGAskDetailEquipList.h │ ├── CGAskDetailSkillList.cpp │ ├── CGAskDetailSkillList.h │ ├── CGAskDetailXinFaList.cpp │ ├── CGAskDetailXinFaList.h │ ├── CGAskItemInfo.cpp │ ├── CGAskItemInfo.h │ ├── CGAskJoinMenpai.cpp │ ├── CGAskJoinMenpai.h │ ├── CGAskLeanAbility.cpp │ ├── CGAskLeanAbility.h │ ├── CGAskLockObj.cpp │ ├── CGAskLockObj.h │ ├── CGAskMail.cpp │ ├── CGAskMail.h │ ├── CGAskMissionDesc.cpp │ ├── CGAskMissionDesc.h │ ├── CGAskMissionList.cpp │ ├── CGAskMissionList.h │ ├── CGAskMyBagList.cpp │ ├── CGAskMyBagList.h │ ├── CGAskPrivateInfo.cpp │ ├── CGAskPrivateInfo.h │ ├── CGAskSetting.cpp │ ├── CGAskSetting.h │ ├── CGAskStudyXinfa.cpp │ ├── CGAskStudyXinfa.h │ ├── CGAskTeamFollow.cpp │ ├── CGAskTeamFollow.h │ ├── CGAskTeamInfo.cpp │ ├── CGAskTeamInfo.h │ ├── CGAskTeamMemberInfo.cpp │ ├── CGAskTeamMemberInfo.h │ ├── CGAttack.cpp │ ├── CGAttack.h │ ├── CGBBSApply.cpp │ ├── CGBBSApply.h │ ├── CGBBSSychMessages.cpp │ ├── CGBBSSychMessages.h │ ├── CGBankAcquireList.cpp │ ├── CGBankAcquireList.h │ ├── CGBankAddItem.cpp │ ├── CGBankAddItem.h │ ├── CGBankClose.cpp │ ├── CGBankClose.h │ ├── CGBankMoney.cpp │ ├── CGBankMoney.h │ ├── CGBankRemoveItem.cpp │ ├── CGBankRemoveItem.h │ ├── CGBankSwapItem.cpp │ ├── CGBankSwapItem.h │ ├── CGChannelCreate.cpp │ ├── CGChannelCreate.h │ ├── CGChannelDismiss.cpp │ ├── CGChannelDismiss.h │ ├── CGChannelInvite.cpp │ ├── CGChannelInvite.h │ ├── CGChannelKick.cpp │ ├── CGChannelKick.h │ ├── CGCharAllTitles.cpp │ ├── CGCharAllTitles.h │ ├── CGCharAskBaseAttrib.cpp │ ├── CGCharAskBaseAttrib.h │ ├── CGCharAskEquipment.cpp │ ├── CGCharAskEquipment.h │ ├── CGCharDefaultEvent.h │ ├── CGCharDefaultEvnet.cpp │ ├── CGCharIdle.cpp │ ├── CGCharIdle.h │ ├── CGCharJump.cpp │ ├── CGCharJump.h │ ├── CGCharMoodState.cpp │ ├── CGCharMoodState.h │ ├── CGCharMove.cpp │ ├── CGCharMove.h │ ├── CGCharPositionWarp.cpp │ ├── CGCharPositionWarp.h │ ├── CGCharSit.cpp │ ├── CGCharSit.h │ ├── CGCharStopLogic.cpp │ ├── CGCharStopLogic.h │ ├── CGCharUpdateCurTitle.cpp │ ├── CGCharUpdateCurTitle.h │ ├── CGCharUseSkill.cpp │ ├── CGCharUseSkill.h │ ├── CGChat.cpp │ ├── CGChat.h │ ├── CGCityAskAttr.cpp │ ├── CGCityAskAttr.h │ ├── CGCommand.cpp │ ├── CGCommand.h │ ├── CGConnect.cpp │ ├── CGConnect.h │ ├── CGDiscardEquip.cpp │ ├── CGDiscardEquip.h │ ├── CGDiscardItem.cpp │ ├── CGDiscardItem.h │ ├── CGDispelBuffReq.cpp │ ├── CGDispelBuffReq.h │ ├── CGDoEvent.h │ ├── CGDoEvnet.cpp │ ├── CGEnterScene.cpp │ ├── CGEnterScene.h │ ├── CGEnvRequest.cpp │ ├── CGEnvRequest.h │ ├── CGEventRequest.cpp │ ├── CGEventRequest.h │ ├── CGExchangeApplyI.cpp │ ├── CGExchangeApplyI.h │ ├── CGExchangeCancel.cpp │ ├── CGExchangeCancel.h │ ├── CGExchangeOkIII.cpp │ ├── CGExchangeOkIII.h │ ├── CGExchangeReplyI.cpp │ ├── CGExchangeReplyI.h │ ├── CGExchangeSynchItemII.cpp │ ├── CGExchangeSynchItemII.h │ ├── CGExchangeSynchLock.cpp │ ├── CGExchangeSynchLock.h │ ├── CGExchangeSynchMoneyII.cpp │ ├── CGExchangeSynchMoneyII.h │ ├── CGExecuteScript.cpp │ ├── CGExecuteScript.h │ ├── CGFinger.cpp │ ├── CGFinger.h │ ├── CGGemCompound.cpp │ ├── CGGemCompound.h │ ├── CGGuild.cpp │ ├── CGGuild.h │ ├── CGGuildApply.cpp │ ├── CGGuildApply.h │ ├── CGGuildJoin.cpp │ ├── CGGuildJoin.h │ ├── CGHeartBeat.cpp │ ├── CGHeartBeat.h │ ├── CGIssuePetPlacard.cpp │ ├── CGIssuePetPlacard.h │ ├── CGItemSynch.cpp │ ├── CGItemSynch.h │ ├── CGLeaveScene.cpp │ ├── CGLeaveScene.h │ ├── CGLockTarget.cpp │ ├── CGLockTarget.h │ ├── CGMail.cpp │ ├── CGMail.h │ ├── CGManipulatePet.cpp │ ├── CGManipulatePet.h │ ├── CGMinorPasswd.cpp │ ├── CGMinorPasswd.h │ ├── CGMissionAbandon.cpp │ ├── CGMissionAbandon.h │ ├── CGMissionAccept.cpp │ ├── CGMissionAccept.h │ ├── CGMissionCheck.cpp │ ├── CGMissionCheck.h │ ├── CGMissionContinue.cpp │ ├── CGMissionContinue.h │ ├── CGMissionRefuse.cpp │ ├── CGMissionRefuse.h │ ├── CGMissionSubmit.cpp │ ├── CGMissionSubmit.h │ ├── CGModifySetting.cpp │ ├── CGModifySetting.h │ ├── CGOpenItemBox.cpp │ ├── CGOpenItemBox.h │ ├── CGOtherEquip.cpp │ ├── CGOtherEquip.h │ ├── CGPackUpPacket.cpp │ ├── CGPackUpPacket.h │ ├── CGPackage_SwapItem.cpp │ ├── CGPackage_SwapItem.h │ ├── CGPickBoxItem.cpp │ ├── CGPickBoxItem.h │ ├── CGPlayerCallOfResult.cpp │ ├── CGPlayerCallOfResult.h │ ├── CGPlayerDieResult.cpp │ ├── CGPlayerDieResult.h │ ├── CGPlayerShopAcquireItemList.cpp │ ├── CGPlayerShopAcquireItemList.h │ ├── CGPlayerShopAcquireShopList.cpp │ ├── CGPlayerShopAcquireShopList.h │ ├── CGPlayerShopApply.cpp │ ├── CGPlayerShopApply.h │ ├── CGPlayerShopAskForRecord.cpp │ ├── CGPlayerShopAskForRecord.h │ ├── CGPlayerShopBuy.cpp │ ├── CGPlayerShopBuy.h │ ├── CGPlayerShopBuyItem.cpp │ ├── CGPlayerShopBuyItem.h │ ├── CGPlayerShopBuyShop.cpp │ ├── CGPlayerShopBuyShop.h │ ├── CGPlayerShopDesc.cpp │ ├── CGPlayerShopDesc.h │ ├── CGPlayerShopEstablish.cpp │ ├── CGPlayerShopEstablish.h │ ├── CGPlayerShopFavorite.cpp │ ├── CGPlayerShopFavorite.h │ ├── CGPlayerShopMoney.cpp │ ├── CGPlayerShopMoney.h │ ├── CGPlayerShopName.cpp │ ├── CGPlayerShopName.h │ ├── CGPlayerShopOnSale.cpp │ ├── CGPlayerShopOnSale.h │ ├── CGPlayerShopOpenStall.cpp │ ├── CGPlayerShopOpenStall.h │ ├── CGPlayerShopPartner.cpp │ ├── CGPlayerShopPartner.h │ ├── CGPlayerShopSaleOut.cpp │ ├── CGPlayerShopSaleOut.h │ ├── CGPlayerShopSize.cpp │ ├── CGPlayerShopSize.h │ ├── CGPlayerShopType.cpp │ ├── CGPlayerShopType.h │ ├── CGRelation.cpp │ ├── CGRelation.h │ ├── CGRemoveGem.cpp │ ├── CGRemoveGem.h │ ├── CGReqLevelUp.cpp │ ├── CGReqLevelUp.h │ ├── CGReqManualAttr.cpp │ ├── CGReqManualAttr.h │ ├── CGReqResetAttr.cpp │ ├── CGReqResetAttr.h │ ├── CGReturnTeamFollow.cpp │ ├── CGReturnTeamFollow.h │ ├── CGSetMoodToHead.cpp │ ├── CGSetMoodToHead.h │ ├── CGSetPetAttrib.cpp │ ├── CGSetPetAttrib.h │ ├── CGShopBuy.cpp │ ├── CGShopBuy.h │ ├── CGShopBuySold.cpp │ ├── CGShopBuySold.h │ ├── CGShopClose.cpp │ ├── CGShopClose.h │ ├── CGShopRepair.cpp │ ├── CGShopRepair.h │ ├── CGShopSell.cpp │ ├── CGShopSell.h │ ├── CGSkill.cpp │ ├── CGSkill.h │ ├── CGSplitItem.cpp │ ├── CGSplitItem.h │ ├── CGStallAddItem.cpp │ ├── CGStallAddItem.h │ ├── CGStallApply.cpp │ ├── CGStallApply.h │ ├── CGStallBuy.cpp │ ├── CGStallBuy.h │ ├── CGStallClose.cpp │ ├── CGStallClose.h │ ├── CGStallDefaultPage.cpp │ ├── CGStallDefaultPage.h │ ├── CGStallEstablish.cpp │ ├── CGStallEstablish.h │ ├── CGStallItemPrice.cpp │ ├── CGStallItemPrice.h │ ├── CGStallOpen.cpp │ ├── CGStallOpen.h │ ├── CGStallRemoveItem.cpp │ ├── CGStallRemoveItem.h │ ├── CGStallShopName.cpp │ ├── CGStallShopName.h │ ├── CGStopTeamFollow.cpp │ ├── CGStopTeamFollow.h │ ├── CGTeamApply.cpp │ ├── CGTeamApply.h │ ├── CGTeamAppoint.cpp │ ├── CGTeamAppoint.h │ ├── CGTeamDismiss.cpp │ ├── CGTeamDismiss.h │ ├── CGTeamInvite.cpp │ ├── CGTeamInvite.h │ ├── CGTeamKick.cpp │ ├── CGTeamKick.h │ ├── CGTeamLeaderRetInvite.cpp │ ├── CGTeamLeaderRetInvite.h │ ├── CGTeamLeave.cpp │ ├── CGTeamLeave.h │ ├── CGTeamRetApply.cpp │ ├── CGTeamRetApply.h │ ├── CGTeamRetInvite.cpp │ ├── CGTeamRetInvite.h │ ├── CGTest.cpp │ ├── CGTest.h │ ├── CGUnEquip.cpp │ ├── CGUnEquip.h │ ├── CGUseAbility.cpp │ ├── CGUseAbility.h │ ├── CGUseEquip.cpp │ ├── CGUseEquip.h │ ├── CGUseEquipSkill.cpp │ ├── CGUseEquipSkill.h │ ├── CGUseGem.cpp │ ├── CGUseGem.h │ ├── CGUseItem.cpp │ ├── CGUseItem.h │ ├── CLAskCharList.cpp │ ├── CLAskCharList.h │ ├── CLAskCharLogin.cpp │ ├── CLAskCharLogin.h │ ├── CLAskCreateChar.cpp │ ├── CLAskCreateChar.h │ ├── CLAskDeleteChar.cpp │ ├── CLAskDeleteChar.h │ ├── CLAskLogin.cpp │ ├── CLAskLogin.h │ ├── CLConnect.cpp │ ├── CLConnect.h │ ├── ExchangeMsgDefine.h │ ├── GCAbandonAbility.cpp │ ├── GCAbandonAbility.h │ ├── GCAbilityAction.cpp │ ├── GCAbilityAction.h │ ├── GCAbilityExp.cpp │ ├── GCAbilityExp.h │ ├── GCAbilityLevel.cpp │ ├── GCAbilityLevel.h │ ├── GCAbilityResult.cpp │ ├── GCAbilityResult.h │ ├── GCAbilitySucc.cpp │ ├── GCAbilitySucc.h │ ├── GCAbilityTeacherInfo.cpp │ ├── GCAbilityTeacherInfo.h │ ├── GCAddCanPickMissionItem.cpp │ ├── GCAddCanPickMissionItem.h │ ├── GCAddLockObj.cpp │ ├── GCAddLockObj.h │ ├── GCArrive.cpp │ ├── GCArrive.h │ ├── GCAskTeamFollow.cpp │ ├── GCAskTeamFollow.h │ ├── GCAttack.cpp │ ├── GCAttack.h │ ├── GCBBSMessages.cpp │ ├── GCBBSMessages.h │ ├── GCBankAcquireList.cpp │ ├── GCBankAcquireList.h │ ├── GCBankAddItem.cpp │ ├── GCBankAddItem.h │ ├── GCBankBegin.cpp │ ├── GCBankBegin.h │ ├── GCBankItemInfo.cpp │ ├── GCBankItemInfo.h │ ├── GCBankMoney.cpp │ ├── GCBankMoney.h │ ├── GCBankRemoveItem.cpp │ ├── GCBankRemoveItem.h │ ├── GCBankSwapItem.cpp │ ├── GCBankSwapItem.h │ ├── GCBoxItemList.cpp │ ├── GCBoxItemList.h │ ├── GCCanPickMissionItemList.cpp │ ├── GCCanPickMissionItemList.h │ ├── GCChannelError.cpp │ ├── GCChannelError.h │ ├── GCChannelResult.cpp │ ├── GCChannelResult.h │ ├── GCCharAction.cpp │ ├── GCCharAction.h │ ├── GCCharAllTitles.cpp │ ├── GCCharAllTitles.h │ ├── GCCharBUFF.cpp │ ├── GCCharBUFF.h │ ├── GCCharBaseAttrib.cpp │ ├── GCCharBaseAttrib.h │ ├── GCCharDirectImpact.cpp │ ├── GCCharDirectImpact.h │ ├── GCCharDoAction.cpp │ ├── GCCharDoAction.h │ ├── GCCharEquipment.cpp │ ├── GCCharEquipment.h │ ├── GCCharFirstLogin.cpp │ ├── GCCharFirstLogin.h │ ├── GCCharIdle.cpp │ ├── GCCharIdle.h │ ├── GCCharImpactListUpdate.cpp │ ├── GCCharImpactListUpdate.h │ ├── GCCharJump.cpp │ ├── GCCharJump.h │ ├── GCCharModifyAction.cpp │ ├── GCCharModifyAction.h │ ├── GCCharMove.cpp │ ├── GCCharMove.h │ ├── GCCharMoveResult.cpp │ ├── GCCharMoveResult.h │ ├── GCCharSkill_CreateBullet.cpp │ ├── GCCharSkill_CreateBullet.h │ ├── GCCharSkill_Gather.cpp │ ├── GCCharSkill_Gather.h │ ├── GCCharSkill_Gather_Modify.cpp │ ├── GCCharSkill_Gather_Modify.h │ ├── GCCharSkill_Lead.cpp │ ├── GCCharSkill_Lead.h │ ├── GCCharSkill_Lead_Modify.cpp │ ├── GCCharSkill_Lead_Modify.h │ ├── GCCharSkill_Missed.cpp │ ├── GCCharSkill_Missed.h │ ├── GCCharSkill_Send.cpp │ ├── GCCharSkill_Send.h │ ├── GCCharStopAction.cpp │ ├── GCCharStopAction.h │ ├── GCChat.cpp │ ├── GCChat.h │ ├── GCCityAttr.cpp │ ├── GCCityAttr.h │ ├── GCCityError.cpp │ ├── GCCityError.h │ ├── GCCityNotify.cpp │ ├── GCCityNotify.h │ ├── GCConnect.cpp │ ├── GCConnect.h │ ├── GCCoolDownUpdate.cpp │ ├── GCCoolDownUpdate.h │ ├── GCDelObject.cpp │ ├── GCDelObject.h │ ├── GCDetailAbilityInfo.cpp │ ├── GCDetailAbilityInfo.h │ ├── GCDetailAttrib.cpp │ ├── GCDetailAttrib.h │ ├── GCDetailAttrib_Pet.cpp │ ├── GCDetailAttrib_Pet.h │ ├── GCDetailBUFF.cpp │ ├── GCDetailBUFF.h │ ├── GCDetailEquipList.cpp │ ├── GCDetailEquipList.h │ ├── GCDetailHealsAndDamages.cpp │ ├── GCDetailHealsAndDamages.h │ ├── GCDetailImpactListUpdate.cpp │ ├── GCDetailImpactListUpdate.h │ ├── GCDetailSkillList.cpp │ ├── GCDetailSkillList.h │ ├── GCDetailSubEffectList.cpp │ ├── GCDetailSubEffectList.h │ ├── GCDetailXinFaList.cpp │ ├── GCDetailXinFaList.h │ ├── GCDie.cpp │ ├── GCDie.h │ ├── GCDiscardEquipResult.cpp │ ├── GCDiscardEquipResult.h │ ├── GCDiscardItemResult.cpp │ ├── GCDiscardItemResult.h │ ├── GCEnterScene.cpp │ ├── GCEnterScene.h │ ├── GCErrorAttack.cpp │ ├── GCErrorAttack.h │ ├── GCErrorSkill.cpp │ ├── GCErrorSkill.h │ ├── GCExchangeApplyI.cpp │ ├── GCExchangeApplyI.h │ ├── GCExchangeCancel.cpp │ ├── GCExchangeCancel.h │ ├── GCExchangeError.cpp │ ├── GCExchangeError.h │ ├── GCExchangeEstablishI.cpp │ ├── GCExchangeEstablishI.h │ ├── GCExchangeSuccessIII.cpp │ ├── GCExchangeSuccessIII.h │ ├── GCExchangeSynchConfirmII.cpp │ ├── GCExchangeSynchConfirmII.h │ ├── GCExchangeSynchII.cpp │ ├── GCExchangeSynchII.h │ ├── GCExchangeSynchLock.cpp │ ├── GCExchangeSynchLock.h │ ├── GCFinger.cpp │ ├── GCFinger.h │ ├── GCGuild.cpp │ ├── GCGuild.h │ ├── GCGuildApply.cpp │ ├── GCGuildApply.h │ ├── GCGuildError.cpp │ ├── GCGuildError.h │ ├── GCGuildReturn.cpp │ ├── GCGuildReturn.h │ ├── GCItemInfo.cpp │ ├── GCItemInfo.h │ ├── GCItemList.cpp │ ├── GCItemList.h │ ├── GCItemSynch.cpp │ ├── GCItemSynch.h │ ├── GCJoinMenpai.cpp │ ├── GCJoinMenpai.h │ ├── GCLeaveScene.cpp │ ├── GCLeaveScene.h │ ├── GCLevelUp.cpp │ ├── GCLevelUp.h │ ├── GCLevelUpResult.cpp │ ├── GCLevelUpResult.h │ ├── GCMail.cpp │ ├── GCMail.h │ ├── GCManipulatePetRet.cpp │ ├── GCManipulatePetRet.h │ ├── GCManualAttrResult.cpp │ ├── GCManualAttrResult.h │ ├── GCMenpaiInfo.cpp │ ├── GCMenpaiInfo.h │ ├── GCMinorPasswd.cpp │ ├── GCMinorPasswd.h │ ├── GCMissionAdd.cpp │ ├── GCMissionAdd.h │ ├── GCMissionList.cpp │ ├── GCMissionList.h │ ├── GCMissionModify.cpp │ ├── GCMissionModify.h │ ├── GCMissionRemove.cpp │ ├── GCMissionRemove.h │ ├── GCMissionResult.cpp │ ├── GCMissionResult.h │ ├── GCModifySpeed.cpp │ ├── GCModifySpeed.h │ ├── GCMonsterRealMove.cpp │ ├── GCMonsterRealMove.h │ ├── GCMonsterSpeak.cpp │ ├── GCMonsterSpeak.h │ ├── GCMyBagList.cpp │ ├── GCMyBagList.h │ ├── GCNewItem.cpp │ ├── GCNewItem.h │ ├── GCNewItemBox.cpp │ ├── GCNewItemBox.h │ ├── GCNewMonster.cpp │ ├── GCNewMonster.h │ ├── GCNewMonster_Death.cpp │ ├── GCNewMonster_Death.h │ ├── GCNewMonster_Move.cpp │ ├── GCNewMonster_Move.h │ ├── GCNewPet.cpp │ ├── GCNewPet.h │ ├── GCNewPet_Death.cpp │ ├── GCNewPet_Death.h │ ├── GCNewPet_Move.cpp │ ├── GCNewPet_Move.h │ ├── GCNewPlatform.cpp │ ├── GCNewPlatform.h │ ├── GCNewPlayer.cpp │ ├── GCNewPlayer.h │ ├── GCNewPlayer_Death.cpp │ ├── GCNewPlayer_Death.h │ ├── GCNewPlayer_Move.cpp │ ├── GCNewPlayer_Move.h │ ├── GCNewPortal.cpp │ ├── GCNewPortal.h │ ├── GCNewSkillObj.cpp │ ├── GCNewSkillObj.h │ ├── GCNewSpecial.cpp │ ├── GCNewSpecial.h │ ├── GCNotifyChangeScene.cpp │ ├── GCNotifyChangeScene.h │ ├── GCNotifyEquip.cpp │ ├── GCNotifyEquip.h │ ├── GCNotifyGoodBad.cpp │ ├── GCNotifyGoodBad.h │ ├── GCNotifyMail.cpp │ ├── GCNotifyMail.h │ ├── GCNotifyTeamInfo.cpp │ ├── GCNotifyTeamInfo.h │ ├── GCObjTeleport.cpp │ ├── GCObjTeleport.h │ ├── GCOperateResult.cpp │ ├── GCOperateResult.h │ ├── GCOtherAttack.cpp │ ├── GCOtherAttack.h │ ├── GCOtherEquip.cpp │ ├── GCOtherEquip.h │ ├── GCOtherSkill.cpp │ ├── GCOtherSkill.h │ ├── GCPackUpPacket.cpp │ ├── GCPackUpPacket.h │ ├── GCPackage_SwapItem.cpp │ ├── GCPackage_SwapItem.h │ ├── GCPetPlacardList.cpp │ ├── GCPetPlacardList.h │ ├── GCPickResult.cpp │ ├── GCPickResult.h │ ├── GCPlayerCallOf.cpp │ ├── GCPlayerCallOf.h │ ├── GCPlayerDie.cpp │ ├── GCPlayerDie.h │ ├── GCPlayerRealMove.cpp │ ├── GCPlayerRealMove.h │ ├── GCPlayerRelive.cpp │ ├── GCPlayerRelive.h │ ├── GCPlayerShopAcquireShopList.cpp │ ├── GCPlayerShopAcquireShopList.h │ ├── GCPlayerShopApply.cpp │ ├── GCPlayerShopApply.h │ ├── GCPlayerShopBuyShop.cpp │ ├── GCPlayerShopBuyShop.h │ ├── GCPlayerShopError.cpp │ ├── GCPlayerShopError.h │ ├── GCPlayerShopEstablish.cpp │ ├── GCPlayerShopEstablish.h │ ├── GCPlayerShopMoney.cpp │ ├── GCPlayerShopMoney.h │ ├── GCPlayerShopOnSale.cpp │ ├── GCPlayerShopOnSale.h │ ├── GCPlayerShopOpenStall.cpp │ ├── GCPlayerShopOpenStall.h │ ├── GCPlayerShopRecordList.cpp │ ├── GCPlayerShopRecordList.h │ ├── GCPlayerShopSaleOut.cpp │ ├── GCPlayerShopSaleOut.h │ ├── GCPlayerShopStallStatus.cpp │ ├── GCPlayerShopStallStatus.h │ ├── GCPlayerShopType.cpp │ ├── GCPlayerShopType.h │ ├── GCPlayerShopUpdateFavorite.cpp │ ├── GCPlayerShopUpdateFavorite.h │ ├── GCPlayerShopUpdatePartners.cpp │ ├── GCPlayerShopUpdatePartners.h │ ├── GCPrescription.cpp │ ├── GCPrescription.h │ ├── GCPrivateInfo.cpp │ ├── GCPrivateInfo.h │ ├── GCRelation.cpp │ ├── GCRelation.h │ ├── GCRemoveCanPickMissionItem.cpp │ ├── GCRemoveCanPickMissionItem.h │ ├── GCRemoveGemResult.cpp │ ├── GCRemoveGemResult.h │ ├── GCRemovePet.cpp │ ├── GCRemovePet.h │ ├── GCReqResetAttrResult.cpp │ ├── GCReqResetAttrResult.h │ ├── GCRetChangeScene.cpp │ ├── GCRetChangeScene.h │ ├── GCRetMissionDesc.cpp │ ├── GCRetMissionDesc.h │ ├── GCRetSetting.cpp │ ├── GCRetSetting.h │ ├── GCReturnTeamFollow.cpp │ ├── GCReturnTeamFollow.h │ ├── GCScriptCommand.cpp │ ├── GCScriptCommand.h │ ├── GCShopBuy.cpp │ ├── GCShopBuy.h │ ├── GCShopMerchandiseList.cpp │ ├── GCShopMerchandiseList.h │ ├── GCShopRepair.cpp │ ├── GCShopRepair.h │ ├── GCShopSell.cpp │ ├── GCShopSell.h │ ├── GCShopSoldList.cpp │ ├── GCShopSoldList.h │ ├── GCShopUpdateMerchandiseList.cpp │ ├── GCShopUpdateMerchandiseList.h │ ├── GCSkill.cpp │ ├── GCSkill.h │ ├── GCSkillPrepare.cpp │ ├── GCSkillPrepare.h │ ├── GCSpecialObj_ActNow.cpp │ ├── GCSpecialObj_ActNow.h │ ├── GCSpecialObj_FadeOut.cpp │ ├── GCSpecialObj_FadeOut.h │ ├── GCSplitItemResult.cpp │ ├── GCSplitItemResult.h │ ├── GCStallAddItem.cpp │ ├── GCStallAddItem.h │ ├── GCStallApply.cpp │ ├── GCStallApply.h │ ├── GCStallBuy.cpp │ ├── GCStallBuy.h │ ├── GCStallClose.cpp │ ├── GCStallClose.h │ ├── GCStallError.cpp │ ├── GCStallError.h │ ├── GCStallEstablish.cpp │ ├── GCStallEstablish.h │ ├── GCStallItemPrice.cpp │ ├── GCStallItemPrice.h │ ├── GCStallOpen.cpp │ ├── GCStallOpen.h │ ├── GCStallRemoveItem.cpp │ ├── GCStallRemoveItem.h │ ├── GCStudyXinfa.cpp │ ├── GCStudyXinfa.h │ ├── GCSystemMsg.cpp │ ├── GCSystemMsg.h │ ├── GCTargetListAndHitFlags.cpp │ ├── GCTargetListAndHitFlags.h │ ├── GCTeamAskApply.cpp │ ├── GCTeamAskApply.h │ ├── GCTeamAskInvite.cpp │ ├── GCTeamAskInvite.h │ ├── GCTeamError.cpp │ ├── GCTeamError.h │ ├── GCTeamFollowErr.cpp │ ├── GCTeamFollowErr.h │ ├── GCTeamFollowList.cpp │ ├── GCTeamFollowList.h │ ├── GCTeamLeaderAskInvite.cpp │ ├── GCTeamLeaderAskInvite.h │ ├── GCTeamList.cpp │ ├── GCTeamList.h │ ├── GCTeamMemberInfo.cpp │ ├── GCTeamMemberInfo.h │ ├── GCTeamResult.cpp │ ├── GCTeamResult.h │ ├── GCTest.cpp │ ├── GCTest.h │ ├── GCUICommand.cpp │ ├── GCUICommand.h │ ├── GCUnEquipResult.cpp │ ├── GCUnEquipResult.h │ ├── GCUseEquipResult.cpp │ ├── GCUseEquipResult.h │ ├── GCUseEquipSkillResult.cpp │ ├── GCUseEquipSkillResult.h │ ├── GCUseGemResult.cpp │ ├── GCUseGemResult.h │ ├── GCUseItemResult.cpp │ ├── GCUseItemResult.h │ ├── GCWorldTime.cpp │ ├── GCWorldTime.h │ ├── GCXinfaStudyInfo.cpp │ ├── GCXinfaStudyInfo.h │ ├── GGSceneNotify.cpp │ ├── GGSceneNotify.h │ ├── GSAskData.cpp │ ├── GSAskData.h │ ├── GWAskChangeScene.cpp │ ├── GWAskChangeScene.h │ ├── GWAskMail.cpp │ ├── GWAskMail.h │ ├── GWAskSceneData.cpp │ ├── GWAskSceneData.h │ ├── GWAskTeamInfo.cpp │ ├── GWAskTeamInfo.h │ ├── GWAskTeamMemberInfo.cpp │ ├── GWAskTeamMemberInfo.h │ ├── GWAskUserData.cpp │ ├── GWAskUserData.h │ ├── GWBatchMail.cpp │ ├── GWBatchMail.h │ ├── GWCallOfHuman.cpp │ ├── GWCallOfHuman.h │ ├── GWChangeMenpai.cpp │ ├── GWChangeMenpai.h │ ├── GWChannelCreate.cpp │ ├── GWChannelCreate.h │ ├── GWChannelDismiss.cpp │ ├── GWChannelDismiss.h │ ├── GWChannelInvite.cpp │ ├── GWChannelInvite.h │ ├── GWChannelKick.cpp │ ├── GWChannelKick.h │ ├── GWChat.cpp │ ├── GWChat.h │ ├── GWCityApplyNewCity.cpp │ ├── GWCityApplyNewCity.h │ ├── GWCityAskInitInfo.cpp │ ├── GWCityAskInitInfo.h │ ├── GWCityClose.cpp │ ├── GWCityClose.h │ ├── GWCityCloseSuccess.cpp │ ├── GWCityCloseSuccess.h │ ├── GWCityOpt.cpp │ ├── GWCityOpt.h │ ├── GWCommand.cpp │ ├── GWCommand.h │ ├── GWEnterTeamFollow.cpp │ ├── GWEnterTeamFollow.h │ ├── GWFinger.cpp │ ├── GWFinger.h │ ├── GWGuild.cpp │ ├── GWGuild.h │ ├── GWHeartBeat.cpp │ ├── GWHeartBeat.h │ ├── GWLevelUp.cpp │ ├── GWLevelUp.h │ ├── GWMail.cpp │ ├── GWMail.h │ ├── GWNotifyUser.cpp │ ├── GWNotifyUser.h │ ├── GWRelation.cpp │ ├── GWRelation.h │ ├── GWStopTeamFollow.cpp │ ├── GWStopTeamFollow.h │ ├── GWSystemMsg.cpp │ ├── GWSystemMsg.h │ ├── GWTeamApply.cpp │ ├── GWTeamApply.h │ ├── GWTeamAppoint.cpp │ ├── GWTeamAppoint.h │ ├── GWTeamDismiss.cpp │ ├── GWTeamDismiss.h │ ├── GWTeamInvite.cpp │ ├── GWTeamInvite.h │ ├── GWTeamKick.cpp │ ├── GWTeamKick.h │ ├── GWTeamLeaderRetInvite.cpp │ ├── GWTeamLeaderRetInvite.h │ ├── GWTeamLeave.cpp │ ├── GWTeamLeave.h │ ├── GWTeamMemberEnterScene.cpp │ ├── GWTeamMemberEnterScene.h │ ├── GWTeamRetApply.cpp │ ├── GWTeamRetApply.h │ ├── GWTeamRetInvite.cpp │ ├── GWTeamRetInvite.h │ ├── GWUpdateTitle.cpp │ ├── GWUpdateTitle.h │ ├── ItemSynchStructDefine.h │ ├── LBAskAuth.cpp │ ├── LBAskAuth.h │ ├── LCRetCharList.cpp │ ├── LCRetCharList.h │ ├── LCRetCharLogin.cpp │ ├── LCRetCharLogin.h │ ├── LCRetConnect.cpp │ ├── LCRetConnect.h │ ├── LCRetCreateChar.cpp │ ├── LCRetCreateChar.h │ ├── LCRetDeleteChar.cpp │ ├── LCRetDeleteChar.h │ ├── LCRetLogin.cpp │ ├── LCRetLogin.h │ ├── LCStatus.cpp │ ├── LCStatus.h │ ├── LWAskCharLogin.cpp │ ├── LWAskCharLogin.h │ ├── LWAskDeleteChar.cpp │ ├── LWAskDeleteChar.h │ ├── PetDetailExtraStructDefine.h │ ├── SGRetData.cpp │ ├── SGRetData.h │ ├── SSConnect.cpp │ ├── SSConnect.h │ ├── SSScenePlayerCount.cpp │ ├── SSScenePlayerCount.h │ ├── WBRetValidateUser.cpp │ ├── WBRetValidateUser.h │ ├── WGCallOfHuman.cpp │ ├── WGCallOfHuman.h │ ├── WGChannelError.cpp │ ├── WGChannelError.h │ ├── WGChannelResult.cpp │ ├── WGChannelResult.h │ ├── WGChat.cpp │ ├── WGChat.h │ ├── WGCityApplyNewCity.cpp │ ├── WGCityApplyNewCity.h │ ├── WGCityAttr.cpp │ ├── WGCityAttr.h │ ├── WGCityClose.cpp │ ├── WGCityClose.h │ ├── WGCityCloseSuccess.cpp │ ├── WGCityCloseSuccess.h │ ├── WGCityError.cpp │ ├── WGCityError.h │ ├── WGCityInitInfo.cpp │ ├── WGCityInitInfo.h │ ├── WGFinger.cpp │ ├── WGFinger.h │ ├── WGGuild.cpp │ ├── WGGuild.h │ ├── WGGuildError.cpp │ ├── WGGuildError.h │ ├── WGGuildReturn.cpp │ ├── WGGuildReturn.h │ ├── WGMail.cpp │ ├── WGMail.h │ ├── WGNotifyMail.cpp │ ├── WGNotifyMail.h │ ├── WGNotifyUser.cpp │ ├── WGNotifyUser.h │ ├── WGRelation.cpp │ ├── WGRelation.h │ ├── WGRetChangeScene.cpp │ ├── WGRetChangeScene.h │ ├── WGRetSceneData.cpp │ ├── WGRetSceneData.h │ ├── WGRetUserData.cpp │ ├── WGRetUserData.h │ ├── WGSystemMsg.cpp │ ├── WGSystemMsg.h │ ├── WGTeamAskApply.cpp │ ├── WGTeamAskApply.h │ ├── WGTeamAskInvite.cpp │ ├── WGTeamAskInvite.h │ ├── WGTeamError.cpp │ ├── WGTeamError.h │ ├── WGTeamFollowList.cpp │ ├── WGTeamFollowList.h │ ├── WGTeamLeaderAskInvite.cpp │ ├── WGTeamLeaderAskInvite.h │ ├── WGTeamList.cpp │ ├── WGTeamList.h │ ├── WGTeamMemberInfo.cpp │ ├── WGTeamMemberInfo.h │ ├── WGTeamResult.cpp │ ├── WGTeamResult.h │ ├── WGWorldTime.cpp │ ├── WGWorldTime.h │ ├── WLRetCharLogin.cpp │ ├── WLRetCharLogin.h │ ├── WLRetDeleteChar.cpp │ └── WLRetDeleteChar.h ├── PlayerStatus.h ├── Rand.cpp ├── Rand.h ├── ResultDefine.h ├── ScriptCommandStruct.cpp ├── ScriptCommandStruct.h ├── ShareMemAPI.cpp ├── ShareMemAPI.h ├── SkillDataMgr.cpp ├── SkillDataMgr.h └── Type.h ├── FKSvr2Login ├── DB │ ├── CharConfig.cpp │ ├── CharConfig.h │ ├── DBLogicManager.cpp │ ├── DBLogicManager.h │ ├── DBThread.cpp │ ├── DBThread.h │ ├── DBThreadManager.cpp │ ├── DBThreadManager.h │ ├── LoginDBManager.cpp │ └── LoginDBManager.h ├── FKSvr2Login.vcproj ├── Main │ ├── ConnectManager.cpp │ ├── ConnectManager.h │ ├── Login.cpp │ ├── Login.h │ ├── LoginMain.cpp │ ├── LoginMain.h │ ├── ServerManager.cpp │ ├── ServerManager.h │ ├── ServerThread.cpp │ ├── ServerThread.h │ ├── ThreadManager.cpp │ └── ThreadManager.h ├── Packets │ ├── BLRetAuthHandler.cpp │ ├── CLAskCharListHandler.cpp │ ├── CLAskCharLoginHandler.cpp │ ├── CLAskCreateCharHander.cpp │ ├── CLAskDeleteCharHandler.cpp │ ├── CLAskLoginHandler.cpp │ ├── CLConnectHandler.cpp │ ├── LBAskAuthHandler.cpp │ ├── LCRetCharListHandler.cpp │ ├── LCRetCharLoginHandler.cpp │ ├── LCRetConnectHandler.cpp │ ├── LCRetCreateCharHandler.cpp │ ├── LCRetDeleteCharHandler.cpp │ ├── LCRetLoginHandler.cpp │ ├── LCStatusHandler.cpp │ ├── LWAskCharLoginHandler.cpp │ ├── LWAskDeleteCharHandler.cpp │ ├── SSConnectHandler.cpp │ ├── SSScenePlayerCountHandler.cpp │ ├── WLRetCharLoginHandler.cpp │ └── WLRetDeleteCharHandler.cpp ├── Player │ ├── LoginPlayer.cpp │ ├── LoginPlayer.h │ ├── LoginPlayerManager.cpp │ ├── LoginPlayerManager.h │ ├── Player.cpp │ ├── Player.h │ ├── PlayerManager.cpp │ ├── PlayerManager.h │ ├── PlayerPool.cpp │ ├── PlayerPool.h │ ├── ServerPlayer.cpp │ ├── ServerPlayer.h │ ├── TurnPlayerQueue.cpp │ └── TurnPlayerQueue.h ├── Process │ ├── ProcessManager.cpp │ ├── ProcessManager.h │ ├── ProcessPlayerManager.cpp │ └── ProcessPlayerManager.h ├── stdafx.cpp └── stdafx.h ├── FKSvr2Server ├── AI │ ├── AIScript.cpp │ ├── AIScript.h │ ├── AIScriptDef.h │ ├── AIScriptFunction.cpp │ ├── AIScriptFunction.h │ ├── AI_Character.cpp │ ├── AI_Character.h │ ├── AI_Human.cpp │ ├── AI_Human.h │ ├── AI_Monster.cpp │ ├── AI_Monster.h │ ├── AI_Monster_Def.h │ ├── AI_Pet.cpp │ ├── AI_Pet.h │ ├── AI_PetDef.h │ ├── AvoidOverlap.h │ ├── AxTrace.cpp │ ├── AxTrace.h │ ├── Patrol.cpp │ ├── Patrol.h │ ├── SinCos.cpp │ ├── SinCos.h │ ├── State.cpp │ └── State.h ├── Ability │ ├── Ability.cpp │ ├── Ability.h │ ├── Ability.inl │ ├── AbilityCompound.cpp │ ├── AbilityCompound.h │ ├── AbilityFoundry.cpp │ ├── AbilityFoundry.h │ ├── AbilityGather.cpp │ ├── AbilityGather.h │ ├── AbilityGatherFish.cpp │ ├── AbilityGatherFish.h │ ├── AbilityGeneric.h │ ├── AbilityInlay.cpp │ ├── AbilityInlay.h │ ├── AbilityMachining.cpp │ ├── AbilityMachining.h │ ├── AbilityManager.cpp │ ├── AbilityManager.h │ ├── AbilityTailor.cpp │ └── AbilityTailor.h ├── ActionModule │ ├── ActionCallBack.cpp │ ├── ActionCallBack.h │ ├── ActionCallBackForScript.cpp │ ├── ActionCallBackForScript.h │ ├── ActionCallBackForSkill.cpp │ ├── ActionCallBackForSkill.h │ ├── ActionDelegator.cpp │ ├── ActionDelegator.h │ ├── ActionLogic.cpp │ ├── ActionLogic.h │ ├── ChannelAction.cpp │ ├── ChannelAction.h │ ├── ChargeAction.cpp │ ├── ChargeAction.h │ ├── InstantAction.cpp │ └── InstantAction.h ├── Base │ ├── Config.cpp │ ├── Config.h │ ├── File.cpp │ ├── File.h │ ├── FileDef.h │ ├── FoxLuaScript.cpp │ ├── FoxLuaScript.h │ ├── FoxWin32.h │ ├── IDTable.cpp │ ├── IDTable.h │ ├── Ini.cpp │ ├── Ini.h │ ├── Log.cpp │ ├── Log.h │ ├── LogDefine.cpp │ ├── LogDefine.h │ ├── LuaLib.h │ ├── ObjPool.cpp │ ├── ObjPool.h │ ├── PetConfig.h │ ├── ScriptDef.h │ ├── StrTable.cpp │ ├── StrTable.h │ ├── Thread.cpp │ ├── Thread.h │ ├── TimeManager.cpp │ ├── TimeManager.h │ ├── foxscript.h │ └── lua.h ├── DB │ ├── HumanDB.cpp │ ├── HumanDB.h │ └── HumanDB.inl ├── EventModule │ ├── EventCore.cpp │ ├── EventCore.h │ ├── EventStruct.cpp │ └── EventStruct.h ├── FKSvr2Server9.vcproj ├── Item │ ├── GrowPointManager.cpp │ ├── GrowPointManager.h │ ├── GrowPointManager.inl │ ├── HumanItemContainer.cpp │ ├── HumanItemContainer.h │ ├── HumanItemLogic.cpp │ ├── HumanItemLogic.h │ ├── HumanPetContainer.cpp │ ├── HumanPetContainer.h │ ├── Item.cpp │ ├── Item.h │ ├── Item.inl │ ├── ItemContainer.cpp │ ├── ItemContainer.h │ ├── ItemHelper.cpp │ ├── ItemHelper.h │ ├── ItemManager.cpp │ ├── ItemManager.h │ ├── ItemOperator.cpp │ ├── ItemOperator.h │ ├── ItemRuler.cpp │ ├── ItemRuler.h │ ├── ItemTable.cpp │ ├── ItemTable.h │ └── ItemTypes.h ├── Main │ ├── ClientManager.cpp │ ├── ClientManager.h │ ├── DaemonThread.cpp │ ├── DaemonThread.h │ ├── DiePenaltyManager.cpp │ ├── DiePenaltyManager.h │ ├── GUIDManager.cpp │ ├── GUIDManager.h │ ├── GameTable.cpp │ ├── GameTable.h │ ├── MachineManager.cpp │ ├── MachineManager.h │ ├── Performance.cpp │ ├── Performance.h │ ├── RecoverManager.cpp │ ├── RecoverManager.h │ ├── RecoverThread.cpp │ ├── RecoverThread.h │ ├── Server.cpp │ ├── Server.h │ ├── ServerManager.cpp │ ├── ServerManager.h │ ├── ServerThread.cpp │ ├── ServerThread.h │ ├── ShareMemManager.cpp │ ├── ShareMemManager.h │ ├── ThreadManager.cpp │ ├── ThreadManager.h │ ├── ThreadPool.cpp │ ├── ThreadPool.h │ ├── User.cpp │ ├── User.h │ ├── UserPool.cpp │ ├── UserPool.h │ ├── WorldManager.cpp │ ├── WorldManager.h │ ├── XinfaStudySpendMgr.cpp │ └── XinfaStudySpendMgr.h ├── MenPai │ ├── DaLi.cpp │ ├── DaLi.h │ ├── EMei.cpp │ ├── EMei.h │ ├── GaiBang.cpp │ ├── GaiBang.h │ ├── MenPai.cpp │ ├── MenPai.h │ ├── MenPais.h │ ├── MingJiao.cpp │ ├── MingJiao.h │ ├── ShaoLin.cpp │ ├── ShaoLin.h │ ├── TianShan.cpp │ ├── TianShan.h │ ├── WuDang.cpp │ ├── WuDang.h │ ├── WuMenPai.cpp │ ├── WuMenPai.h │ ├── XiaoYao.cpp │ ├── XiaoYao.h │ ├── XingXiu.cpp │ └── XingXiu.h ├── Mission │ ├── Human_Mission.cpp │ ├── Human_Mission.h │ ├── MissionManager.cpp │ └── MissionManager.h ├── Obj │ ├── Attributes.h │ ├── CharacterManager.cpp │ ├── CharacterManager.h │ ├── HumanManager.cpp │ ├── HumanManager.h │ ├── ItemBoxManager.cpp │ ├── ItemBoxManager.h │ ├── ItemBoxPool.cpp │ ├── ItemBoxPool.h │ ├── MonsterManager.cpp │ ├── MonsterManager.h │ ├── MonsterPool.cpp │ ├── MonsterPool.h │ ├── Obj.cpp │ ├── Obj.h │ ├── ObjList.h │ ├── ObjManager.cpp │ ├── ObjManager.h │ ├── ObjSingleManager.cpp │ ├── ObjSingleManager.h │ ├── Obj_Character.cpp │ ├── Obj_Character.h │ ├── Obj_Character_Attributes.cpp │ ├── Obj_Character_DirtyFlag.cpp │ ├── Obj_Character_Event.cpp │ ├── Obj_Character_Impact.cpp │ ├── Obj_Character_Logic.cpp │ ├── Obj_Character_MenPai.cpp │ ├── Obj_Character_Skill.cpp │ ├── Obj_Dynamic.cpp │ ├── Obj_Dynamic.h │ ├── Obj_Human.cpp │ ├── Obj_Human.h │ ├── Obj_Human.inl │ ├── Obj_Human_AttrRefesh.cpp │ ├── Obj_Human_Attributes.cpp │ ├── Obj_Human_Calc.cpp │ ├── Obj_Human_Skill.cpp │ ├── Obj_ItemBox.cpp │ ├── Obj_ItemBox.h │ ├── Obj_ItemBox.inl │ ├── Obj_Monster.cpp │ ├── Obj_Monster.h │ ├── Obj_Monster_AttrRefesh.cpp │ ├── Obj_Monster_Attributes.cpp │ ├── Obj_Monster_Calc.cpp │ ├── Obj_Monster_Skill.cpp │ ├── Obj_Pet.cpp │ ├── Obj_Pet.h │ ├── Obj_Pet.inl │ ├── Obj_Pet_AttrRefesh.cpp │ ├── Obj_Pet_Attributes.cpp │ ├── Obj_Pet_Calc.cpp │ ├── Obj_Pet_Skill.cpp │ ├── Obj_Platform.cpp │ ├── Obj_Platform.h │ ├── Obj_Special.cpp │ ├── Obj_Special.h │ ├── Obj_Static.cpp │ ├── Obj_Static.h │ ├── PetManager.cpp │ ├── PetManager.h │ ├── PetPlacard.cpp │ ├── PetPlacard.h │ ├── PetPool.cpp │ ├── PetPool.h │ ├── PlatformManager.cpp │ ├── PlatformManager.h │ ├── PlatformPool.cpp │ ├── PlatformPool.h │ ├── SpecialManager.cpp │ ├── SpecialManager.h │ ├── SpecialPool.cpp │ └── SpecialPool.h ├── Other │ ├── BBS.cpp │ ├── BBS.h │ ├── ExchangBox.cpp │ ├── ExchangBox.h │ ├── HumanRelation.cpp │ ├── HumanRelation.h │ ├── PlayerShop.cpp │ ├── PlayerShop.h │ ├── PlayerShopDefine.h │ ├── PlayerShopManager.cpp │ ├── PlayerShopManager.h │ ├── PlayerShopPool.cpp │ ├── PlayerShopPool.h │ ├── PlayerStallBox.cpp │ ├── PlayerStallBox.h │ ├── Record.h │ ├── RecordOpt.cpp │ ├── RecordOpt.h │ ├── ShopManager.cpp │ ├── ShopManager.h │ ├── StallBox.cpp │ ├── StallBox.h │ ├── StallInfoManager.cpp │ ├── StallInfoManager.h │ ├── StoreManager.cpp │ └── StoreManager.h ├── Packets │ ├── CGApplyPirvateInfoHandler.cpp │ ├── CGAskChangeSceneHandler.cpp │ ├── CGAskDetaiXinFaListHandler.cpp │ ├── CGAskDetailAbilityInfoHandler.cpp │ ├── CGAskDetailAttribHandler.cpp │ ├── CGAskDetailEquipListHandler.cpp │ ├── CGAskDetailSkillListHandler.cpp │ ├── CGAskItemInfoHandler.cpp │ ├── CGAskJoinMenpaiHandler.cpp │ ├── CGAskLeanAbilityHandler.cpp │ ├── CGAskLockObjHandler.cpp │ ├── CGAskMailHandler.cpp │ ├── CGAskMissionDescHander.cpp │ ├── CGAskMissionListHandler.cpp │ ├── CGAskMyBagListHandler.cpp │ ├── CGAskPrivateInfoHandler.cpp │ ├── CGAskSettingHandler.cpp │ ├── CGAskStudyXinfaHandler.cpp │ ├── CGAskTeamFollowHandler.cpp │ ├── CGAskTeamInfoHandler.cpp │ ├── CGAskTeamMemberInfoHandler.cpp │ ├── CGAttackHandler.cpp │ ├── CGBBSApplyHandler.cpp │ ├── CGBBSSychMessagesHandler.cpp │ ├── CGBankAcquireListHandler.cpp │ ├── CGBankAddItemHandler.cpp │ ├── CGBankCloseHandler.cpp │ ├── CGBankMoneyHandler.cpp │ ├── CGBankRemoveItemHandler.cpp │ ├── CGBankSwapItemHandler.cpp │ ├── CGBuyHandler.cpp │ ├── CGChannelCreateHandler.cpp │ ├── CGChannelDismissHandler.cpp │ ├── CGChannelInviteHandler.cpp │ ├── CGChannelKickHandler.cpp │ ├── CGCharAllTitlesHandler.cpp │ ├── CGCharAskBaseAttribHandler.cpp │ ├── CGCharAskEquipmentHandler.cpp │ ├── CGCharCancelSkillHandler.cpp │ ├── CGCharDefaultEventHander.cpp │ ├── CGCharIdleHandler.cpp │ ├── CGCharJumpHandler.cpp │ ├── CGCharMoodStateHandler.cpp │ ├── CGCharMoveHandler.cpp │ ├── CGCharPositionWarpHandler.cpp │ ├── CGCharSitHandler.cpp │ ├── CGCharStopLogicHandler.cpp │ ├── CGCharUpdateCurTitleHandler.cpp │ ├── CGCharUseSkillHandler.cpp │ ├── CGChatHandler.cpp │ ├── CGCityAskAttrHandler.cpp │ ├── CGCommandHandler.cpp │ ├── CGConnectHandler.cpp │ ├── CGDiscardEquipHandler.cpp │ ├── CGDiscardItemHandler.cpp │ ├── CGDispelBuffReqHandler.cpp │ ├── CGDoEventHandler.cpp │ ├── CGEnterSceneHandler.cpp │ ├── CGEnvRequestHandler.cpp │ ├── CGEventRequestHander.cpp │ ├── CGExchangeApplyIHandler.cpp │ ├── CGExchangeCancelHandler.cpp │ ├── CGExchangeOkIIIHandler.cpp │ ├── CGExchangeReplyIHandler.cpp │ ├── CGExchangeSynchItemIIHandler.cpp │ ├── CGExchangeSynchLockHandler.cpp │ ├── CGExchangeSynchMoneyIIHandler.cpp │ ├── CGExecuteScriptHandler.cpp │ ├── CGFingerHandler.cpp │ ├── CGGemCompoundHandler.cpp │ ├── CGGuildApplyHandler.cpp │ ├── CGGuildHandler.cpp │ ├── CGGuildJoinHandler.cpp │ ├── CGHeartBeatHandler.cpp │ ├── CGIssuePetPlacardHandler.cpp │ ├── CGItemSynchHandler.cpp │ ├── CGLeaveSceneHandler.cpp │ ├── CGLockTargetHandler.cpp │ ├── CGMailHandler.cpp │ ├── CGManipulatePetHandler.cpp │ ├── CGMinorPasswordHandler.cpp │ ├── CGMissionAbandonHander.cpp │ ├── CGMissionAcceptHander.cpp │ ├── CGMissionCheckHandler.cpp │ ├── CGMissionContinueHander.cpp │ ├── CGMissionRefuseHander.cpp │ ├── CGMissionSubmitHander.cpp │ ├── CGModifySettingHandler.cpp │ ├── CGMoveHandler.cpp │ ├── CGMyEquipHandler.cpp │ ├── CGOpenItemBoxHander.cpp │ ├── CGOtherEquipHandler.cpp │ ├── CGPackUpPacketHandler.cpp │ ├── CGPackage_SwipItemHandle.cpp │ ├── CGPickBoxItemHandler.cpp │ ├── CGPlayerCallOfResultHandler.cpp │ ├── CGPlayerDieResultHandler.cpp │ ├── CGPlayerShopAcquireItemListHandler.cpp │ ├── CGPlayerShopAcquireShopListHandler.cpp │ ├── CGPlayerShopApplyHandler.cpp │ ├── CGPlayerShopAskForRecordHandler.cpp │ ├── CGPlayerShopBuyItemHandler.cpp │ ├── CGPlayerShopBuyShopHandler.cpp │ ├── CGPlayerShopDescHandler.cpp │ ├── CGPlayerShopEstablishHandler.cpp │ ├── CGPlayerShopFavoriteHandler.cpp │ ├── CGPlayerShopMoneyHandler.cpp │ ├── CGPlayerShopNameHandler.cpp │ ├── CGPlayerShopOnSaleHandler.cpp │ ├── CGPlayerShopOpenStallHandler.cpp │ ├── CGPlayerShopPartnerHandler.cpp │ ├── CGPlayerShopSaleOutHandler.cpp │ ├── CGPlayerShopSizeHandler.cpp │ ├── CGPlayerShopTypeHandler.cpp │ ├── CGRelationHandler.cpp │ ├── CGRemoveGemHandler.cpp │ ├── CGReqLevelUpHandler.cpp │ ├── CGReqManualAttrHandler.cpp │ ├── CGReqResetAttrHandler.cpp │ ├── CGReturnTeamFollowHandler.cpp │ ├── CGSetMoodToHeadHandler.cpp │ ├── CGSetPetAttribHandler.cpp │ ├── CGShopBuyHandler.cpp │ ├── CGShopCloseHandler.cpp │ ├── CGShopRepairHandler.cpp │ ├── CGShopSellHandler.cpp │ ├── CGSkillHandler.cpp │ ├── CGSplitItemHandler.cpp │ ├── CGStallAddItemHandler.cpp │ ├── CGStallApplyHandler.cpp │ ├── CGStallBuyHandler.cpp │ ├── CGStallCloseHandler.cpp │ ├── CGStallDefaultPageHandler.cpp │ ├── CGStallEstablishHandler.cpp │ ├── CGStallItemPriceHandler.cpp │ ├── CGStallOpenHandler.cpp │ ├── CGStallRemoveItemHandler.cpp │ ├── CGStallShopNameHandler.cpp │ ├── CGStopTeamFollowHandler.cpp │ ├── CGSystemMsgHandler.cpp │ ├── CGTeamApplyHandler.cpp │ ├── CGTeamAppointHandler.cpp │ ├── CGTeamDismissHandler.cpp │ ├── CGTeamInviteHandler.cpp │ ├── CGTeamKickHandler.cpp │ ├── CGTeamLeaderRetInviteHandler.cpp │ ├── CGTeamLeaveHandler.cpp │ ├── CGTeamRetApplyHandler.cpp │ ├── CGTeamRetInviteHandler.cpp │ ├── CGTestHandler.cpp │ ├── CGUnEquipHandler.cpp │ ├── CGUseAbilityHandler.cpp │ ├── CGUseEquipHandler.cpp │ ├── CGUseEquipSkillHandler.cpp │ ├── CGUseGemHandler.cpp │ ├── CGUseItemHandler.cpp │ ├── GCCityAttrHandler.cpp │ ├── GCCityErrorHandler.cpp │ ├── GCCityNotifyHandler.cpp │ ├── GCHandler.cpp │ ├── GGSceneNotifyHandler.cpp │ ├── GWCityApplyNewCityHandler.cpp │ ├── GWCityAskInitInfoHandler.cpp │ ├── GWCityCloseHandler.cpp │ ├── GWCityCloseSuccessHandler.cpp │ ├── GWCityOptHandler.cpp │ ├── GWHandler.cpp │ ├── SSConnectHandler.cpp │ ├── SSScenePlayerCountHandler.cpp │ ├── WGCallOfHumanHandler.cpp │ ├── WGChannelErrorHandler.cpp │ ├── WGChannelResultHandler.cpp │ ├── WGChatHandler.cpp │ ├── WGCityApplyNewCityHandler.cpp │ ├── WGCityAttrHandler.cpp │ ├── WGCityCloseHandler.cpp │ ├── WGCityCloseSuccessHandler.cpp │ ├── WGCityErrorHandler.cpp │ ├── WGCityInitInfoHandler.cpp │ ├── WGFingerHandler.cpp │ ├── WGGuildErrorHandler.cpp │ ├── WGGuildHandler.cpp │ ├── WGGuildReturnHandler.cpp │ ├── WGMailHandler.cpp │ ├── WGNotifyMailHandler.cpp │ ├── WGNotifyUserHandler.cpp │ ├── WGRelationHandler.cpp │ ├── WGRetChangeSceneHandler.cpp │ ├── WGRetSceneDataHandler.cpp │ ├── WGRetUserDataHandler.cpp │ ├── WGSystemMsgHandler.cpp │ ├── WGTeamAskApplyHandler.cpp │ ├── WGTeamAskInviteHandler.cpp │ ├── WGTeamErrorHandler.cpp │ ├── WGTeamFollowListHandler.cpp │ ├── WGTeamLeaderAskInviteHandler.cpp │ ├── WGTeamListHandler.cpp │ ├── WGTeamMemberInfoHandler.cpp │ ├── WGTeamResultHandler.cpp │ └── WGWorldTimeHandler.cpp ├── Player │ ├── GamePlayer.cpp │ ├── GamePlayer.h │ ├── IncomingPlayerManager.cpp │ ├── IncomingPlayerManager.h │ ├── Player.cpp │ ├── Player.h │ ├── PlayerManager.cpp │ ├── PlayerManager.h │ ├── PlayerPool.cpp │ ├── PlayerPool.h │ ├── RecyclePlayerManager.cpp │ ├── RecyclePlayerManager.h │ ├── ServerPlayer.cpp │ └── ServerPlayer.h ├── SMU │ ├── SMUManager.cpp │ ├── SMUManager.h │ ├── ShareMemAO.cpp │ └── ShareMemAO.h ├── Scene │ ├── AreaManager.cpp │ ├── AreaManager.h │ ├── ChatPipe.cpp │ ├── ChatPipe.h │ ├── CopySceneManager.cpp │ ├── CopySceneManager.h │ ├── DynamicSceneManager.cpp │ ├── DynamicSceneManager.h │ ├── Map.cpp │ ├── Map.h │ ├── MapUnit.h │ ├── PathFinder.cpp │ ├── PathFinder.h │ ├── Scan │ │ ├── ScanOperator_AEImpact.cpp │ │ ├── ScanOperator_AEImpact.h │ │ ├── ScanOperator_AESkill.cpp │ │ ├── ScanOperator_AESkill.h │ │ ├── ScanOperator_ActiveTeammates.cpp │ │ ├── ScanOperator_ActiveTeammates.h │ │ ├── ScanOperator_Chat.cpp │ │ ├── ScanOperator_Chat.h │ │ ├── ScanOperator_Enemy.cpp │ │ ├── ScanOperator_Enemy.h │ │ ├── ScanOperator_Teammate.cpp │ │ ├── ScanOperator_Teammate.h │ │ ├── ScanOpt_SObj_ScanChar.cpp │ │ ├── ScanOpt_SObj_ScanChar.h │ │ ├── ScanOpt_SObj_ScanTrap.cpp │ │ └── ScanOpt_SObj_ScanTrap.h │ ├── ScanOperator.cpp │ ├── ScanOperator.h │ ├── Scene.cpp │ ├── Scene.h │ ├── Scene.inl │ ├── SceneFile.h │ ├── SceneManager.cpp │ ├── SceneManager.h │ ├── ScenePlayerManager.cpp │ ├── ScenePlayerManager.h │ ├── SceneScan.cpp │ ├── SceneThread.cpp │ ├── SceneThread.h │ ├── Scene_Core.cpp │ ├── Scene_Event.cpp │ ├── Zone.cpp │ └── Zone.h ├── Script │ ├── ExportLuaFn.h │ ├── LuaFnMacro.h │ ├── LuaFnRegister.cpp │ ├── LuaFnRegister.h │ ├── LuaFnTbl_Ability.h │ ├── LuaFnTbl_Attr.h │ ├── LuaFnTbl_Battle.h │ ├── LuaFnTbl_City.h │ ├── LuaFnTbl_DoAction.h │ ├── LuaFnTbl_Guild.h │ ├── LuaFnTbl_Misc.h │ ├── LuaFnTbl_Mission.h │ ├── LuaFnTbl_Pet.h │ ├── LuaFnTbl_PetPlacard.h │ ├── LuaFnTbl_Relation.h │ ├── LuaFnTbl_Scene.h │ ├── LuaFnTbl_Shop.h │ ├── LuaFnTbl_Team.h │ ├── LuaInterface.cpp │ ├── LuaInterface.h │ ├── LuaLibDll.lib │ ├── MisBuf.h │ ├── NeedAddLuaFn.h │ ├── SceneTimer.cpp │ ├── SceneTimer.h │ ├── ScriptFuncForDesigner.h │ └── lua.lib ├── Skills │ ├── Combat_Core.cpp │ ├── Combat_Core.h │ ├── ConditionAndDeplete_Core.cpp │ ├── ConditionAndDeplete_Core.h │ ├── ImpactLogic │ │ ├── DS_Emei014.cpp │ │ ├── DS_WuDang010.cpp │ │ ├── ImpactLogic.cpp │ │ ├── ImpactLogic.h │ │ ├── SOT_Dali007.cpp │ │ ├── SOT_Dali012.cpp │ │ ├── SOT_Emei016.cpp │ │ ├── SOT_ProlongSpecificImpact.cpp │ │ ├── SOT_TianShan017.cpp │ │ ├── SOT_Unbreakable.cpp │ │ ├── SOT_XingXiu017.cpp │ │ ├── StdImpact000.cpp │ │ ├── StdImpact000.h │ │ ├── StdImpact001.cpp │ │ ├── StdImpact001.h │ │ ├── StdImpact002.cpp │ │ ├── StdImpact002.h │ │ ├── StdImpact003.cpp │ │ ├── StdImpact003.h │ │ ├── StdImpact004.cpp │ │ ├── StdImpact004.h │ │ ├── StdImpact005.cpp │ │ ├── StdImpact005.h │ │ ├── StdImpact006.cpp │ │ ├── StdImpact006.h │ │ ├── StdImpact007.cpp │ │ ├── StdImpact007.h │ │ ├── StdImpact008.cpp │ │ ├── StdImpact008.h │ │ ├── StdImpact009.cpp │ │ ├── StdImpact009.h │ │ ├── StdImpact010.cpp │ │ ├── StdImpact010.h │ │ ├── StdImpact011.cpp │ │ ├── StdImpact011.h │ │ ├── StdImpact012.cpp │ │ ├── StdImpact012.h │ │ ├── StdImpact013.cpp │ │ ├── StdImpact013.h │ │ ├── StdImpact014.cpp │ │ ├── StdImpact014.h │ │ ├── StdImpact015.cpp │ │ ├── StdImpact015.h │ │ ├── StdImpact016.cpp │ │ ├── StdImpact016.h │ │ ├── StdImpact017.cpp │ │ ├── StdImpact017.h │ │ ├── StdImpact018.cpp │ │ ├── StdImpact018.h │ │ ├── StdImpact019.cpp │ │ ├── StdImpact019.h │ │ ├── StdImpact020.cpp │ │ ├── StdImpact020.h │ │ ├── StdImpact021.cpp │ │ ├── StdImpact021.h │ │ ├── StdImpact022.cpp │ │ ├── StdImpact022.h │ │ ├── StdImpact023.cpp │ │ ├── StdImpact023.h │ │ ├── StdImpact024.cpp │ │ ├── StdImpact024.h │ │ ├── StdImpact025.cpp │ │ ├── StdImpact025.h │ │ ├── StdImpact026.cpp │ │ ├── StdImpact026.h │ │ ├── StdImpact027.cpp │ │ ├── StdImpact027.h │ │ ├── StdImpact028.cpp │ │ ├── StdImpact028.h │ │ ├── StdImpact029.cpp │ │ ├── StdImpact029.h │ │ ├── StdImpact030.cpp │ │ ├── StdImpact030.h │ │ ├── StdImpact031.cpp │ │ ├── StdImpact031.h │ │ ├── StdImpact032.cpp │ │ ├── StdImpact032.h │ │ ├── StdImpact033.cpp │ │ ├── StdImpact033.h │ │ ├── StdImpact034.cpp │ │ ├── StdImpact034.h │ │ ├── StdImpact035.cpp │ │ ├── StdImpact035.h │ │ ├── StdImpact036.cpp │ │ ├── StdImpact036.h │ │ ├── StdImpact037.cpp │ │ ├── StdImpact037.h │ │ ├── StdImpact038.cpp │ │ ├── StdImpact038.h │ │ ├── StdImpact039.cpp │ │ ├── StdImpact039.h │ │ ├── StdImpact040.cpp │ │ ├── StdImpact040.h │ │ ├── StdImpact041.cpp │ │ ├── StdImpact041.h │ │ ├── StdImpact042.cpp │ │ ├── StdImpact042.h │ │ ├── StdImpact043.cpp │ │ ├── StdImpact043.h │ │ ├── StdImpact044.cpp │ │ ├── StdImpact044.h │ │ ├── StdImpact045.cpp │ │ ├── StdImpact045.h │ │ ├── StdImpact046.cpp │ │ ├── StdImpact046.h │ │ ├── StdImpact047.cpp │ │ ├── StdImpact047.h │ │ ├── StdImpact048.cpp │ │ ├── StdImpact048.h │ │ ├── StdImpact049.cpp │ │ ├── StdImpact049.h │ │ ├── StdImpact050.cpp │ │ ├── StdImpact050.h │ │ ├── StdImpact051.cpp │ │ ├── StdImpact051.h │ │ ├── StdImpact052.cpp │ │ ├── StdImpact052.h │ │ ├── StdImpact053.cpp │ │ ├── StdImpact053.h │ │ ├── StdImpact054.cpp │ │ ├── StdImpact054.h │ │ ├── StdImpact055.cpp │ │ ├── StdImpact055.h │ │ ├── StdImpact056.cpp │ │ ├── StdImpact056.h │ │ ├── StdImpact057.cpp │ │ └── StdImpact057.h │ ├── ImpactLogics.cpp │ ├── ImpactLogics.h │ ├── Impact_Core.cpp │ ├── Impact_Core.h │ ├── LogicManager.cpp │ ├── LogicManager.h │ ├── RelationshipChecker.cpp │ ├── RelationshipChecker.h │ ├── ScriptLogic.cpp │ ├── ScriptLogic.h │ ├── SkillInfo.cpp │ ├── SkillInfo.h │ ├── SkillLogic │ │ ├── ArmorMastery.cpp │ │ ├── ArmorMastery.h │ │ ├── Common │ │ │ ├── CommonSkill001.cpp │ │ │ ├── CommonSkill001.h │ │ │ ├── CommonSkill002.cpp │ │ │ ├── CommonSkill002.h │ │ │ ├── CommonSkill003.cpp │ │ │ └── CommonSkill003.h │ │ ├── Human │ │ │ ├── DaLiSkill001.cpp │ │ │ ├── DaLiSkill001.h │ │ │ ├── DaLiSkill007.cpp │ │ │ ├── DaLiSkill014.cpp │ │ │ ├── EMeiSkill001.cpp │ │ │ ├── EMeiSkill001.h │ │ │ ├── GaiBangSkill001.cpp │ │ │ ├── GaiBangSkill001.h │ │ │ ├── GaiBangSkill002.cpp │ │ │ ├── GaiBangSkill004.cpp │ │ │ ├── GaiBangSkill014.cpp │ │ │ ├── MingJiaoSkill001.cpp │ │ │ ├── MingJiaoSkill001.h │ │ │ ├── MingJiaoSkill002.cpp │ │ │ ├── MingJiaoSkill002.h │ │ │ ├── ShaoLinSKill002.cpp │ │ │ ├── ShaoLinSKill007.cpp │ │ │ ├── TianShanSkill001.cpp │ │ │ ├── TianShanSkill001.h │ │ │ ├── TianShanSkill009.cpp │ │ │ ├── TianShanSkill010.cpp │ │ │ ├── TianShanSkill013.cpp │ │ │ ├── WuDangSkill001.cpp │ │ │ ├── WuDangSkill001.h │ │ │ ├── XiaoYaoSkill001.cpp │ │ │ ├── XiaoYaoSkill001.h │ │ │ ├── XiaoYaoSkill002.cpp │ │ │ ├── XiaoYaoSkill002.h │ │ │ ├── XiaoYaoSkill016.cpp │ │ │ └── XingXiuSkill008.cpp │ │ ├── ImpactsToTarget.cpp │ │ ├── ImpactsToTarget.h │ │ ├── ImpactsToTargetAndSelf.cpp │ │ ├── ImpactsToTargetAndSelf.h │ │ ├── Item │ │ │ ├── GeneralItem.lua │ │ │ └── HorseRide.lua │ │ ├── Pet │ │ │ ├── PetSkill001.cpp │ │ │ └── PetSkill001.h │ │ ├── SkillLogic.cpp │ │ ├── SkillLogic.h │ │ ├── TeleportAndImpacts.cpp │ │ ├── TeleportAndImpacts.h │ │ ├── WeaponMastery.cpp │ │ └── WeaponMastery.h │ ├── SkillLogics.cpp │ ├── SkillLogics.h │ ├── Skill_Core.cpp │ ├── Skill_Core.h │ ├── SpecialObjLogic │ │ ├── ExplosionTrap01.cpp │ │ ├── ExplosionTrap02.cpp │ │ ├── ExplosionTrap03.cpp │ │ ├── RootTrap01.cpp │ │ ├── SpecialObjLogic.cpp │ │ ├── SpecialObjLogic.h │ │ ├── TotemLogic.cpp │ │ ├── TotemLogic.h │ │ ├── TrapLogic.cpp │ │ └── TrapLogic.h │ ├── SpecialObjLogics.h │ ├── TargetChecker.cpp │ ├── TargetChecker.h │ ├── TargetingAndDepletingParams.cpp │ └── TargetingAndDepletingParams.h ├── Team │ ├── Team.cpp │ ├── Team.h │ └── Team.inl ├── stdafx.cpp └── stdafx.h ├── FKSvr2ShareMemory ├── DB │ ├── ShareDBManager.cpp │ └── ShareDBManager.h ├── FKSvr2ShareMemory.vcproj ├── Main │ ├── CommandThread.cpp │ ├── CommandThread.h │ ├── SMConfig.cpp │ ├── SMConfig.h │ ├── ShareMemory.cpp │ └── ShareMemory.h ├── ShareData │ ├── SMULogicManager.cpp │ └── SMULogicManager.h ├── stdafx.cpp └── stdafx.h ├── FKSvr2World ├── FKSvr2World.vcproj ├── Main │ ├── Player.cpp │ ├── Player.h │ ├── PlayerManager.cpp │ ├── PlayerManager.h │ ├── PlayerPool.cpp │ ├── PlayerPool.h │ ├── ServerManager.cpp │ ├── ServerManager.h │ ├── ServerPlayer.cpp │ ├── ServerPlayer.h │ ├── ShareMemManager.cpp │ ├── ShareMemManager.h │ ├── World.cpp │ ├── World.h │ ├── WorldTable.cpp │ └── WorldTable.h ├── Packets │ ├── GGSceneNotifyHandler.cpp │ ├── GSAskDataHandler.cpp │ ├── GWAskChangeSceneHandler.cpp │ ├── GWAskMailHandler.cpp │ ├── GWAskSceneDataHandler.cpp │ ├── GWAskTeamInfoHandler.cpp │ ├── GWAskTeamMemberInfoHandler.cpp │ ├── GWAskUserDataHandler.cpp │ ├── GWBatchMailHandler.cpp │ ├── GWCallOfHumanHandler.cpp │ ├── GWChangeMenpaiHandler.cpp │ ├── GWChannelCreateHandler.cpp │ ├── GWChannelDismissHandler.cpp │ ├── GWChannelInviteHandler.cpp │ ├── GWChannelKickHandler.cpp │ ├── GWChatHandler.cpp │ ├── GWCityApplyNewCityHandler.cpp │ ├── GWCityAskInitInfoHandler.cpp │ ├── GWCityCloseHandler.cpp │ ├── GWCityCloseSuccessHandler.cpp │ ├── GWCityOptHandler.cpp │ ├── GWCommandHandler.cpp │ ├── GWEnterTeamFollowHandler.cpp │ ├── GWFingerHandler.cpp │ ├── GWGuildHandler.cpp │ ├── GWHeartBeatHandler.cpp │ ├── GWLevelUpHandler.cpp │ ├── GWMailHandler.cpp │ ├── GWNotifyUserHandler.cpp │ ├── GWRelationHandler.cpp │ ├── GWStopTeamFollowHandler.cpp │ ├── GWSystemMsgHandler.cpp │ ├── GWTeamApplyHandler.cpp │ ├── GWTeamAppointHandler.cpp │ ├── GWTeamDismissHandler.cpp │ ├── GWTeamInviteHandler.cpp │ ├── GWTeamKickHandler.cpp │ ├── GWTeamLeaderRetInviteHandler.cpp │ ├── GWTeamLeaveHandler.cpp │ ├── GWTeamMemberEnterSceneHandler.cpp │ ├── GWTeamRetApplyHandler.cpp │ ├── GWTeamRetInviteHandler.cpp │ ├── GWUpdateTitleHandler.cpp │ ├── LWAskCharLoginHandler.cpp │ ├── LWAskDeleteCharHandler.cpp │ ├── SGRetDataHandler.cpp │ ├── SSConnectHandler.cpp │ ├── SSScenePlayerCountHandler.cpp │ ├── WGHandler.cpp │ └── WLHandler.cpp ├── WorldData │ ├── AllUser.cpp │ ├── AllUser.h │ ├── ChatCenter.cpp │ ├── ChatCenter.h │ ├── City.cpp │ ├── City.h │ ├── CityManager.cpp │ ├── CityManager.h │ ├── Guild.cpp │ ├── Guild.h │ ├── GuildManager.cpp │ ├── GuildManager.h │ ├── MailCenter.cpp │ ├── MailCenter.h │ ├── MailDefine.cpp │ ├── MailDefine.h │ ├── MailPool.cpp │ ├── MailPool.h │ ├── OnlineUser.cpp │ ├── OnlineUser.h │ ├── SceneInfo.cpp │ ├── SceneInfo.h │ ├── Team.cpp │ ├── Team.h │ ├── User.cpp │ ├── User.h │ ├── User.inl │ ├── WorldTimeInfo.cpp │ └── WorldTimeInfo.h ├── stdafx.cpp └── stdafx.h └── README.md /FKFoxLuaScript/FKFoxLuaScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKFoxLuaScript/FKFoxLuaScript.cpp -------------------------------------------------------------------------------- /FKFoxLuaScript/FKFoxLuaScript.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKFoxLuaScript/FKFoxLuaScript.vcproj -------------------------------------------------------------------------------- /FKSvr2Billing/FKSvr2Billing.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/FKSvr2Billing.vcproj -------------------------------------------------------------------------------- /FKSvr2Billing/Main/Billing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/Billing.cpp -------------------------------------------------------------------------------- /FKSvr2Billing/Main/Billing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/Billing.h -------------------------------------------------------------------------------- /FKSvr2Billing/Main/DBManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/DBManager.cpp -------------------------------------------------------------------------------- /FKSvr2Billing/Main/DBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/DBManager.h -------------------------------------------------------------------------------- /FKSvr2Billing/Main/DBTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/DBTypes.h -------------------------------------------------------------------------------- /FKSvr2Billing/Main/ODBCInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/ODBCInterface.cpp -------------------------------------------------------------------------------- /FKSvr2Billing/Main/ODBCInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/ODBCInterface.h -------------------------------------------------------------------------------- /FKSvr2Billing/Main/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/Player.cpp -------------------------------------------------------------------------------- /FKSvr2Billing/Main/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/Player.h -------------------------------------------------------------------------------- /FKSvr2Billing/Main/PlayerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/PlayerManager.cpp -------------------------------------------------------------------------------- /FKSvr2Billing/Main/PlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/PlayerManager.h -------------------------------------------------------------------------------- /FKSvr2Billing/Main/PlayerPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/PlayerPool.cpp -------------------------------------------------------------------------------- /FKSvr2Billing/Main/PlayerPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/PlayerPool.h -------------------------------------------------------------------------------- /FKSvr2Billing/Main/ServerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/ServerManager.cpp -------------------------------------------------------------------------------- /FKSvr2Billing/Main/ServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/ServerManager.h -------------------------------------------------------------------------------- /FKSvr2Billing/Main/ServerPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/ServerPlayer.cpp -------------------------------------------------------------------------------- /FKSvr2Billing/Main/ServerPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/ServerPlayer.h -------------------------------------------------------------------------------- /FKSvr2Billing/Main/UserDBManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/UserDBManager.cpp -------------------------------------------------------------------------------- /FKSvr2Billing/Main/UserDBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/UserDBManager.h -------------------------------------------------------------------------------- /FKSvr2Billing/Main/WebPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/WebPlayer.cpp -------------------------------------------------------------------------------- /FKSvr2Billing/Main/WebPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/Main/WebPlayer.h -------------------------------------------------------------------------------- /FKSvr2Billing/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/stdafx.cpp -------------------------------------------------------------------------------- /FKSvr2Billing/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Billing/stdafx.h -------------------------------------------------------------------------------- /FKSvr2Common/Assertx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Assertx.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Assertx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Assertx.h -------------------------------------------------------------------------------- /FKSvr2Common/BaseType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/BaseType.h -------------------------------------------------------------------------------- /FKSvr2Common/BuffImpactMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/BuffImpactMgr.cpp -------------------------------------------------------------------------------- /FKSvr2Common/BuffImpactMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/BuffImpactMgr.h -------------------------------------------------------------------------------- /FKSvr2Common/CampDataMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/CampDataMgr.cpp -------------------------------------------------------------------------------- /FKSvr2Common/CampDataMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/CampDataMgr.h -------------------------------------------------------------------------------- /FKSvr2Common/Chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Chain.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Chain.h -------------------------------------------------------------------------------- /FKSvr2Common/Combat/CampAndStand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Combat/CampAndStand.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Combat/CampAndStand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Combat/CampAndStand.h -------------------------------------------------------------------------------- /FKSvr2Common/Combat/DataRecords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Combat/DataRecords.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Combat/DataRecords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Combat/DataRecords.h -------------------------------------------------------------------------------- /FKSvr2Common/Combat/SpecialObjData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Combat/SpecialObjData.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Combat/TemplateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Combat/TemplateManager.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Combat/TemplateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Combat/TemplateManager.h -------------------------------------------------------------------------------- /FKSvr2Common/DB_Struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/DB_Struct.cpp -------------------------------------------------------------------------------- /FKSvr2Common/DB_Struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/DB_Struct.h -------------------------------------------------------------------------------- /FKSvr2Common/DataBase/TLBB_DBC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/DataBase/TLBB_DBC.cpp -------------------------------------------------------------------------------- /FKSvr2Common/DataBase/TLBB_DBC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/DataBase/TLBB_DBC.h -------------------------------------------------------------------------------- /FKSvr2Common/DirectlyImpactMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/DirectlyImpactMgr.cpp -------------------------------------------------------------------------------- /FKSvr2Common/DirectlyImpactMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/DirectlyImpactMgr.h -------------------------------------------------------------------------------- /FKSvr2Common/FileDataMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/FileDataMgr.cpp -------------------------------------------------------------------------------- /FKSvr2Common/FileDataMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/FileDataMgr.h -------------------------------------------------------------------------------- /FKSvr2Common/GameDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameDefine.h -------------------------------------------------------------------------------- /FKSvr2Common/GameDefine2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameDefine2.h -------------------------------------------------------------------------------- /FKSvr2Common/GameDefine_Attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameDefine_Attr.h -------------------------------------------------------------------------------- /FKSvr2Common/GameDefine_City.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameDefine_City.h -------------------------------------------------------------------------------- /FKSvr2Common/GameDefine_Guild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameDefine_Guild.h -------------------------------------------------------------------------------- /FKSvr2Common/GameDefine_Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameDefine_Item.h -------------------------------------------------------------------------------- /FKSvr2Common/GameDefine_PlayerShop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameDefine_PlayerShop.h -------------------------------------------------------------------------------- /FKSvr2Common/GameDefine_Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameDefine_Result.cpp -------------------------------------------------------------------------------- /FKSvr2Common/GameDefine_Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameDefine_Result.h -------------------------------------------------------------------------------- /FKSvr2Common/GameDefine_Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameDefine_Scene.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct.cpp -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Camp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Camp.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_City.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_City.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Finger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Finger.cpp -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Finger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Finger.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Guild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Guild.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Impact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Impact.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Item.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_MinorPasswd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_MinorPasswd.cpp -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_MinorPasswd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_MinorPasswd.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Pet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Pet.cpp -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Pet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Pet.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Relation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Relation.cpp -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Relation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Relation.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Scene.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Script.cpp -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Script.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Skill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Skill.h -------------------------------------------------------------------------------- /FKSvr2Common/GameStruct_Team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameStruct_Team.h -------------------------------------------------------------------------------- /FKSvr2Common/GameUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameUtil.cpp -------------------------------------------------------------------------------- /FKSvr2Common/GameUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/GameUtil.h -------------------------------------------------------------------------------- /FKSvr2Common/KeyDog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/KeyDog.h -------------------------------------------------------------------------------- /FKSvr2Common/KeyDog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/KeyDog.lib -------------------------------------------------------------------------------- /FKSvr2Common/Net/FileAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/FileAPI.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Net/FileAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/FileAPI.h -------------------------------------------------------------------------------- /FKSvr2Common/Net/Packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/Packet.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Net/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/Packet.h -------------------------------------------------------------------------------- /FKSvr2Common/Net/ServerSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/ServerSocket.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Net/ServerSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/ServerSocket.h -------------------------------------------------------------------------------- /FKSvr2Common/Net/Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/Socket.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Net/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/Socket.h -------------------------------------------------------------------------------- /FKSvr2Common/Net/SocketAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/SocketAPI.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Net/SocketAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/SocketAPI.h -------------------------------------------------------------------------------- /FKSvr2Common/Net/SocketInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/SocketInputStream.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Net/SocketInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/SocketInputStream.h -------------------------------------------------------------------------------- /FKSvr2Common/Net/SocketOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/SocketOutputStream.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Net/SocketOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Net/SocketOutputStream.h -------------------------------------------------------------------------------- /FKSvr2Common/OResultDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/OResultDef.h -------------------------------------------------------------------------------- /FKSvr2Common/PacketDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/PacketDefine.h -------------------------------------------------------------------------------- /FKSvr2Common/PacketFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/PacketFactory.h -------------------------------------------------------------------------------- /FKSvr2Common/PacketFactoryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/PacketFactoryManager.cpp -------------------------------------------------------------------------------- /FKSvr2Common/PacketFactoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/PacketFactoryManager.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/BLRetAuth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/BLRetAuth.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/BLRetAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/BLRetAuth.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/BWConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/BWConnect.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/BWConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/BWConnect.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/BWValidateUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/BWValidateUser.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/BWValidateUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/BWValidateUser.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskChangeScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskChangeScene.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskItemInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskItemInfo.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskItemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskItemInfo.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskJoinMenpai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskJoinMenpai.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskLeanAbility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskLeanAbility.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskLockObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskLockObj.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskLockObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskLockObj.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskMail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskMail.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskMail.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskMissionDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskMissionDesc.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskMissionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskMissionList.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskMyBagList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskMyBagList.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskMyBagList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskMyBagList.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskPrivateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskPrivateInfo.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskSetting.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskSetting.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskStudyXinfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskStudyXinfa.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskTeamFollow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskTeamFollow.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskTeamInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskTeamInfo.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAskTeamInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAskTeamInfo.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAttack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAttack.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGAttack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGAttack.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGBBSApply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGBBSApply.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGBBSApply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGBBSApply.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGBankAddItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGBankAddItem.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGBankAddItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGBankAddItem.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGBankClose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGBankClose.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGBankClose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGBankClose.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGBankMoney.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGBankMoney.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGBankMoney.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGBankMoney.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGBankRemoveItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGBankRemoveItem.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGBankSwapItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGBankSwapItem.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGBankSwapItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGBankSwapItem.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGChannelCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGChannelCreate.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGChannelDismiss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGChannelDismiss.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGChannelInvite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGChannelInvite.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGChannelKick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGChannelKick.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGChannelKick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGChannelKick.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharAllTitles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharAllTitles.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharIdle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharIdle.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharIdle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharIdle.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharJump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharJump.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharJump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharJump.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharMoodState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharMoodState.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharMove.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharMove.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharSit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharSit.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharSit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharSit.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharStopLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharStopLogic.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharUseSkill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharUseSkill.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCharUseSkill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCharUseSkill.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGChat.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGChat.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCityAskAttr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCityAskAttr.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCityAskAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCityAskAttr.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCommand.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGCommand.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGConnect.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGConnect.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGDiscardEquip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGDiscardEquip.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGDiscardEquip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGDiscardEquip.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGDiscardItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGDiscardItem.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGDiscardItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGDiscardItem.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGDispelBuffReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGDispelBuffReq.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGDoEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGDoEvent.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGDoEvnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGDoEvnet.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGEnterScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGEnterScene.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGEnterScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGEnterScene.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGEnvRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGEnvRequest.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGFinger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGFinger.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGFinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGFinger.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGGemCompound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGGemCompound.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGGuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGGuild.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGGuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGGuild.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGGuildApply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGGuildApply.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGGuildJoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGGuildJoin.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGGuildJoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGGuildJoin.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGHeartBeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGHeartBeat.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGHeartBeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGHeartBeat.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGItemSynch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGItemSynch.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGItemSynch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGItemSynch.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGLeaveScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGLeaveScene.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGLockTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGLockTarget.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGMail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGMail.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGMail.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGMinorPasswd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGMinorPasswd.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGOpenItemBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGOpenItemBox.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGOtherEquip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGOtherEquip.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGPickBoxItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGPickBoxItem.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGRelation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGRelation.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGRelation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGRelation.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGRemoveGem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGRemoveGem.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGRemoveGem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGRemoveGem.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGReqLevelUp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGReqLevelUp.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGShopBuy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGShopBuy.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGShopBuy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGShopBuy.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGShopBuySold.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGShopBuySold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGShopBuySold.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGShopClose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGShopClose.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGShopClose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGShopClose.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGShopRepair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGShopRepair.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGShopSell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGShopSell.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGShopSell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGShopSell.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGSkill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGSkill.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGSkill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGSkill.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGSplitItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGSplitItem.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGSplitItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGSplitItem.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGStallApply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGStallApply.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGStallBuy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGStallBuy.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGStallBuy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGStallBuy.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGStallClose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGStallClose.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGStallOpen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGStallOpen.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGStallOpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGStallOpen.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGTeamApply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGTeamApply.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGTeamApply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGTeamApply.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGTeamAppoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGTeamAppoint.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGTeamDismiss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGTeamDismiss.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGTeamInvite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGTeamInvite.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGTeamKick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGTeamKick.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGTeamKick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGTeamKick.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGTeamLeave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGTeamLeave.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGTeamLeave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGTeamLeave.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGTest.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGTest.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGUnEquip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGUnEquip.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGUnEquip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGUnEquip.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGUseAbility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGUseAbility.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGUseEquip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGUseEquip.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGUseEquip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGUseEquip.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGUseGem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGUseGem.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGUseGem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGUseGem.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGUseItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGUseItem.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CGUseItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CGUseItem.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CLAskCharList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CLAskCharList.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CLAskLogin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CLAskLogin.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CLAskLogin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CLAskLogin.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CLConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CLConnect.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/CLConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/CLConnect.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCAbilityExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCAbilityExp.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCAbilitySucc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCAbilitySucc.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCAddLockObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCAddLockObj.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCArrive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCArrive.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCArrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCArrive.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCAttack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCAttack.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCAttack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCAttack.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCBBSMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCBBSMessages.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCBankAddItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCBankAddItem.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCBankBegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCBankBegin.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCBankBegin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCBankBegin.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCBankMoney.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCBankMoney.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCBankMoney.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCBankMoney.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCBoxItemList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCBoxItemList.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCharAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCharAction.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCharBUFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCharBUFF.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCharBUFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCharBUFF.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCharIdle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCharIdle.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCharIdle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCharIdle.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCharJump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCharJump.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCharJump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCharJump.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCharMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCharMove.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCharMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCharMove.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCChat.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCChat.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCityAttr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCityAttr.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCityAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCityAttr.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCityError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCityError.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCityError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCityError.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCCityNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCCityNotify.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCConnect.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCConnect.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCDelObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCDelObject.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCDelObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCDelObject.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCDetailBUFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCDetailBUFF.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCDie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCDie.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCDie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCDie.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCEnterScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCEnterScene.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCErrorAttack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCErrorAttack.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCErrorSkill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCErrorSkill.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCFinger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCFinger.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCFinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCFinger.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCGuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCGuild.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCGuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCGuild.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCGuildApply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCGuildApply.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCGuildError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCGuildError.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCGuildReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCGuildReturn.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCItemInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCItemInfo.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCItemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCItemInfo.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCItemList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCItemList.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCItemList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCItemList.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCItemSynch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCItemSynch.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCItemSynch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCItemSynch.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCJoinMenpai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCJoinMenpai.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCLeaveScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCLeaveScene.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCLevelUp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCLevelUp.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCLevelUp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCLevelUp.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCMail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCMail.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCMail.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCMenpaiInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCMenpaiInfo.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCMinorPasswd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCMinorPasswd.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCMissionAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCMissionAdd.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCMissionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCMissionList.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCModifySpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCModifySpeed.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCMyBagList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCMyBagList.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCMyBagList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCMyBagList.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewItem.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewItem.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewItemBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewItemBox.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewMonster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewMonster.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewPet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewPet.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewPet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewPet.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewPet_Move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewPet_Move.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewPlatform.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewPlayer.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewPlayer.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewPortal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewPortal.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewPortal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewPortal.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewSkillObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewSkillObj.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNewSpecial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNewSpecial.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNotifyEquip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNotifyEquip.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCNotifyMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCNotifyMail.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCObjTeleport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCObjTeleport.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCOtherAttack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCOtherAttack.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCOtherEquip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCOtherEquip.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCOtherSkill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCOtherSkill.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCPickResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCPickResult.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCPlayerDie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCPlayerDie.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCPlayerDie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCPlayerDie.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCPrivateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCPrivateInfo.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCRelation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCRelation.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCRelation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCRelation.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCRemovePet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCRemovePet.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCRemovePet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCRemovePet.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCRetSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCRetSetting.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCShopBuy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCShopBuy.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCShopBuy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCShopBuy.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCShopRepair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCShopRepair.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCShopSell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCShopSell.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCShopSell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCShopSell.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCSkill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCSkill.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCSkill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCSkill.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCStallApply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCStallApply.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCStallBuy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCStallBuy.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCStallBuy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCStallBuy.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCStallClose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCStallClose.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCStallError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCStallError.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCStallOpen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCStallOpen.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCStallOpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCStallOpen.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCStudyXinfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCStudyXinfa.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCSystemMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCSystemMsg.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCSystemMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCSystemMsg.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCTeamError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCTeamError.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCTeamError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCTeamError.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCTeamList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCTeamList.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCTeamList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCTeamList.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCTeamResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCTeamResult.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCTest.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCTest.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCUICommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCUICommand.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCUICommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCUICommand.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCWorldTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCWorldTime.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GCWorldTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GCWorldTime.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GGSceneNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GGSceneNotify.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GSAskData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GSAskData.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GSAskData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GSAskData.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWAskMail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWAskMail.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWAskMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWAskMail.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWAskTeamInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWAskTeamInfo.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWAskUserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWAskUserData.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWBatchMail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWBatchMail.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWBatchMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWBatchMail.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWCallOfHuman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWCallOfHuman.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWChannelKick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWChannelKick.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWChat.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWChat.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWCityClose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWCityClose.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWCityClose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWCityClose.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWCityOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWCityOpt.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWCityOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWCityOpt.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWCommand.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWCommand.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWFinger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWFinger.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWFinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWFinger.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWGuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWGuild.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWGuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWGuild.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWHeartBeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWHeartBeat.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWHeartBeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWHeartBeat.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWLevelUp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWLevelUp.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWLevelUp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWLevelUp.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWMail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWMail.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWMail.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWNotifyUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWNotifyUser.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWRelation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWRelation.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWRelation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWRelation.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWSystemMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWSystemMsg.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWSystemMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWSystemMsg.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWTeamApply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWTeamApply.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWTeamApply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWTeamApply.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWTeamAppoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWTeamAppoint.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWTeamDismiss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWTeamDismiss.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWTeamInvite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWTeamInvite.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWTeamKick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWTeamKick.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWTeamKick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWTeamKick.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWTeamLeave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWTeamLeave.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWTeamLeave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWTeamLeave.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/GWUpdateTitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/GWUpdateTitle.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/LBAskAuth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/LBAskAuth.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/LBAskAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/LBAskAuth.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/LCRetCharList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/LCRetCharList.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/LCRetConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/LCRetConnect.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/LCRetLogin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/LCRetLogin.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/LCRetLogin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/LCRetLogin.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/LCStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/LCStatus.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/LCStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/LCStatus.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/SGRetData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/SGRetData.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/SGRetData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/SGRetData.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/SSConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/SSConnect.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/SSConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/SSConnect.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGCallOfHuman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGCallOfHuman.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGChat.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGChat.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGCityAttr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGCityAttr.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGCityAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGCityAttr.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGCityClose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGCityClose.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGCityClose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGCityClose.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGCityError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGCityError.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGCityError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGCityError.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGFinger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGFinger.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGFinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGFinger.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGGuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGGuild.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGGuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGGuild.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGGuildError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGGuildError.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGGuildReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGGuildReturn.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGMail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGMail.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGMail.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGNotifyMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGNotifyMail.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGNotifyUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGNotifyUser.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGRelation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGRelation.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGRelation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGRelation.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGRetUserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGRetUserData.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGSystemMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGSystemMsg.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGSystemMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGSystemMsg.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGTeamError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGTeamError.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGTeamError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGTeamError.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGTeamList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGTeamList.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGTeamList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGTeamList.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGTeamResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGTeamResult.h -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGWorldTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGWorldTime.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Packets/WGWorldTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Packets/WGWorldTime.h -------------------------------------------------------------------------------- /FKSvr2Common/PlayerStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/PlayerStatus.h -------------------------------------------------------------------------------- /FKSvr2Common/Rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Rand.cpp -------------------------------------------------------------------------------- /FKSvr2Common/Rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Rand.h -------------------------------------------------------------------------------- /FKSvr2Common/ResultDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/ResultDefine.h -------------------------------------------------------------------------------- /FKSvr2Common/ScriptCommandStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/ScriptCommandStruct.cpp -------------------------------------------------------------------------------- /FKSvr2Common/ScriptCommandStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/ScriptCommandStruct.h -------------------------------------------------------------------------------- /FKSvr2Common/ShareMemAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/ShareMemAPI.cpp -------------------------------------------------------------------------------- /FKSvr2Common/ShareMemAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/ShareMemAPI.h -------------------------------------------------------------------------------- /FKSvr2Common/SkillDataMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/SkillDataMgr.cpp -------------------------------------------------------------------------------- /FKSvr2Common/SkillDataMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/SkillDataMgr.h -------------------------------------------------------------------------------- /FKSvr2Common/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Common/Type.h -------------------------------------------------------------------------------- /FKSvr2Login/DB/CharConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/DB/CharConfig.cpp -------------------------------------------------------------------------------- /FKSvr2Login/DB/CharConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/DB/CharConfig.h -------------------------------------------------------------------------------- /FKSvr2Login/DB/DBLogicManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/DB/DBLogicManager.cpp -------------------------------------------------------------------------------- /FKSvr2Login/DB/DBLogicManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/DB/DBLogicManager.h -------------------------------------------------------------------------------- /FKSvr2Login/DB/DBThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/DB/DBThread.cpp -------------------------------------------------------------------------------- /FKSvr2Login/DB/DBThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/DB/DBThread.h -------------------------------------------------------------------------------- /FKSvr2Login/DB/DBThreadManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/DB/DBThreadManager.cpp -------------------------------------------------------------------------------- /FKSvr2Login/DB/DBThreadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/DB/DBThreadManager.h -------------------------------------------------------------------------------- /FKSvr2Login/DB/LoginDBManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/DB/LoginDBManager.cpp -------------------------------------------------------------------------------- /FKSvr2Login/DB/LoginDBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/DB/LoginDBManager.h -------------------------------------------------------------------------------- /FKSvr2Login/FKSvr2Login.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/FKSvr2Login.vcproj -------------------------------------------------------------------------------- /FKSvr2Login/Main/ConnectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/ConnectManager.cpp -------------------------------------------------------------------------------- /FKSvr2Login/Main/ConnectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/ConnectManager.h -------------------------------------------------------------------------------- /FKSvr2Login/Main/Login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/Login.cpp -------------------------------------------------------------------------------- /FKSvr2Login/Main/Login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/Login.h -------------------------------------------------------------------------------- /FKSvr2Login/Main/LoginMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/LoginMain.cpp -------------------------------------------------------------------------------- /FKSvr2Login/Main/LoginMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/LoginMain.h -------------------------------------------------------------------------------- /FKSvr2Login/Main/ServerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/ServerManager.cpp -------------------------------------------------------------------------------- /FKSvr2Login/Main/ServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/ServerManager.h -------------------------------------------------------------------------------- /FKSvr2Login/Main/ServerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/ServerThread.cpp -------------------------------------------------------------------------------- /FKSvr2Login/Main/ServerThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/ServerThread.h -------------------------------------------------------------------------------- /FKSvr2Login/Main/ThreadManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/ThreadManager.cpp -------------------------------------------------------------------------------- /FKSvr2Login/Main/ThreadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Main/ThreadManager.h -------------------------------------------------------------------------------- /FKSvr2Login/Player/LoginPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Player/LoginPlayer.cpp -------------------------------------------------------------------------------- /FKSvr2Login/Player/LoginPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Player/LoginPlayer.h -------------------------------------------------------------------------------- /FKSvr2Login/Player/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Player/Player.cpp -------------------------------------------------------------------------------- /FKSvr2Login/Player/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Player/Player.h -------------------------------------------------------------------------------- /FKSvr2Login/Player/PlayerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Player/PlayerManager.cpp -------------------------------------------------------------------------------- /FKSvr2Login/Player/PlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Player/PlayerManager.h -------------------------------------------------------------------------------- /FKSvr2Login/Player/PlayerPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Player/PlayerPool.cpp -------------------------------------------------------------------------------- /FKSvr2Login/Player/PlayerPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Player/PlayerPool.h -------------------------------------------------------------------------------- /FKSvr2Login/Player/ServerPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Player/ServerPlayer.cpp -------------------------------------------------------------------------------- /FKSvr2Login/Player/ServerPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Player/ServerPlayer.h -------------------------------------------------------------------------------- /FKSvr2Login/Player/TurnPlayerQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Player/TurnPlayerQueue.h -------------------------------------------------------------------------------- /FKSvr2Login/Process/ProcessManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/Process/ProcessManager.h -------------------------------------------------------------------------------- /FKSvr2Login/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/stdafx.cpp -------------------------------------------------------------------------------- /FKSvr2Login/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Login/stdafx.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/AIScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AIScript.cpp -------------------------------------------------------------------------------- /FKSvr2Server/AI/AIScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AIScript.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/AIScriptDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AIScriptDef.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/AIScriptFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AIScriptFunction.cpp -------------------------------------------------------------------------------- /FKSvr2Server/AI/AIScriptFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AIScriptFunction.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/AI_Character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AI_Character.cpp -------------------------------------------------------------------------------- /FKSvr2Server/AI/AI_Character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AI_Character.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/AI_Human.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AI_Human.cpp -------------------------------------------------------------------------------- /FKSvr2Server/AI/AI_Human.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AI_Human.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/AI_Monster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AI_Monster.cpp -------------------------------------------------------------------------------- /FKSvr2Server/AI/AI_Monster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AI_Monster.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/AI_Monster_Def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AI_Monster_Def.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/AI_Pet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AI_Pet.cpp -------------------------------------------------------------------------------- /FKSvr2Server/AI/AI_Pet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AI_Pet.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/AI_PetDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AI_PetDef.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/AvoidOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AvoidOverlap.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/AxTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AxTrace.cpp -------------------------------------------------------------------------------- /FKSvr2Server/AI/AxTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/AxTrace.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/Patrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/Patrol.cpp -------------------------------------------------------------------------------- /FKSvr2Server/AI/Patrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/Patrol.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/SinCos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/SinCos.cpp -------------------------------------------------------------------------------- /FKSvr2Server/AI/SinCos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/SinCos.h -------------------------------------------------------------------------------- /FKSvr2Server/AI/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/State.cpp -------------------------------------------------------------------------------- /FKSvr2Server/AI/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/AI/State.h -------------------------------------------------------------------------------- /FKSvr2Server/Ability/Ability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Ability/Ability.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Ability/Ability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Ability/Ability.h -------------------------------------------------------------------------------- /FKSvr2Server/Ability/Ability.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Ability/Ability.inl -------------------------------------------------------------------------------- /FKSvr2Server/Ability/AbilityGather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Ability/AbilityGather.h -------------------------------------------------------------------------------- /FKSvr2Server/Ability/AbilityInlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Ability/AbilityInlay.h -------------------------------------------------------------------------------- /FKSvr2Server/Ability/AbilityTailor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Ability/AbilityTailor.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/Config.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Base/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/Config.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/File.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Base/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/File.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/FileDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/FileDef.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/FoxLuaScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/FoxLuaScript.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Base/FoxLuaScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/FoxLuaScript.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/FoxWin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/FoxWin32.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/IDTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/IDTable.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Base/IDTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/IDTable.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/Ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/Ini.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Base/Ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/Ini.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/Log.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Base/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/Log.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/LogDefine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/LogDefine.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Base/LogDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/LogDefine.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/LuaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/LuaLib.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/ObjPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/ObjPool.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Base/ObjPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/ObjPool.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/PetConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/PetConfig.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/ScriptDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/ScriptDef.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/StrTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/StrTable.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Base/StrTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/StrTable.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/Thread.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Base/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/Thread.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/TimeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/TimeManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Base/TimeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/TimeManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/foxscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/foxscript.h -------------------------------------------------------------------------------- /FKSvr2Server/Base/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Base/lua.h -------------------------------------------------------------------------------- /FKSvr2Server/DB/HumanDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/DB/HumanDB.cpp -------------------------------------------------------------------------------- /FKSvr2Server/DB/HumanDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/DB/HumanDB.h -------------------------------------------------------------------------------- /FKSvr2Server/DB/HumanDB.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/DB/HumanDB.inl -------------------------------------------------------------------------------- /FKSvr2Server/EventModule/EventCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/EventModule/EventCore.h -------------------------------------------------------------------------------- /FKSvr2Server/FKSvr2Server9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/FKSvr2Server9.vcproj -------------------------------------------------------------------------------- /FKSvr2Server/Item/GrowPointManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/GrowPointManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Item/HumanItemLogic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/HumanItemLogic.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Item/HumanItemLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/HumanItemLogic.h -------------------------------------------------------------------------------- /FKSvr2Server/Item/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/Item.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Item/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/Item.h -------------------------------------------------------------------------------- /FKSvr2Server/Item/Item.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/Item.inl -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemContainer.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemContainer.h -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemHelper.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemHelper.h -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemOperator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemOperator.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemOperator.h -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemRuler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemRuler.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemRuler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemRuler.h -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemTable.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemTable.h -------------------------------------------------------------------------------- /FKSvr2Server/Item/ItemTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Item/ItemTypes.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/ClientManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/ClientManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/ClientManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/ClientManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/DaemonThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/DaemonThread.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/DaemonThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/DaemonThread.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/GUIDManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/GUIDManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/GUIDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/GUIDManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/GameTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/GameTable.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/GameTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/GameTable.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/MachineManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/MachineManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/MachineManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/MachineManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/Performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/Performance.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/Performance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/Performance.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/RecoverManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/RecoverManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/RecoverManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/RecoverManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/RecoverThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/RecoverThread.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/RecoverThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/RecoverThread.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/Server.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/Server.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/ServerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/ServerManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/ServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/ServerManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/ServerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/ServerThread.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/ServerThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/ServerThread.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/ShareMemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/ShareMemManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/ThreadManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/ThreadManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/ThreadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/ThreadManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/ThreadPool.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/ThreadPool.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/User.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/User.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/UserPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/UserPool.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/UserPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/UserPool.h -------------------------------------------------------------------------------- /FKSvr2Server/Main/WorldManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/WorldManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Main/WorldManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Main/WorldManager.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/DaLi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/DaLi.cpp -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/DaLi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/DaLi.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/EMei.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/EMei.cpp -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/EMei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/EMei.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/GaiBang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/GaiBang.cpp -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/GaiBang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/GaiBang.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/MenPai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/MenPai.cpp -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/MenPai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/MenPai.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/MenPais.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/MenPais.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/MingJiao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/MingJiao.cpp -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/MingJiao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/MingJiao.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/ShaoLin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/ShaoLin.cpp -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/ShaoLin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/ShaoLin.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/TianShan.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/TianShan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/TianShan.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/WuDang.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/WuDang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/WuDang.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/WuMenPai.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/WuMenPai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/WuMenPai.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/XiaoYao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/XiaoYao.cpp -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/XiaoYao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/XiaoYao.h -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/XingXiu.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /FKSvr2Server/MenPai/XingXiu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/MenPai/XingXiu.h -------------------------------------------------------------------------------- /FKSvr2Server/Mission/Human_Mission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Mission/Human_Mission.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Attributes.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/CharacterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/CharacterManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/HumanManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/HumanManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/HumanManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/HumanManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/ItemBoxManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/ItemBoxManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/ItemBoxManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/ItemBoxManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/ItemBoxPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/ItemBoxPool.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/ItemBoxPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/ItemBoxPool.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/MonsterManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/MonsterManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/MonsterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/MonsterManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/MonsterPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/MonsterPool.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/MonsterPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/MonsterPool.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/ObjList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/ObjList.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/ObjManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/ObjManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/ObjManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/ObjManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/ObjSingleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/ObjSingleManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Character.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Character.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Dynamic.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Dynamic.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Human.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Human.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Human.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Human.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Human.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Human.inl -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Human_Calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Human_Calc.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Human_Skill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Human_Skill.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_ItemBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_ItemBox.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_ItemBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_ItemBox.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_ItemBox.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_ItemBox.inl -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Monster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Monster.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Monster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Monster.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Pet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Pet.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Pet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Pet.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Pet.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Pet.inl -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Pet_Calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Pet_Calc.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Pet_Skill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Pet_Skill.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Platform.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Platform.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Special.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Special.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Special.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Static.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/Obj_Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/Obj_Static.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/PetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/PetManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/PetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/PetManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/PetPlacard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/PetPlacard.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/PetPlacard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/PetPlacard.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/PetPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/PetPool.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/PetPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/PetPool.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/PlatformManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/PlatformManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/PlatformManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/PlatformManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/PlatformPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/PlatformPool.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/PlatformPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/PlatformPool.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/SpecialManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/SpecialManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/SpecialManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/SpecialManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Obj/SpecialPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/SpecialPool.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Obj/SpecialPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Obj/SpecialPool.h -------------------------------------------------------------------------------- /FKSvr2Server/Other/BBS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/BBS.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Other/BBS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/BBS.h -------------------------------------------------------------------------------- /FKSvr2Server/Other/ExchangBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/ExchangBox.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Other/ExchangBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/ExchangBox.h -------------------------------------------------------------------------------- /FKSvr2Server/Other/HumanRelation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/HumanRelation.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Other/HumanRelation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/HumanRelation.h -------------------------------------------------------------------------------- /FKSvr2Server/Other/PlayerShop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/PlayerShop.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Other/PlayerShop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/PlayerShop.h -------------------------------------------------------------------------------- /FKSvr2Server/Other/PlayerShopPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/PlayerShopPool.h -------------------------------------------------------------------------------- /FKSvr2Server/Other/PlayerStallBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/PlayerStallBox.h -------------------------------------------------------------------------------- /FKSvr2Server/Other/Record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/Record.h -------------------------------------------------------------------------------- /FKSvr2Server/Other/RecordOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/RecordOpt.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Other/RecordOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/RecordOpt.h -------------------------------------------------------------------------------- /FKSvr2Server/Other/ShopManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/ShopManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Other/ShopManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/ShopManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Other/StallBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/StallBox.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Other/StallBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/StallBox.h -------------------------------------------------------------------------------- /FKSvr2Server/Other/StoreManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/StoreManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Other/StoreManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Other/StoreManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Packets/GCHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Packets/GCHandler.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Packets/GWHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Packets/GWHandler.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Player/GamePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Player/GamePlayer.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Player/GamePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Player/GamePlayer.h -------------------------------------------------------------------------------- /FKSvr2Server/Player/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Player/Player.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Player/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Player/Player.h -------------------------------------------------------------------------------- /FKSvr2Server/Player/PlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Player/PlayerManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Player/PlayerPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Player/PlayerPool.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Player/PlayerPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Player/PlayerPool.h -------------------------------------------------------------------------------- /FKSvr2Server/Player/ServerPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Player/ServerPlayer.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Player/ServerPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Player/ServerPlayer.h -------------------------------------------------------------------------------- /FKSvr2Server/SMU/SMUManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/SMU/SMUManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/SMU/SMUManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/SMU/SMUManager.h -------------------------------------------------------------------------------- /FKSvr2Server/SMU/ShareMemAO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/SMU/ShareMemAO.cpp -------------------------------------------------------------------------------- /FKSvr2Server/SMU/ShareMemAO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/SMU/ShareMemAO.h -------------------------------------------------------------------------------- /FKSvr2Server/Scene/AreaManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/AreaManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/AreaManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/AreaManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Scene/ChatPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/ChatPipe.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/ChatPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/ChatPipe.h -------------------------------------------------------------------------------- /FKSvr2Server/Scene/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/Map.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/Map.h -------------------------------------------------------------------------------- /FKSvr2Server/Scene/MapUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/MapUnit.h -------------------------------------------------------------------------------- /FKSvr2Server/Scene/PathFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/PathFinder.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/PathFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/PathFinder.h -------------------------------------------------------------------------------- /FKSvr2Server/Scene/ScanOperator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/ScanOperator.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/ScanOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/ScanOperator.h -------------------------------------------------------------------------------- /FKSvr2Server/Scene/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/Scene.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/Scene.h -------------------------------------------------------------------------------- /FKSvr2Server/Scene/Scene.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/Scene.inl -------------------------------------------------------------------------------- /FKSvr2Server/Scene/SceneFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/SceneFile.h -------------------------------------------------------------------------------- /FKSvr2Server/Scene/SceneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/SceneManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/SceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/SceneManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Scene/SceneScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/SceneScan.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/SceneThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/SceneThread.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/SceneThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/SceneThread.h -------------------------------------------------------------------------------- /FKSvr2Server/Scene/Scene_Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/Scene_Core.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/Scene_Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/Scene_Event.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/Zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/Zone.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Scene/Zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Scene/Zone.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/ExportLuaFn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/ExportLuaFn.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaFnMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaFnMacro.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaFnRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaFnRegister.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaFnTbl_Attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaFnTbl_Attr.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaFnTbl_City.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaFnTbl_City.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaFnTbl_Guild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaFnTbl_Guild.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaFnTbl_Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaFnTbl_Misc.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaFnTbl_Pet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaFnTbl_Pet.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaFnTbl_Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaFnTbl_Scene.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaFnTbl_Shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaFnTbl_Shop.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaFnTbl_Team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaFnTbl_Team.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaInterface.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaInterface.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/LuaLibDll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/LuaLibDll.lib -------------------------------------------------------------------------------- /FKSvr2Server/Script/MisBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/MisBuf.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/NeedAddLuaFn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/NeedAddLuaFn.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/SceneTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/SceneTimer.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Script/SceneTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/SceneTimer.h -------------------------------------------------------------------------------- /FKSvr2Server/Script/lua.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Script/lua.lib -------------------------------------------------------------------------------- /FKSvr2Server/Skills/Combat_Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/Combat_Core.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Skills/Combat_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/Combat_Core.h -------------------------------------------------------------------------------- /FKSvr2Server/Skills/ImpactLogics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/ImpactLogics.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Skills/ImpactLogics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/ImpactLogics.h -------------------------------------------------------------------------------- /FKSvr2Server/Skills/Impact_Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/Impact_Core.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Skills/Impact_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/Impact_Core.h -------------------------------------------------------------------------------- /FKSvr2Server/Skills/LogicManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/LogicManager.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Skills/LogicManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/LogicManager.h -------------------------------------------------------------------------------- /FKSvr2Server/Skills/ScriptLogic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/ScriptLogic.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Skills/ScriptLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/ScriptLogic.h -------------------------------------------------------------------------------- /FKSvr2Server/Skills/SkillInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/SkillInfo.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Skills/SkillInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/SkillInfo.h -------------------------------------------------------------------------------- /FKSvr2Server/Skills/SkillLogics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/SkillLogics.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Skills/SkillLogics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/SkillLogics.h -------------------------------------------------------------------------------- /FKSvr2Server/Skills/Skill_Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/Skill_Core.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Skills/Skill_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/Skill_Core.h -------------------------------------------------------------------------------- /FKSvr2Server/Skills/TargetChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Skills/TargetChecker.h -------------------------------------------------------------------------------- /FKSvr2Server/Team/Team.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Team/Team.cpp -------------------------------------------------------------------------------- /FKSvr2Server/Team/Team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Team/Team.h -------------------------------------------------------------------------------- /FKSvr2Server/Team/Team.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/Team/Team.inl -------------------------------------------------------------------------------- /FKSvr2Server/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/stdafx.cpp -------------------------------------------------------------------------------- /FKSvr2Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2Server/stdafx.h -------------------------------------------------------------------------------- /FKSvr2ShareMemory/Main/SMConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2ShareMemory/Main/SMConfig.cpp -------------------------------------------------------------------------------- /FKSvr2ShareMemory/Main/SMConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2ShareMemory/Main/SMConfig.h -------------------------------------------------------------------------------- /FKSvr2ShareMemory/Main/ShareMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2ShareMemory/Main/ShareMemory.h -------------------------------------------------------------------------------- /FKSvr2ShareMemory/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2ShareMemory/stdafx.cpp -------------------------------------------------------------------------------- /FKSvr2ShareMemory/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2ShareMemory/stdafx.h -------------------------------------------------------------------------------- /FKSvr2World/FKSvr2World.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/FKSvr2World.vcproj -------------------------------------------------------------------------------- /FKSvr2World/Main/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/Player.cpp -------------------------------------------------------------------------------- /FKSvr2World/Main/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/Player.h -------------------------------------------------------------------------------- /FKSvr2World/Main/PlayerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/PlayerManager.cpp -------------------------------------------------------------------------------- /FKSvr2World/Main/PlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/PlayerManager.h -------------------------------------------------------------------------------- /FKSvr2World/Main/PlayerPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/PlayerPool.cpp -------------------------------------------------------------------------------- /FKSvr2World/Main/PlayerPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/PlayerPool.h -------------------------------------------------------------------------------- /FKSvr2World/Main/ServerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/ServerManager.cpp -------------------------------------------------------------------------------- /FKSvr2World/Main/ServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/ServerManager.h -------------------------------------------------------------------------------- /FKSvr2World/Main/ServerPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/ServerPlayer.cpp -------------------------------------------------------------------------------- /FKSvr2World/Main/ServerPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/ServerPlayer.h -------------------------------------------------------------------------------- /FKSvr2World/Main/ShareMemManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/ShareMemManager.cpp -------------------------------------------------------------------------------- /FKSvr2World/Main/ShareMemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/ShareMemManager.h -------------------------------------------------------------------------------- /FKSvr2World/Main/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/World.cpp -------------------------------------------------------------------------------- /FKSvr2World/Main/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/World.h -------------------------------------------------------------------------------- /FKSvr2World/Main/WorldTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/WorldTable.cpp -------------------------------------------------------------------------------- /FKSvr2World/Main/WorldTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Main/WorldTable.h -------------------------------------------------------------------------------- /FKSvr2World/Packets/WGHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Packets/WGHandler.cpp -------------------------------------------------------------------------------- /FKSvr2World/Packets/WLHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/Packets/WLHandler.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/AllUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/AllUser.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/AllUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/AllUser.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/ChatCenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/ChatCenter.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/ChatCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/ChatCenter.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/City.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/City.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/City.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/City.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/CityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/CityManager.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/Guild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/Guild.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/Guild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/Guild.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/GuildManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/GuildManager.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/MailCenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/MailCenter.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/MailCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/MailCenter.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/MailDefine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/MailDefine.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/MailDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/MailDefine.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/MailPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/MailPool.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/MailPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/MailPool.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/OnlineUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/OnlineUser.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/OnlineUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/OnlineUser.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/SceneInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/SceneInfo.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/SceneInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/SceneInfo.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/Team.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/Team.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/Team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/Team.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/User.cpp -------------------------------------------------------------------------------- /FKSvr2World/WorldData/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/User.h -------------------------------------------------------------------------------- /FKSvr2World/WorldData/User.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/WorldData/User.inl -------------------------------------------------------------------------------- /FKSvr2World/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/stdafx.cpp -------------------------------------------------------------------------------- /FKSvr2World/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/FKSvr2World/stdafx.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duzhi5368/FKServer2/HEAD/README.md --------------------------------------------------------------------------------