• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Model Editor Extension Registry Problem!

Status
Not open for further replies.
Level 6
Joined
Feb 5, 2012
Messages
1,685
How i can fix this?..

214829-albums6216-picture68475.png


I check the edit - register extensions

214829-albums6216-picture68476.png


So this pops-up when i try to uncheck and check the extensions.. maybe it will fix but not..

214829-albums6216-picture68477.png


214829-albums6216-picture68474.png
 
Level 26
Joined
Aug 18, 2009
Messages
4,097
Quotation mark mistake. The model editor somehow weirdly reads in all passed arguments to merge it to the file path and finally quotes it.

Create a batch in its directory with the following contents:

Code:
cd /d %~dp0

Set _p=%1

CALL :dequote _p

War3ModelEditor.exe %_p%

Goto :eof

:DeQuote
for /f "delims=" %%A in ('echo %%%1%%') do set %1=%%~A
Goto :eof

and register it as dedicated extension opener.
 
Status
Not open for further replies.
Top