服务端下载
客户端下载
游戏ini文件加密解密工具
---还完数据库 将db放到/root/gf_server---
sudo su - postgres
psql
\c gf_ls postgres
\i /root/gf_server/db/ska_schema after \i /root/gf_server/db/ska_schema_alter
\i /root/gf_server/db/itemmall after \i /root/gf_server/db/fortune_bag after \i /root/gf_server/db/elf_lotttery
after
\c gf_gs postgres
\i /root/gf_server/db/sk_schema after \i /root/gf_server/db/sk_schema_alter
---gf_gs 创建服务器, 自行修改IP:192.168.1.100---
INSERT INTO "public"."serverstatus" ("id", "name", "ext_address", "ext_port", "int_address", "int_port", "last_start_time", "last_vip_mail_time", "next_itemmall_time", "bf_count", "last_race_reset_time", "daily_awards_time_record", "daily_awards_begin_date", "daily_awards_flags") VALUES (1010, 'WorldServer', '192.168.1.100', 5567, '127.0.0.1', 5568, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO "public"."serverstatus" ("id", "name", "ext_address", "ext_port", "int_address", "int_port", "last_start_time", "last_vip_mail_time", "next_itemmall_time", "bf_count", "last_race_reset_time", "daily_awards_time_record", "daily_awards_begin_date", "daily_awards_flags") VALUES (1011, 'ZoneServer', '192.168.1.100', 10020, '127.0.0.1', 10021, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO "public"."serverstatus" ("id", "name", "ext_address", "ext_port", "int_address", "int_port", "last_start_time", "last_vip_mail_time", "next_itemmall_time", "bf_count", "last_race_reset_time", "daily_awards_time_record", "daily_awards_begin_date", "daily_awards_flags") VALUES (-2, 'MissionServer', 'none', -1, '127.0.0.1', 7654, 1674784860, 0, 0, 0, 1674784920, 0, 0, 0);
---gf_ls 创建服务器+账号, 自行修改IP:192.168.1.100--
INSERT INTO "public"."worlds" ("id", "name", "ip", "port", "online_user", "maxnum_user", "state", "version", "show_order") VALUES (1010, '精靈樂章-分流01', '192.168.1.100', 5567, 0, 1000, 1, '006.751.79.79', 0);
INSERT INTO "public"."accounts" ("id", "username", "password", "realname", "worldserver", "state", "charpassword", "health_online_time", "health_offline_time", "last_save_health_time", "use_charpassword", "char_max_num", "win_os_bit") VALUES (1, 'testapp', '12345', 'testapp', 1010, 0, '', 0, 0, 0, 't', 9, 64);
|