top of page
- Script Code -

dofile(reaper.AZ_GetLuaInitPath())


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

- Warm Up -

準備の必要はありません

- Script Detail -

dofile(reaper.AZ_GetLuaInitPath())


  • Lua版RIGDOCKSの初期設定読み込み


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")

- API LINK -

Beginner

AZ_if_2

elseifを利用した条件テスト

01_BRONZE_ss_edited.png
01_SILVER_edited_edited.png
03_GOLD_edited_edited.png
bottom of page