|
func B takes nothing return nothing
local integer i = GetStoredInteger(GC,'1',"1")
call DisplayTimedTextToPlayer(GetLocalPlayer(),0,0,10,I2S(i))
endfunc
func A takes nothing return nothing
local integer i = 0
if GetLocalPlayer==2 then
call StoreInteger(GC,"1","1",1)
call SyncStoredInteger(GC,"1","1",)
call DisplayTimedTextToPlayer(GetLocalPlayer(),0,0,10,I2S(GetStoredInteger(GC,'1',"1") ))
endif
call StoreInteger(GC,"1","1",0)
call DisplayTimedTextToPlayer(GetLocalPlayer(),0,0,10,I2S(i))
call B()
endfunc
联机模式下
你是本地玩家2 触发func A
请问你屏幕上出现的结果是什么。。。
后面还有几题 有人答对了 继续出
- = 我的错。。写错东西了。。尴尬 已经改正。。 |
|