瀏覽代碼

添加TestServer文件路径,删除账号加删除tab_name表里的账号

cyzhao 11 月之前
父節點
當前提交
2df49782ad

+ 1 - 0
Gameserver/App/AutoLoad.php

@@ -22,6 +22,7 @@ class AutoLoad {
                 ROOTDIR . '/process/', #                                        # 逻辑处理代码
                 ROOTDIR . '/model/User/', #                                     # 数据结构定义
                 ROOTDIR . '/process/ActiveProc/',
+                ROOTDIR . '/Services/',
             );
             if (defined("CodeGen_Folder")) {
                 $incs[] = CodeGen_Folder;

+ 1 - 1
Gameserver/App/model/Const/GameConfig.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-06-24 11:28:06
+ // 日期: 2024-06-25 11:02:01
 ////////////////////
 
 /**

+ 1 - 1
Gameserver/App/model/Const/sm_activeTask.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-06-07 18:24:30
+ // 日期: 2024-06-24 14:05:46
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_activeTask_type.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-06-07 18:24:30
+ // 日期: 2024-06-24 14:05:46
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_globalsettings.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-06-24 11:08:12
+ // 日期: 2024-06-25 10:35:46
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_hero.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-06-21 17:05:46
+ // 日期: 2024-06-24 18:05:46
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_heroType_typeId.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-06-21 17:05:46
+ // 日期: 2024-06-24 18:05:46
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_predicate.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-06-21 15:05:46
+ // 日期: 2024-06-24 11:43:04
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_waveItem.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-06-24 11:05:46
+ // 日期: 2024-06-25 10:49:10
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_waves.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-06-24 11:05:46
+ // 日期: 2024-06-25 10:49:10
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/process/SystemProc.php

@@ -106,7 +106,7 @@ class SystemProc {
     static function getSysMessage() {
         //客户端参数解析
         $ts = req()->paras[0];                                                   # 消息列表有效时间戳
-        $defaultwaitcont = 60;                                                  # 暂时使用60秒作为频率,若是有压力就调大些. 若是没有问题,可以调小些.
+        $defaultwaitcont = 30;                                                  # 暂时使用60秒作为频率,若是有压力就调大些. 若是没有问题,可以调小些.
         $itemDisplayTime = 7;                                                   # 7秒显示完一条消息
 
         $sysMessage = self::mem_getSysMsg_zset(req()->zoneid, $ts);

+ 2 - 1
Gameserver/App/process/UserProc.php

@@ -44,7 +44,8 @@ class UserProc {
     public static function delUserUid() {
         TestServer::deleteUserUId(req()->uid, req()->zoneid);
         FightProc::DeleteRankInvalidUser(req()->uid);
-
+        self::delRegRole(req()->zoneid, req()->uid, ctx()->baseInfo->name);
+        
         UserProc::updateUserInfo();
         $ret = array();
         return Resp::ok($ret);