|
aese126 發表於 Oct 1, 2016 23:54:50 GMT
各位大大請教一下 假設已寫好三個lua檔案(A.lua,B.lua,C.lua) 我想要用第四個新創的LUA檔案(D.lua),去遇到狀況(狀況1,狀況2,狀況3)去執行執行前三個不同檔案
執行D.LUA if(B4:exists("狀況1.png",270) ) then 執行A.lua的檔案腳本1次 end if(B4:exists("狀況2.png",270) ) then
執行B.lua的檔案腳本3次
end
if(B4:exists("狀況3.png",270) ) then
執行C.lua的檔案腳本10次
end
以上的設定 此軟體是否可執行,可否給予範例參考 或告知一下指令該打那些 感恩
|
|
|
AnkuLua 發表於 Oct 2, 2016 1:23:19 GMT
各位大大請教一下 假設已寫好三個lua檔案(A.lua,B.lua,C.lua) 我想要用第四個新創的LUA檔案(D.lua),去遇到狀況(狀況1,狀況2,狀況3)去執行執行前三個不同檔案 執行D.LUA if(B4:exists(" 狀況1.png",270) ) then 執行 A.lua的檔案腳本1次 end if(B4:exists(" 狀況2.png",270) ) then 執行 B.lua的檔案腳本3次 end if(B4:exists(" 狀況3.png",270) ) then 執行 C.lua的檔案腳本10次 end 以上的設定 此軟體是否可執行,可否給予範例參考 或告知一下指令該打那些 感恩 參考看看 if(B4:exists("狀況1.png",270) ) then dofile(A.lua) end
if(B4:exists("狀況2.png",270) ) then for i = 1, 3 do dofile(B.lua) end end
if(B4:exists("狀況3.png",270) ) then for i = 1, 10 do dofile(C.lua) end end
|
|