top of page

3

Beginner

AZ_if_2

elseifを利用した条件テスト

RANK

function Msg(param)

    reaper.ShowConsoleMsg(tostring(param).."\n")

end

count = 35

if count < 5 then

    Msg("5")

elseif count < 10 then

    Msg("10")

elseif count < 15 then

    Msg("15")

elseif count < 20 then

    Msg("20")

elseif count < 25 then

    Msg("25")

elseif count < 30 then

    Msg("30")

elseif count < 35 then

    Msg("35")

elseif count < 40 then

    Msg("40")

end

function Msg(param)

reaper.ShowConsoleMsg(tostring(param).."\n")

end


  • Msg コンソール出力関数をセット


count = 35


  • [35]という整数を変数(count)に保存


if count < 5 then


  • 変数が5未満(5は入らない)の場合


Msg("5")


  • [5]をコンソールに出力


elseif count < 10 then

Msg("10")

elseif count < 15 then

Msg("15")

elseif count < 20 then

Msg("20")

elseif count < 25 then

Msg("25")

elseif count < 30 then

Msg("30")

elseif count < 35 then

Msg("35")

To use the API, you need to sign up for a plan.

Download the dedicated API

need to do it.

*SILVER is scheduled to be released in May.

準備の必要はありません

- Script Code -
- Script Image -
- Warm Up -
- Script Detail -
- API -

LUA

​ReaScript File Download 👇

* A dedicated API is required to run this

- Script Image -
bottom of page