Files
gtav-src/tools_ng/wildwest/script/3dsMax/General_tools/GetLatest_RsTechArtTools.ms
T
2025-09-29 00:52:08 +02:00

14 lines
590 B
Plaintext
Executable File

(
query = queryBox "This will grab latest wildwest tools and then shutdown max\n Do you want to continue?" title:"Proceed?"
if query == false then return 0
--connect to perforce if we need to
if gRsPerforce.connected() == false then gRsPerforce.connect()
--get the latest wildwest tools and the max menus
gRsPerforce.sync #((RsConfigGetToolsDir() + "dcc/current/max2012/ui/macroscripts/rstecharttools.mcr"),
(RsConfigGetToolsDir() + "dcc/current/max2012/scripts/pipeline/rstecharttools.ms"),
(RsConfigGetToolsDir() + "wildwest/..."))
quitMax()
)