Merge branch 'master' of http://git.legu.cc/liwei_3d/dfbattle
This commit is contained in:
commit
26a37115d3
34
Client.cs
34
Client.cs
@ -35,8 +35,8 @@ namespace BattleServer
|
||||
private void doBinary(byte[] message)
|
||||
{
|
||||
BattleRpcMessage msg = ProtoDeSerialize<BattleRpcMessage>(message);
|
||||
if (msg.method != "Heartbeat")
|
||||
Console.WriteLine("接收到消息 {0}", msg.method);
|
||||
// if (msg.method != "Heartbeat")
|
||||
// Console.WriteLine("接收到消息 {0}", msg.method);
|
||||
// Pb.BattleRpcMessage msg = Deserialize<Pb.BattleRpcMessage>(message);
|
||||
Task t = Task.Run(() =>
|
||||
{
|
||||
@ -79,7 +79,7 @@ namespace BattleServer
|
||||
socket.Send(_msg);
|
||||
break;
|
||||
case "GetInfo": //创建战斗场景
|
||||
Console.WriteLine("处理GetInfoPVP !");
|
||||
// Console.WriteLine("处理GetInfoPVP !");
|
||||
BattleGetInfoReq req = ProtoDeSerialize<BattleGetInfoReq>(msg.data.value);
|
||||
BattleStateInfo info = HotUpdateScripts.FightRunnerMgr.Instance.GetPvpStateInfo(req.battleid);
|
||||
msg.data = new Google.Protobuf.WellKnownTypes.Any
|
||||
@ -89,10 +89,10 @@ namespace BattleServer
|
||||
};
|
||||
_msg = ProtoSerialize(msg);
|
||||
socket.Send(_msg);
|
||||
Console.WriteLine("处理GetInfo end !");
|
||||
// Console.WriteLine("处理GetInfo end !");
|
||||
break;
|
||||
case "Create": //创建战斗场景
|
||||
Console.WriteLine("处理CreatePVP !");
|
||||
// Console.WriteLine("处理CreatePVP !");
|
||||
BattleCreateServerReq CreateReq = ProtoDeSerialize<BattleCreateServerReq>(msg.data.value);
|
||||
HotUpdateScripts.FightRunnerMgr.Instance.StartPvp(CreateReq.info, this.OnOutCmd, this.OnFinish, (issucc) =>
|
||||
{
|
||||
@ -103,15 +103,15 @@ namespace BattleServer
|
||||
};
|
||||
_msg = ProtoSerialize(msg);
|
||||
socket.Send(_msg);
|
||||
Console.WriteLine("处理CreatePVP end !");
|
||||
// Console.WriteLine("处理CreatePVP end !");
|
||||
});
|
||||
break;
|
||||
case "InCmd": //向战斗场景输入指令
|
||||
Console.WriteLine("处理InCmd !");
|
||||
// Console.WriteLine("处理InCmd !");
|
||||
BattleInCmdReq InCmdReq = ProtoDeSerialize<BattleInCmdReq>(msg.data.value);
|
||||
HotUpdateScripts.FightRunnerMgr.Instance.PvpInput(InCmdReq.battleid, InCmdReq.side, InCmdReq.@in, (issucc) =>
|
||||
{
|
||||
Console.WriteLine("处理InCmd 1------- end !");
|
||||
// Console.WriteLine("处理InCmd 1------- end !");
|
||||
msg.data = new Google.Protobuf.WellKnownTypes.Any
|
||||
{
|
||||
type_url = "type.googleapis.com/BattleInCmdResp",
|
||||
@ -119,12 +119,12 @@ namespace BattleServer
|
||||
};
|
||||
_msg = ProtoSerialize(msg);
|
||||
socket.Send(_msg);
|
||||
Console.WriteLine("处理InCmd 1------- end !");
|
||||
// Console.WriteLine("处理InCmd 1------- end !");
|
||||
});
|
||||
|
||||
break;
|
||||
case "Concede": //向战斗场景输入指令
|
||||
Console.WriteLine("处理 Concede !");
|
||||
// Console.WriteLine("处理 Concede !");
|
||||
BattleConcedeReq ConcedeReq = ProtoDeSerialize<BattleConcedeReq>(msg.data.value);
|
||||
HotUpdateScripts.FightRunnerMgr.Instance.InitiativeFail(ConcedeReq.battleid, ConcedeReq.side, (issucc) =>
|
||||
{
|
||||
@ -135,7 +135,7 @@ namespace BattleServer
|
||||
};
|
||||
_msg = ProtoSerialize(msg);
|
||||
socket.Send(_msg);
|
||||
Console.WriteLine("处理 Concede end !");
|
||||
// Console.WriteLine("处理 Concede end !");
|
||||
});
|
||||
|
||||
break;
|
||||
@ -146,10 +146,10 @@ namespace BattleServer
|
||||
private void OnOutCmd(string bid, List<BattleCmd> cmd)
|
||||
{
|
||||
// Console.WriteLine("----------------------OnOutCmd {0}:{1}", bid, cmd.cmdtype);
|
||||
foreach (var item in cmd)
|
||||
{
|
||||
Console.WriteLine("----------------------OnOutCmd {0}:{1}", bid, item.cmdtype);
|
||||
}
|
||||
// foreach (var item in cmd)
|
||||
// {
|
||||
// Console.WriteLine("----------------------OnOutCmd {0}:{1}", bid, item.cmdtype);
|
||||
// }
|
||||
|
||||
BattleRpcMessage msg = new BattleRpcMessage();
|
||||
msg.method = "BattleOutCmd";
|
||||
@ -166,7 +166,7 @@ namespace BattleServer
|
||||
{
|
||||
|
||||
ComEndFight _cmd = HotUpdateScripts.FightCmdUtil.PasreCmd(cmd) as ComEndFight;
|
||||
Console.WriteLine("----------------------OnFinish {0}", _cmd.fightId);
|
||||
// Console.WriteLine("----------------------OnFinish {0}", _cmd.fightId);
|
||||
BattleRpcMessage msg = new BattleRpcMessage();
|
||||
msg.method = "BattleFished";
|
||||
msg.data = new Google.Protobuf.WellKnownTypes.Any
|
||||
@ -185,7 +185,7 @@ namespace BattleServer
|
||||
t.ContinueWith(r =>
|
||||
{
|
||||
string Exception = Convert.ToString(t.Exception);
|
||||
Console.WriteLine("OnFinish 异常处理:" + Exception);
|
||||
// Console.WriteLine("OnFinish 异常处理:" + Exception);
|
||||
}, TaskContinuationOptions.OnlyOnFaulted);
|
||||
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
GameConfig/game_accumulate.bytes
Normal file
BIN
GameConfig/game_accumulate.bytes
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
(attrdiamond€–item170100002attrgoldÏB@main_weektask_action_1_actPattrdiamond€–item17010000dattrgoldÏB@main_weektask_action_1_actxattrdiamond€–item17010000dattrgoldÏB@main_weektask_action_1_act€ attrdiamond€–item17010000dattrgoldÏB@main_weektask_action_1_act
|
||||
(attrdiamond€–main_weektask_action_1_actPattrdiamond€–attrgoldÇ¡ main_weektask_action_1_actxattrdiamond€–attrgoldÉ'Àmain_weektask_action_1_act€ attrdiamond€–attrgoldÉ'Àmain_weektask_action_1_act
|
BIN
GameConfig/game_activityshow.bytes
Normal file
BIN
GameConfig/game_activityshow.bytes
Normal file
Binary file not shown.
BIN
GameConfig/game_annulartask_library.bytes
Normal file
BIN
GameConfig/game_annulartask_library.bytes
Normal file
Binary file not shown.
5
GameConfig/game_annulartaskall.bytes
Normal file
5
GameConfig/game_annulartaskall.bytes
Normal file
@ -0,0 +1,5 @@
|
||||
§ã“‡
|
||||
㓇㓇㓇(㓇2‰Äattrdiamond2attrps§$㓇
|
||||
㓇㓇㓇(㓇2‰Äattrdiamond2attrps§.㓇
|
||||
㓇㓇㓇(㓇2‰Äattrdiamond2attrps§8㓇
|
||||
㓇㓇㓇(㓇2‰Äattrdiamond2attrps
|
BIN
GameConfig/game_askall.bytes
Normal file
BIN
GameConfig/game_askall.bytes
Normal file
Binary file not shown.
BIN
GameConfig/game_asklibrary.bytes
Normal file
BIN
GameConfig/game_asklibrary.bytes
Normal file
Binary file not shown.
Binary file not shown.
BIN
GameConfig/game_battlescore.bytes
Normal file
BIN
GameConfig/game_battlescore.bytes
Normal file
Binary file not shown.
Binary file not shown.
BIN
GameConfig/game_bufflottery.bytes
Normal file
BIN
GameConfig/game_bufflottery.bytes
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,2 +1,3 @@
|
||||
c
|
||||
ba2sPssdsssx
|
||||
gh_img_c
|
||||
gh_img_bgh_img_a2gh_img_sP gh_img_ssd
|
||||
gh_img_sssx
|
Binary file not shown.
BIN
GameConfig/game_buzkashiqtelv.bytes
Normal file
BIN
GameConfig/game_buzkashiqtelv.bytes
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
GameConfig/game_caravanpaper.bytes
Normal file
BIN
GameConfig/game_caravanpaper.bytes
Normal file
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
ðÿÿÿÿ§attrgoldd§ÀN attrgoldƒèÀN Àu0attrgold‡ÐÀu0ÀÃPattrgold‹¸ÀÃPðÿÿÿÿattrgold§
|
||||
ÀÃPattrgoldÄ“àÁ† attrgoldÅW0Ã
@attrgoldƀēàattrgoldÆÝÐÇ¡ attrgoldÇ¡ ÏB@attrgoldÈdpÞ„€attrgoldÉ'Àðÿÿÿöattrgold
|
@ -1 +1,19 @@
|
||||
caravan_caravan_city_goodsname_1番茄!caravan_caravan_city_goodsinfor_1这是一个番茄clmsg_ll_01ƒè((P22P<>ô€È‹¸P caravan_caravan_city_goodsname_2苹果!caravan_caravan_city_goodsinfor_2这是一个苹果clmsg_ll_02ƒ„((P22P<>ô€È‹¸P caravan_caravan_city_goodsname_3手机!caravan_caravan_city_goodsinfor_3这是一个手机clmsg_ll_03<30>ô((P22P<>ô€È‹¸P caravan_caravan_city_goodsname_4干果!caravan_caravan_city_goodsinfor_4这是一个干果clmsg_ll_04…Ü((P22P<>ô€È‹¸P caravan_caravan_city_goodsname_5矿石!caravan_caravan_city_goodsinfor_5这是一个矿石clmsg_ll_05ˆü((P22P<>ô€È‹¸P caravan_caravan_city_goodsname_6饼干!caravan_caravan_city_goodsinfor_6这是一个饼干clmsg_ll_06„j((P22P<>ô€È‹¸P
|
||||
21000002…xœ ##F22F<>ôƒH‡¨U21000003<30>ô
|
||||
œ ##F22F<>ô<EFBFBD>,‚¼d21000004‡:œ ##F22F<>ô„VŠd21000005<30><35>
|
||||
œ ##F22F<>ô€ð‚0€¾21000006‚¼
|
||||
œ ##F22F<>ô<EFBFBD>¤ƒÔF(21000007ƒ„
|
||||
œ ##F22F<>ô‚„ìF<21000008‚X
|
||||
œ ##F22F<>ô<EFBFBD>hƒHU21000009†Öœ ##F22F<>ô„‰’
|
||||
221000010„Lœ ##F22F<>ô‚”†#221000011‡Ðœ ##F22F<>ô„°Šð
|
||||
21000012…Fœ ##F22F<>ôƒ*‡b221000013‚X
|
||||
œ ##F22F<>ô<EFBFBD>hƒHP21000014„°œ ##F22F<>ô‚І<C390>2€–21000015ƒèœ ##F22F<>ô‚X…x#721000016‚¼
|
||||
œ ##F22F<>ô<EFBFBD>¤ƒÔF(21000017€ú
|
||||
œ ##F22F<>ô€–<E282AC>^<5E>,21000018d
|
||||
œ ##F22F<>ô<€Œ‚î21000019†@œ ##F22F<>ôƒÀˆÀK21000020€È
|
||||
œ ##F22F<>ôx<C3B4><18>w21000021<32>Â
|
||||
œ ##F22F<>ô<EFBFBD>‚v€È(21000022…Üœ ##F22F<>ôƒ„ˆ4<21000023„✠##F22F<>ô‚î†Ö<21000024ƒ
|
||||
œ ##F22F<>ô<EFBFBD>à„`<(21000025<32>,
|
||||
œ ##F22F<>ô€´<E282AC>¤€ú21000026…œ ##F22F<>ôƒ‡P21000027‡Ðœ ##F22F<>ô„°Šðx21000028‚Š
|
||||
œ ##F22F<>ô<EFBFBD>†ƒŽd<21000029€–
|
||||
œ ##F22F<>ôZ€Ò<E282AC>ô21000030…Üœ ##F22F<>ôƒ„ˆ4Z21000031‡œ ##F22F<>ô„8‰ØK21000032…ªœ ##F22F<>ôƒf‡îK21000033d
|
||||
œ ##F22F<>ô<€Œ‚î
|
BIN
GameConfig/game_celebration.bytes
Normal file
BIN
GameConfig/game_celebration.bytes
Normal file
Binary file not shown.
Binary file not shown.
BIN
GameConfig/game_circulate.bytes
Normal file
BIN
GameConfig/game_circulate.bytes
Normal file
Binary file not shown.
Binary file not shown.
BIN
GameConfig/game_compositeall.bytes
Normal file
BIN
GameConfig/game_compositeall.bytes
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
GameConfig/game_dragonplay.bytes
Normal file
BIN
GameConfig/game_dragonplay.bytes
Normal file
Binary file not shown.
BIN
GameConfig/game_dragonplot.bytes
Normal file
BIN
GameConfig/game_dragonplot.bytes
Normal file
Binary file not shown.
3
GameConfig/game_drawcardreward.bytes
Normal file
3
GameConfig/game_drawcardreward.bytes
Normal file
@ -0,0 +1,3 @@
|
||||
2drawcard_drawcard_reward_text50{0}抽item10000001d drawcard_drawcard_reward_text100{0}抽item10000001€È drawcard_drawcard_reward_text200{0}抽item10000001
|
||||
<EFBFBD>, drawcard_drawcard_reward_text300{0}抽item17050001<01><> drawcard_drawcard_reward_text400{0}抽item10000006‚X drawcard_drawcard_reward_text600{0}抽item10000024
|
||||
ƒ drawcard_drawcard_reward_text800{0}抽item10000101d
|
Binary file not shown.
BIN
GameConfig/game_drawreplace.bytes
Normal file
BIN
GameConfig/game_drawreplace.bytes
Normal file
Binary file not shown.
3
GameConfig/game_drawreward.bytes
Normal file
3
GameConfig/game_drawreward.bytes
Normal file
@ -0,0 +1,3 @@
|
||||
2drawcard_drawcard_reward_text50{0}抽item10000001d drawcard_drawcard_reward_text100{0}抽item10000001€È drawcard_drawcard_reward_text200{0}抽item10000001
|
||||
<EFBFBD>, drawcard_drawcard_reward_text300{0}抽item17050001<01><> drawcard_drawcard_reward_text400{0}抽item10000006‚X drawcard_drawcard_reward_text600{0}抽item10000024
|
||||
ƒ drawcard_drawcard_reward_text800{0}抽item10000101d
|
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
GameConfig/game_equipupsell.bytes
Normal file
BIN
GameConfig/game_equipupsell.bytes
Normal file
Binary file not shown.
BIN
GameConfig/game_eventlottery.bytes
Normal file
BIN
GameConfig/game_eventlottery.bytes
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
server_10001本地测试服
10.0.0.9:7891df01server_10002本地测试服2
10.0.0.9:7691df02debug_server_01lw10.0.0.138:7891dflidebug_server_02zcy10.0.0.238:7891dfz01debug_server_03mxf10.0.0.85:7891dfmxfdebug_server_04hjl10.0.0.208:7891dfjl
|
||||
server_10001本地测试æœ<C3A6>
10.0.0.9:7891df01server_10002本地测试æœ<C3A6>2
10.0.0.9:7691df02debug_server_01lw10.0.0.138:7891dflidebug_server_02zcy10.0.0.238:7891dfz01debug_server_03mxf10.0.0.85:7891dfmxfdebug_server_04hjl10.0.0.208:7891dfjl€ªdebug_server_05版署测试æœ<C3A6>101.35.125.220:6088170
|
2
GameConfig/game_fategiftfate.bytes
Normal file
2
GameConfig/game_fategiftfate.bytes
Normal file
@ -0,0 +1,2 @@
|
||||
$Àˆ¾ä,<1D>fategift_stagetask_test_1测试1Àˆ¾ä,<1D>fategift_stagetask_test_2测试2Àˆ¾ä,<1D>fategift_stagetask_test_3测试3Àˆ¾ä,<1D>fategift_stagetask_test_4测试4Àˆ¾ä,<1D>fategift_stagetask_test_5测试5Àˆ¾ä,<1D>fategift_stagetask_test_6测试6Àˆ¾ä,<1D>fategift_stagetask_test_7测试7Àˆ¾ä,<1D>fategift_stagetask_test_8测试8 Àˆ¾ä,<1D>fategift_stagetask_test_9测试9
|
||||
Àˆ¾ä,<1D>fategift_stagetask_test_10测试10Àˆ¾ä,<1D>fategift_stagetask_test_11测试11Àˆ¾ä,<1D>fategift_stagetask_test_12测试12
Àˆ¾ä,<1D>fategift_stagetask_test_13测试13Àˆ¾ä,<1D>fategift_stagetask_test_14测试14Àˆ¾ä,<1D>fategift_stagetask_test_15测试15Àˆ¾ä,<1D>fategift_stagetask_test_16测试16Àˆ¾ä,<1D>fategift_stagetask_test_17测试17Àˆ¾ä,<1D>fategift_stagetask_test_18测试18Àˆ¾ä,<1D>fategift_stagetask_test_19测试19Àˆ¾ä,<1D>fategift_stagetask_test_20测试20Àˆ¾ä,<1D>fategift_stagetask_test_21测试21Àˆ¾ä,<1D>fategift_stagetask_test_22测试22Àˆ¾ä,<1D>fategift_stagetask_test_23测试23Àˆ¾ä,<1D>fategift_stagetask_test_24测试24Àˆ¾ä,<1D>fategift_stagetask_test_25测试25Àˆ¾ä,<1D>fategift_stagetask_test_26测试26Àˆ¾ä,<1D>fategift_stagetask_test_27测试27Àˆ¾ä,<1D>fategift_stagetask_test_28测试28À¯Éä,<1D>fategift_stagetask_test_29测试29À¯Éä,<1D>fategift_stagetask_test_30测试30À¯Éä,†fategift_stagetask_test_31测试31 À¯Éä,‡fategift_stagetask_test_32测试32!Àa¬ä,<1D>fategift_stagetask_test_33测试33"Àa¬ä,<1D>fategift_stagetask_test_34测试34#Àa¬ä,‚fategift_stagetask_test_35测试35$Àa¬ä,ƒfategift_stagetask_test_36测试36
|
1
GameConfig/game_fategiftreward.bytes
Normal file
1
GameConfig/game_fategiftreward.bytes
Normal file
@ -0,0 +1 @@
|
||||
Àˆ¾hero35006Àˆ¾hero35006Àˆ¾hero35006Àˆ¾hero35006Àˆ¾hero35006Àˆ¾hero35006Àˆ¾hero35006À¯Éhero45001 Àa¬hero25004
|
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
BIN
GameConfig/game_gamesummary.bytes
Normal file
BIN
GameConfig/game_gamesummary.bytes
Normal file
Binary file not shown.
BIN
GameConfig/game_gamesummarytab.bytes
Normal file
BIN
GameConfig/game_gamesummarytab.bytes
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
12
GameConfig/game_guidance.bytes
Normal file
12
GameConfig/game_guidance.bytes
Normal file
@ -0,0 +1,12 @@
|
||||
日常任务m
|
||||
guidance_1今日剩余任务:{0}/{1}rdtaskæ¯<C3A6>日一练§
|
||||
guidance_2今日完æˆ<C3A6>进度:{0}/{1}daily_practice云朵先生ç¾åˆ°‚Ï
|
||||
guidance_3今日完æˆ<C3A6>进度:{0}/{1}puzzle巨怪商队跑商ªù
|
||||
guidance_4今日剩余车票:{0}caravan公会ç¾åˆ°ƒ$
|
||||
guidance_5今日剩余ç¾åˆ°ï¼š{0}guild公会副本ªý
|
||||
guidance_6今日剩余挑战次数:{0}guild公会任务€¡
|
||||
guidance_7今日剩余任务:{0}guild竞技挑战€œ
|
||||
guidance_8今日剩余挑战券:{0}arena 熊猫æ¦é¦†è®ç»ƒ§
|
||||
guidance_9今日剩余è®ç»ƒæ¬¡æ•°ï¼š{0}kungfu
|
||||
ç§<C3A7>æ—<C3A6>å¡”§"guidance_10!今日剩余å<E284A2>¯æŒ‘战关å<C2B3>¡ï¼š{0}kungfu维京远å¾<C3A5>«
|
||||
guidance_11今日剩余体力:{0}/{1}vikingexpedition_entrance猎邀¨ guidance_12今日剩余体力:{0}/{1}hunting
梦境回廊§guidance_13今日剩余体力:{0}/{1}vikingexpedition_experience
|
Binary file not shown.
@ -1,2 +1,2 @@
|
||||
<01>,item10000005
|
||||
‚Xitem10000003ƒèattrgoldÉ'À…ÜattrgoldÖã`‡Ðitem10000003
|
||||
‚Xitem10000003ƒèattrgoldÃ
@…ÜattrgoldÆ€‡Ðitem10000003
|
9
GameConfig/game_guildboss.bytes
Normal file
9
GameConfig/game_guildboss.bytes
Normal file
File diff suppressed because one or more lines are too long
4
GameConfig/game_guildbossrank.bytes
Normal file
4
GameConfig/game_guildbossrank.bytes
Normal file
@ -0,0 +1,4 @@
|
||||
arena_rank_reward_rank_display_11-1å<31><C3A5>attrgoldƒè arena_rank_reward_rank_display_22-2å<32><C3A5>attrgoldƒè arena_rank_reward_rank_display_33-3å<33><C3A5>attrgoldƒè
|
||||
arena_rank_reward_rank_display_44-10å<30><C3A5>attrgoldƒè arena_rank_reward_rank_display_511-20å<30><C3A5>attrgoldƒè2 arena_rank_reward_rank_display_621-50å<30><C3A5>attrgoldƒè3d arena_rank_reward_rank_display_7 51-100å<30><C3A5>attrgoldƒèe<>, arena_rank_reward_rank_display_8
|
||||
101-300å<30><C3A5>attrgoldƒè <09>-ƒè arena_rank_reward_rank_display_9301-1000å<30><C3A5>attrgoldƒè
|
||||
ƒé‡Ð!arena_rank_reward_rank_display_101001-2000å<30><C3A5>attrgoldƒè‡Ñåõàÿ!arena_rank_reward_rank_display_112001-99999999å<39><C3A5>attrgoldƒè
|
BIN
GameConfig/game_guildbossroulette.bytes
Normal file
BIN
GameConfig/game_guildbossroulette.bytes
Normal file
Binary file not shown.
BIN
GameConfig/game_guildbossscore.bytes
Normal file
BIN
GameConfig/game_guildbossscore.bytes
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,23 +1,32 @@
|
||||
|
||||
âúð<EFBFBD>sguild_guild_task_task_display_1使用好å<C2BD>‹åŠ©æˆ˜å®ˆæŠ¤è€…1次attr guildcoin2attrgoldÁ† attrguildactive
|
||||
âúð<EFBFBD>§$guild_guild_task_task_display_1使用好å<C2BD>‹åŠ©æˆ˜å®ˆæŠ¤è€…1次attr guildcoin2attrgoldÁ† attrguildactive
|
||||
attrguildexp
|
||||
2âúð‚qguild_guild_task_task_display_2进行3次普通招募attr guildcoin2attrgoldÁ† attrguildactive
|
||||
|
||||
âúð‚§4guild_guild_task_task_display_2进行3次普通招募attr guildcoin2attrgoldÁ† attrguildactive
|
||||
attrguildexp
|
||||
2âúðƒkguild_guild_task_task_display_3为任æ„<C3A6>守护者æ<E280A6><C3A6>å<EFBFBD>‡5级attr guildcoin2attrgoldÁ† attrguildactive
|
||||
|
||||
âúðƒgguild_guild_task_task_display_3为任æ„<C3A6>守护者æ<E280A6><C3A6>å<EFBFBD>‡5级attr guildcoin2attrgoldÁ† attrguildactive
|
||||
attrguildexp
|
||||
2âúð„gguild_guild_task_task_display_4强化任æ„<C3A6>装备æˆ<C3A6>功6次attr guildcoin2attrgoldÁ† attrguildactive
|
||||
|
||||
âúð„fguild_guild_task_task_display_4强化任æ„<C3A6>装备æˆ<C3A6>功6次attr guildcoin2attrgoldÁ† attrguildactive
|
||||
attrguildexp
|
||||
2âúð…ªþguild_guild_task_task_display_5消费500000金å¸<C3A5>attr guildcoin2attrgoldÁ† attrguildactive
|
||||
|
||||
âúð…ªþguild_guild_task_task_display_5消费500000金å¸<C3A5>attr guildcoin2attrgoldÁ† attrguildactive
|
||||
attrguildexp
|
||||
2âúð†ªÿguild_guild_task_task_display_6消费300钻石attr guildcoin2attrgoldÁ† attrguildactive
|
||||
|
||||
âúð†ªÿguild_guild_task_task_display_6消费300月光原石attr guildcoin2attrgoldÁ† attrguildactive
|
||||
attrguildexp
|
||||
2âúð‡§guild_guild_task_task_display_7完æˆ<C3A6>1次功夫陪练任务attr guildcoin2attrgoldÁ† attrguildactive
|
||||
|
||||
âúð‡§guild_guild_task_task_display_7完æˆ<C3A6>1次功夫陪练任务attr guildcoin2attrgoldÁ† attrguildactive
|
||||
attrguildexp
|
||||
2âúðˆ€œguild_guild_task_task_display_8挑战3次竞技场attr guildcoin2attrgoldÁ† attrguildactive
|
||||
|
||||
âúðˆ§guild_guild_task_task_display_8挑战3次竞技场attr guildcoin2attrgoldÁ† attrguildactive
|
||||
attrguildexp
|
||||
2âúð‰ «guild_guild_task_task_display_9"挑战3次“维京远å¾<C3A5>â€<C3A2>副本attr guildcoin2attrgoldÁ† attrguildactive
|
||||
|
||||
âúð‰ §$guild_guild_task_task_display_9"挑战3次“维京远å¾<C3A5>â€<C3A2>副本attr guildcoin2attrgoldÁ† attrguildactive
|
||||
attrguildexp
|
||||
2âúðŠ
|
||||
€¨ guild_guild_task_task_display_10挑战3次“狩猎â€<C3A2>副本attr guildcoin2attrgoldÁ† attrguildactive
|
||||
|
||||
âúðŠ
|
||||
§( guild_guild_task_task_display_10挑战3次“狩猎â€<C3A2>副本attr guildcoin2attrgoldÁ† attrguildactive
|
||||
attrguildexp
|
||||
2
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
e)hero_method_hero_method_comment_comment_1$这英雄速度有什么要求吗?f)hero_method_hero_method_comment_comment_2我的评价是不如阿宝...g)hero_method_hero_method_comment_comment_32这英雄一波流打不了BOSS,竞技场好用~h)hero_method_hero_method_comment_comment_4很强,已拉满!i)hero_method_hero_method_comment_comment_50新副本用它,可以配合师父打伤害。j)hero_method_hero_method_comment_comment_6平民英雄,好养。k)hero_method_hero_method_comment_comment_7Z很多人说他不强,你装备满了吗?技能满了吗?拉满不强你举报我!l)hero_method_hero_method_comment_comment_8点赞好人一生平安~m)hero_method_hero_method_comment_comment_9-怎么又抽到它了,求求你别来了!
|
||||
e)hero_method_hero_method_comment_comment_1'这守护者速度有什么要求吗?f)hero_method_hero_method_comment_comment_2我的评价是不如阿宝...g)hero_method_hero_method_comment_comment_35这守护者一波流打不了BOSS,竞技场好用~h)hero_method_hero_method_comment_comment_4很强,已拉满!i)hero_method_hero_method_comment_comment_50新副本用它,可以配合师父打伤害。j)hero_method_hero_method_comment_comment_6平民守护者,好养。k)hero_method_hero_method_comment_comment_7Z很多人说他不强,你装备满了吗?技能满了吗?拉满不强你举报我!l)hero_method_hero_method_comment_comment_8点赞好人一生平安~m)hero_method_hero_method_comment_comment_9-怎么又抽到它了,求求你别来了!
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
2
GameConfig/game_heroupstory.bytes
Normal file
2
GameConfig/game_heroupstory.bytes
Normal file
@ -0,0 +1,2 @@
|
||||
Àa©
|
||||
2023-08-08attrgoldď
|
BIN
GameConfig/game_heroupstorybattle.bytes
Normal file
BIN
GameConfig/game_heroupstorybattle.bytes
Normal file
Binary file not shown.
BIN
GameConfig/game_heroupstorychapter.bytes
Normal file
BIN
GameConfig/game_heroupstorychapter.bytes
Normal file
Binary file not shown.
BIN
GameConfig/game_heroupstorychaptertxt.bytes
Normal file
BIN
GameConfig/game_heroupstorychaptertxt.bytes
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
353per16010101354per16010201355per16010301
|
||||
353per16010101354per16010201355per16010301356mts20030001357attrpsx358item18000004
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,11 +1,12 @@
|
||||
ĎGameMain
|
||||
ĎGameMain
|
||||
ld_mh_bg01loading_icon_fcloading_Sheet1_prompt_1W涓<57>酱鍩庢槸缁堟瀬涔嬫垬鍚庨噸寤虹殑涓栫晫棣栭兘锛岄潬鍏堣繘鎶€鏈<E282AC>覆鑱斿垢瀛樹笘鐣屻€們<E282AC>CommandSceneld_mh_bg_zhbloading_icon_zhbloading_Sheet1_prompt_2B鎸囨尌閮ㄩ噷鍌ㄥ瓨鐫€寰堝<E5AFB0>鏈堝厜鍘熺煶锛岀湅璧锋潵鏈夊ぇ鐢ㄥ<E990A2>銆們<E98A86>WuGuanSceneld_mh_bg_wgloading_icon_gfxmloading_Sheet1_prompt_3Z蹇<5A>窡鐫€娴g唺甯堢埗瀛﹀姛澶<E5A79B>惂锛屼簤鍙栧儚闃垮疂涓€鏍锋垚涓鸿<E6B693>涓栦汉灏婃暚鐨勫ぇ渚犮€們<E282AC>SmithySceneld_mh_bg_tjploading_icon_xlgsloading_Sheet1_prompt_4H鑹烘湳瀹舵垐浼<E59E90>殢鏃剁瓑浣犲甫鐫€濂介厭濂借彍鍘绘壘浠栨墦閫犺<E996AB>澶囧摝銆們<E98A86>ParkourScene loading_2loading_icon_gfxmloading_Sheet1_prompt_50鎯崇煡閬撶敤閫熷害涓庢縺鎯呮崟缇婄殑涔愯叮鍚楋紵冾
|
||||
GuildScene
|
||||
ld_5v5_bg1loading_icon_ghloading_Sheet1_prompt_6?公会是一处和其他守护者拉近è·<EFBFBD>离的好地方呢。ƒï
|
||||
ld_5v5_bg1loading_icon_ghloading_Sheet1_prompt_6B俱ä¹<EFBFBD>部是一处和其他守护者拉近è·<EFBFBD>离的好地方呢。ƒï
|
||||
ArenaScene
|
||||
ld_boss_bgloading_icon_gfxmloading_Sheet1_prompt_7B鎯充綋浼氬弸濂藉垏纾嬬殑榄呭姏鍚楋紵绔炴妧鍦烘槸涓嶄簩鐨勯€夋嫨銆們<E98A86>
businessSceneld_mh_bg_sdloading_icon_jgsdloading_Sheet1_prompt_8T鍟嗕汉浠<E6B189>粡甯镐箻鐫€宸ㄦ€<E384A6>垪杞﹀<E69D9E>鍑猴紝鍥炴潵鏃舵€讳細甯︿簺鏂板<E98F82>鐨勫皬鐜╂剰銆們<E98A86>
DrawCardScene loading_2loading_icon_gfxmloading_Sheet1_prompt_9T閬囧埌鍥板<E98DA5>鏃讹紝涓嶅Θ鍘诲湥妗冩爲鐪嬬湅锛屾垨璁歌兘鎵惧埌鐮撮櫎鍥板<E98DA5>鐨勬柟娉曘€們<E282AC>CombatLevelScene
|
||||
ld_5v5_bg1loading_icon_gfxmloading_Sheet1_prompt_10Q绌胯秺鏃堕棿鍦板浘锛岄噸娓╄繃鍘婚偅浜涚簿褰╃灛闂达紝鑾峰緱鏂扮殑鎴樻枟缁忛獙銆們<E98A86>
WorldMapScene
|
||||
ld_boss_bgloading_icon_gfxmloading_Sheet1_prompt_11<鍦ㄨ繖涓<E7B996>瀺鍚堥<E98D9A>閮介噷锛屼技涔庨殣钘忕潃浠€涔堝嵄鏈<E5B584>......凈scenesfight_06 ld_5v5_bgloading_icon_gfxmloading_Sheet1_prompt_127鐤<37>媯鍘熷<E98D98>浜<EFBFBD> 鍔涙皵澶ф槸鍘熷<E98D98>浜虹殑鐗圭偣涔嬩竴銆們<E98A86>scenesfight_05_01 loading_2loading_icon_gfxmloading_Sheet1_prompt_13<鐩镐俊鑷<E4BF8A>繁鏄<E7B981>壒鍒<E5A392>殑锛屾槸涔犲緱缁濅笘绁炲姛鐨勭<E990A8>閽ャ€們<E282AC>scenesfight_07
|
||||
ld_5v5_bg1loading_icon_gfxmloading_Sheet1_prompt_14Z鍧忚泲鑱旂洘蹇冧腑鏈変竴鏈靛杽鑹<E69DBD>箣鑺憋紝鑺卞紑鏃讹紝鍏ㄨ韩钄撳欢鐫€鎰夊揩鐨勫埡婵€鎰熴€們<E282AC>bossfight_naturetitan_01
|
||||
ld_boss_bgloading_icon_gfxmloading_Sheet1_prompt_15B妫<42>灄娣卞<E5A8A3>鐨勫法鍨嬬尒鐚╄韩涓婁技涔庤棌鐫€寰堝<E5AFB0>瑙夐啋鏉愭枡銆們<E98A86>bossfight_spinymandrilla_02
|
||||
ld_boss_bgloading_icon_gfxmloading_Sheet1_prompt_16<打败森林泰å<C2B0>¦å°±èƒ½èŽ·å¾—æ‰“é€ è¾…åŠ©å¥—è£…çš„æ<E2809E><C3A6>料。ƒùGameFightSceneld_mh_bg_zdloading_icon_gfxmloading_Sheet1_prompt_17<打败森林泰å<C2B0>¦å°±èƒ½èŽ·å¾—æ‰“é€ è¾…åŠ©å¥—è£…çš„æ<E2809E><C3A6>料。
|
||||
ld_boss_bgloading_icon_gfxmloading_Sheet1_prompt_16<打败森林泰å<C2B0>¦å°±èƒ½èŽ·å¾—æ‰“é€ è¾…åŠ©å¥—è£…çš„æ<E2809E><C3A6>料。ƒùGameFightSceneld_mh_bg_zdloading_icon_gfxmloading_Sheet1_prompt_17<打败森林泰å<C2B0>¦å°±èƒ½èŽ·å¾—æ‰“é€ è¾…åŠ©å¥—è£…çš„æ<E2809E><C3A6>料。ƒú
|
||||
GuildSceneld_mh_ghloading_icon_fcloading_Sheet1_prompt_183俱ä¹<C3A4>部是大家一起快ä¹<C3A4>玩è€<C3A8>的好地方。
|
Binary file not shown.
Binary file not shown.
1
GameConfig/game_mainachievement.bytes
Normal file
1
GameConfig/game_mainachievement.bytes
Normal file
@ -0,0 +1 @@
|
||||
Á±ªù$mainchapter_main_achievement_title_1碎片1à§Ü©attrgoldƒè
item_50013001Á²ªù$mainchapter_main_achievement_title_2碎片2à§Ü©attrgoldƒé
item_50013001Á³ªù$mainchapter_main_achievement_title_3碎片3à§Ü©attrgoldƒê
item_50013001Á´ªù$mainchapter_main_achievement_title_4碎片4à§Ü©attrgoldƒë
item_50013001Áµªù$mainchapter_main_achievement_title_5碎片5à§Ü©attrgoldƒì
item_50013001Á¶ªù$mainchapter_main_achievement_title_6碎片6à§Ü©attrgoldƒí
item_50013001Á·ªù$mainchapter_main_achievement_title_7碎片7à§Ü©attrgoldƒî
item_50013001Á¸ªù$mainchapter_main_achievement_title_8碎片8à§Ü©attrgoldƒï
item_50013001Á¹ªù$mainchapter_main_achievement_title_9碎片9à§Ü©attrgoldƒð
item_50013001
|
BIN
GameConfig/game_mainboss.bytes
Normal file
BIN
GameConfig/game_mainboss.bytes
Normal file
Binary file not shown.
Binary file not shown.
BIN
GameConfig/game_mainshopitem.bytes
Normal file
BIN
GameConfig/game_mainshopitem.bytes
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user