修复小程序wxapi 的依赖全部改成 api

This commit is contained in:
2026-04-14 08:31:24 +08:00
parent bcf46d0fda
commit fcb61618b8
167 changed files with 27683 additions and 27521 deletions

View File

@@ -1,2 +1,2 @@
# Debug URL template - replace IP:PORT with actual game server address
# Debug URL template - replace IP:PORT with actual game server address
# http://GAME_SERVER_IP:PORT?data=...

View File

@@ -1 +1 @@
"idx" "play_agentid" "play_playerid" "play_channelid" "play_openid" "play_unionid" "play_nickname" "play_avatar" "play_sex" "play_province" "play_city" "play_roomcard" "play_bean" "play_regtime" "play_lasttime" "play_logindate" "play_usecard" "play_taskaward" "play_type" "play_score" "play_a_country" "play_a_province" "play_a_city" "play_a_citycode" "play_a_district" "play_a_street" "play_a_address" "play_longitude" "play_latitude" "play_invitecode" "play_inviteid" "play_state" "play_advanced" "play_shortcode" "play_roomcodes" "play_desone" "play_destwo" "play_whitelist" "play_limit" "play_notice" "play_bankpower" "play_bank" "play_bankpwd" "play_tel" "play_wechat" "play_marketid" "play_phoneinfo" "play_sign"
"idx" "play_agentid" "play_playerid" "play_channelid" "play_openid" "play_unionid" "play_nickname" "play_avatar" "play_sex" "play_province" "play_city" "play_roomcard" "play_bean" "play_regtime" "play_lasttime" "play_logindate" "play_usecard" "play_taskaward" "play_type" "play_score" "play_a_country" "play_a_province" "play_a_city" "play_a_citycode" "play_a_district" "play_a_street" "play_a_address" "play_longitude" "play_latitude" "play_invitecode" "play_inviteid" "play_state" "play_advanced" "play_shortcode" "play_roomcodes" "play_desone" "play_destwo" "play_whitelist" "play_limit" "play_notice" "play_bankpower" "play_bank" "play_bankpwd" "play_tel" "play_wechat" "play_marketid" "play_phoneinfo" "play_sign"

View File

@@ -1,7 +0,0 @@
@echo off
title BaibaoxiangServer
cd /d "%~dp0"
echo Starting Baibaoxiang Server...
echo Server will run on port 3000 (or configured port)
node index.js
pause

View File

@@ -1,12 +0,0 @@
@echo off
title WeChat Server - Running
color 0A
cls
:: 切换到脚本所在目录,确保 node 能找到 index.js
cd /d "%~dp0"
echo Starting WeChat Server...
echo.
node index.js
pause

View File

@@ -1,21 +0,0 @@
@echo off
setlocal
set PORT=3000
echo Looking for process on port %PORT%...
:: 查找占用端口 3000 的进程 PID
set PID=
for /f "tokens=5" %%a in ('netstat -aon ^| findstr ":%PORT% " ^| findstr "LISTENING"') do (
set PID=%%a
)
if defined PID (
echo Found process with PID: %PID%
echo Killing process...
taskkill /F /PID %PID%
echo Server stopped successfully.
) else (
echo No server found running on port %PORT%.
)
pause