├── README.md ├── base ├── buffer.js ├── compressor.js ├── config.js ├── db.js ├── http.js ├── index_multi.js ├── log.js └── util.js ├── game ├── app.js ├── billing_client.js ├── config.ini ├── data │ ├── achievement.json │ ├── activity.json │ ├── battle_field.json │ ├── beauty.json │ ├── beauty_pool.json │ ├── card.json │ ├── card_exp.json │ ├── card_fragment.json │ ├── card_pool.json │ ├── const.json │ ├── drop.json │ ├── exchange.json │ ├── explore.json │ ├── explore_event.json │ ├── gate.json │ ├── gift.json │ ├── initialization.json │ ├── item.json │ ├── key_words.txt │ ├── login_reward.json │ ├── play_first_name.json │ ├── play_last_name.json │ ├── purchase_shop.json │ ├── rank_reward.json │ ├── rank_time_reward.json │ ├── recharge_reward.json │ ├── recruit.json │ ├── robot.json │ ├── role_exp.json │ ├── sacrifice.json │ ├── server_config.json │ ├── share.json │ ├── shop.json │ ├── sign_reward.json │ ├── town.json │ ├── town_reward.json │ └── town_title.json ├── dynamic.ini ├── game_server.js ├── master_data │ └── town_reward.json ├── master_logic │ ├── common_func.js │ ├── help_log_data_logic.js │ ├── help_tick_logic.js │ ├── json_config_file.js │ ├── log_data.js │ └── town_reward_data.js ├── master_server.js ├── msg_logic │ ├── achievement_data.js │ ├── activity_data.js │ ├── arena_data.js │ ├── battle_field_data.js │ ├── card_data.js │ ├── card_exp_data.js │ ├── card_frag_data.js │ ├── code_data.js │ ├── common_func.js │ ├── constant_data.js │ ├── data_struct.js │ ├── define_code.js │ ├── drop_data.js │ ├── explore_data.js │ ├── explore_event_data.js │ ├── formation_data.js │ ├── friend_data.js │ ├── gate_data.js │ ├── gift_data.js │ ├── help_activity_logic.js │ ├── help_arena_logic.js │ ├── help_billing_logic.js │ ├── help_card_logic.js │ ├── help_chat_logic.js │ ├── help_child_logic.js │ ├── help_client_error_logic.js │ ├── help_drop_logic.js │ ├── help_explore_logic.js │ ├── help_formation_logic.js │ ├── help_friend_logic.js │ ├── help_gate_logic.js │ ├── help_gift_logic.js │ ├── help_gm_billing_logic.js │ ├── help_item_logic.js │ ├── help_log_data_logic.js │ ├── help_login_logic.js │ ├── help_mail_logic.js │ ├── help_money_logic.js │ ├── help_purchase_shop_logic.js │ ├── help_recruit_logic.js │ ├── help_role_data_logic.js │ ├── help_share_logic.js │ ├── help_shop_logic.js │ ├── help_town_logic.js │ ├── initialization_data.js │ ├── item_data.js │ ├── json_config_file.js │ ├── key_words_data.js │ ├── log_data.js │ ├── login_reward_data.js │ ├── mail_data.js │ ├── make_db.js │ ├── msg_type.js │ ├── play_name.js │ ├── pool_data.js │ ├── purchase_shop_data.js │ ├── recharge_reward_data.js │ ├── recruit_data.js │ ├── robot_data.js │ ├── role_exp_data.js │ ├── server_config_data.js │ ├── share_data.js │ ├── shop_data.js │ ├── sign_reward_data.js │ ├── t_reward_data.js │ ├── test.js │ ├── town_data.js │ └── town_title_data.js └── server.log ├── server.log ├── start_server.sh └── stop_server.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/README.md -------------------------------------------------------------------------------- /base/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/base/buffer.js -------------------------------------------------------------------------------- /base/compressor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/base/compressor.js -------------------------------------------------------------------------------- /base/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/base/config.js -------------------------------------------------------------------------------- /base/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/base/db.js -------------------------------------------------------------------------------- /base/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/base/http.js -------------------------------------------------------------------------------- /base/index_multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/base/index_multi.js -------------------------------------------------------------------------------- /base/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/base/log.js -------------------------------------------------------------------------------- /base/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/base/util.js -------------------------------------------------------------------------------- /game/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/app.js -------------------------------------------------------------------------------- /game/billing_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/billing_client.js -------------------------------------------------------------------------------- /game/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/config.ini -------------------------------------------------------------------------------- /game/data/achievement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/achievement.json -------------------------------------------------------------------------------- /game/data/activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/activity.json -------------------------------------------------------------------------------- /game/data/battle_field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/battle_field.json -------------------------------------------------------------------------------- /game/data/beauty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/beauty.json -------------------------------------------------------------------------------- /game/data/beauty_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/beauty_pool.json -------------------------------------------------------------------------------- /game/data/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/card.json -------------------------------------------------------------------------------- /game/data/card_exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/card_exp.json -------------------------------------------------------------------------------- /game/data/card_fragment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/card_fragment.json -------------------------------------------------------------------------------- /game/data/card_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/card_pool.json -------------------------------------------------------------------------------- /game/data/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/const.json -------------------------------------------------------------------------------- /game/data/drop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/drop.json -------------------------------------------------------------------------------- /game/data/exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/exchange.json -------------------------------------------------------------------------------- /game/data/explore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/explore.json -------------------------------------------------------------------------------- /game/data/explore_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/explore_event.json -------------------------------------------------------------------------------- /game/data/gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/gate.json -------------------------------------------------------------------------------- /game/data/gift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/gift.json -------------------------------------------------------------------------------- /game/data/initialization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/initialization.json -------------------------------------------------------------------------------- /game/data/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/item.json -------------------------------------------------------------------------------- /game/data/key_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/key_words.txt -------------------------------------------------------------------------------- /game/data/login_reward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/login_reward.json -------------------------------------------------------------------------------- /game/data/play_first_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/play_first_name.json -------------------------------------------------------------------------------- /game/data/play_last_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/play_last_name.json -------------------------------------------------------------------------------- /game/data/purchase_shop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/purchase_shop.json -------------------------------------------------------------------------------- /game/data/rank_reward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/rank_reward.json -------------------------------------------------------------------------------- /game/data/rank_time_reward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/rank_time_reward.json -------------------------------------------------------------------------------- /game/data/recharge_reward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/recharge_reward.json -------------------------------------------------------------------------------- /game/data/recruit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/recruit.json -------------------------------------------------------------------------------- /game/data/robot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/robot.json -------------------------------------------------------------------------------- /game/data/role_exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/role_exp.json -------------------------------------------------------------------------------- /game/data/sacrifice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/sacrifice.json -------------------------------------------------------------------------------- /game/data/server_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/server_config.json -------------------------------------------------------------------------------- /game/data/share.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/share.json -------------------------------------------------------------------------------- /game/data/shop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/shop.json -------------------------------------------------------------------------------- /game/data/sign_reward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/sign_reward.json -------------------------------------------------------------------------------- /game/data/town.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/town.json -------------------------------------------------------------------------------- /game/data/town_reward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/town_reward.json -------------------------------------------------------------------------------- /game/data/town_title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/data/town_title.json -------------------------------------------------------------------------------- /game/dynamic.ini: -------------------------------------------------------------------------------- 1 | {"stop":0} 2 | -------------------------------------------------------------------------------- /game/game_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/game_server.js -------------------------------------------------------------------------------- /game/master_data/town_reward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/master_data/town_reward.json -------------------------------------------------------------------------------- /game/master_logic/common_func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/master_logic/common_func.js -------------------------------------------------------------------------------- /game/master_logic/help_log_data_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/master_logic/help_log_data_logic.js -------------------------------------------------------------------------------- /game/master_logic/help_tick_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/master_logic/help_tick_logic.js -------------------------------------------------------------------------------- /game/master_logic/json_config_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/master_logic/json_config_file.js -------------------------------------------------------------------------------- /game/master_logic/log_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/master_logic/log_data.js -------------------------------------------------------------------------------- /game/master_logic/town_reward_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/master_logic/town_reward_data.js -------------------------------------------------------------------------------- /game/master_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/master_server.js -------------------------------------------------------------------------------- /game/msg_logic/achievement_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/achievement_data.js -------------------------------------------------------------------------------- /game/msg_logic/activity_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/activity_data.js -------------------------------------------------------------------------------- /game/msg_logic/arena_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/arena_data.js -------------------------------------------------------------------------------- /game/msg_logic/battle_field_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/battle_field_data.js -------------------------------------------------------------------------------- /game/msg_logic/card_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/card_data.js -------------------------------------------------------------------------------- /game/msg_logic/card_exp_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/card_exp_data.js -------------------------------------------------------------------------------- /game/msg_logic/card_frag_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/card_frag_data.js -------------------------------------------------------------------------------- /game/msg_logic/code_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/code_data.js -------------------------------------------------------------------------------- /game/msg_logic/common_func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/common_func.js -------------------------------------------------------------------------------- /game/msg_logic/constant_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/constant_data.js -------------------------------------------------------------------------------- /game/msg_logic/data_struct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/data_struct.js -------------------------------------------------------------------------------- /game/msg_logic/define_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/define_code.js -------------------------------------------------------------------------------- /game/msg_logic/drop_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/drop_data.js -------------------------------------------------------------------------------- /game/msg_logic/explore_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/explore_data.js -------------------------------------------------------------------------------- /game/msg_logic/explore_event_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/explore_event_data.js -------------------------------------------------------------------------------- /game/msg_logic/formation_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/formation_data.js -------------------------------------------------------------------------------- /game/msg_logic/friend_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/friend_data.js -------------------------------------------------------------------------------- /game/msg_logic/gate_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/gate_data.js -------------------------------------------------------------------------------- /game/msg_logic/gift_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/gift_data.js -------------------------------------------------------------------------------- /game/msg_logic/help_activity_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_activity_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_arena_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_arena_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_billing_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_billing_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_card_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_card_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_chat_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_chat_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_child_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_child_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_client_error_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_client_error_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_drop_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_drop_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_explore_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_explore_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_formation_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_formation_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_friend_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_friend_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_gate_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_gate_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_gift_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_gift_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_gm_billing_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_gm_billing_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_item_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_item_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_log_data_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_log_data_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_login_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_login_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_mail_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_mail_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_money_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_money_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_purchase_shop_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_purchase_shop_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_recruit_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_recruit_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_role_data_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_role_data_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_share_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_share_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_shop_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_shop_logic.js -------------------------------------------------------------------------------- /game/msg_logic/help_town_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/help_town_logic.js -------------------------------------------------------------------------------- /game/msg_logic/initialization_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/initialization_data.js -------------------------------------------------------------------------------- /game/msg_logic/item_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/item_data.js -------------------------------------------------------------------------------- /game/msg_logic/json_config_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/json_config_file.js -------------------------------------------------------------------------------- /game/msg_logic/key_words_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/key_words_data.js -------------------------------------------------------------------------------- /game/msg_logic/log_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/log_data.js -------------------------------------------------------------------------------- /game/msg_logic/login_reward_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/login_reward_data.js -------------------------------------------------------------------------------- /game/msg_logic/mail_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/mail_data.js -------------------------------------------------------------------------------- /game/msg_logic/make_db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/make_db.js -------------------------------------------------------------------------------- /game/msg_logic/msg_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/msg_type.js -------------------------------------------------------------------------------- /game/msg_logic/play_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/play_name.js -------------------------------------------------------------------------------- /game/msg_logic/pool_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/pool_data.js -------------------------------------------------------------------------------- /game/msg_logic/purchase_shop_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/purchase_shop_data.js -------------------------------------------------------------------------------- /game/msg_logic/recharge_reward_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/recharge_reward_data.js -------------------------------------------------------------------------------- /game/msg_logic/recruit_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/recruit_data.js -------------------------------------------------------------------------------- /game/msg_logic/robot_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/robot_data.js -------------------------------------------------------------------------------- /game/msg_logic/role_exp_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/role_exp_data.js -------------------------------------------------------------------------------- /game/msg_logic/server_config_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/server_config_data.js -------------------------------------------------------------------------------- /game/msg_logic/share_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/share_data.js -------------------------------------------------------------------------------- /game/msg_logic/shop_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/shop_data.js -------------------------------------------------------------------------------- /game/msg_logic/sign_reward_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/sign_reward_data.js -------------------------------------------------------------------------------- /game/msg_logic/t_reward_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/t_reward_data.js -------------------------------------------------------------------------------- /game/msg_logic/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/msg_logic/town_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/town_data.js -------------------------------------------------------------------------------- /game/msg_logic/town_title_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/game/msg_logic/town_title_data.js -------------------------------------------------------------------------------- /game/server.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/start_server.sh -------------------------------------------------------------------------------- /stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyfcode/zspeed/HEAD/stop_server.sh --------------------------------------------------------------------------------