|
|
| (2人の利用者による、間の13版が非表示) |
| 1行目: |
1行目: |
| function p.listAptTurple(frame) -- 仮
| | local p={} |
| data={}
| | |
| i=1
| | return p |
| while frame.args[i] do
| |
| data[i]=tonumber(frame.args[i])
| |
| end
| |
| output=""
| |
| for i=1,#data do
| |
| for j=1,#data do
| |
| n=70-(frame.args[i]+frame.args[j])
| |
| if n>frame.args[i] and n>frame.args[i] then
| |
| output=output.."("..frame.args[i]..","..frame.args[j]..","..n..")"
| |
| end
| |
| end
| |
| end
| |
| end
| |