--
-- Maxscript on scriptauskieli 3DS Max:iin
--
--
-- 23 dec 02 R. J. Wolfe // http://www.99-bottles-of-beer.net/
for j = 99 to 1 by -1 do (
bottle = "bottle"
if j > 1 then (
bottle = bottle + "s"
)
format "% % of beer on the wall, \n" j bottle
format "% % of beer, \n" j bottle
format "Take one down, pass it around, \n"
if (j-1) == 1 then
bottle = "bottle"
else
bottle = "bottles"
format "% % of beer on the wall.\n\n" (j-1) bottle
)