Notifications
Clear all

[Closed] max version

Hej Guys,

Simple question, how to find out in maxscript that what 3dsmax version running?
Thx,

Search didnt worked so I fugured easier to post. Thx.

2 Replies

maxVersion()

a search (if you can get it working) will reveal a nice little snippet from Bobo that this is based on


	case (maxVersion())[1] of
	(
		9000:	  -- this is max9
		10000:	-- this is max2008
		11000:	-- this is max2009
		12000:	-- this is max2010
		13000:	-- tihs will be max2011!
	)

J.