3ds Max 2023 Support

Below is the culmination of all the info above, with some fixed code (as earlier mentioned code fixes had incorrect syntax)

  • Go to the machine where the repository is
  • Go to the plugins folder: C:\DeadlineRepository10\plugins\3dsmax
  • Open/edit 3dsmax.py
  • search for'self.AddPopupIgnorer(".*Scripting Listener.*")'

if it’s not there:

  • go to around line 3170-ish (or search for
        # For Brazil 
        self.AddPopupIgnorer(".*Brazil Console.*")

above that code, add:

        # Ignore Scripting Listener popup
        self.AddPopupIgnorer(".*Scripting Listener.*")

for some reason even the 10.1.23.6 install didn’t have this fix implemented properly.

1 Like