1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
local str = {}
local fun = {}
local cache_1
local cache_2
local cache_3
str["Debug.ReloadFieldBegin"] = Debug.ReloadFieldBegin
Debug.ReloadFieldBegin = function(str_1, str_2)
end
_G["通关邀请"] = function()
local effect_1
effect_1 = Effect.GlobalEffect()
|
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
local str = {}
local fun = {}
local cache_1
local cache_2
local cache_3
str["Debug.ReloadFieldBegin"] = Debug.ReloadFieldBegin
Debug.ReloadFieldBegin = function(str_1, str_2)
str["Debug.ReloadFieldBegin"](str_1, str_2)
end
_G["通关邀请"] = function()
local effect_1
effect_1 = Effect.GlobalEffect()
|