Need testers, gmax export .ase, .asc , here scripts


(Kic) #1

Hi sorry cant test it, waiting on new PC, using internet in mobile phone. Here ase export + videotut How to export www.esnips.com/t/gmax
and second Kerrax asc import/export (to import ase model , require rename .ase on .asc) 1st link http://forum.worldofplayers.de/forum/showthread.php?t=340148&page=3

2nd link http://forum.worldofplayers.de/forum/showthread.php?p=5572886

and last is ms3d import/export script Here 1 link http://forums.totalwar.org/vb/showthread.php?t=96043

                                               Here 2nd http://www.twcenter.net/forums/showthread.php?t=134461

finally working gmax md2 export script + instruction and screen from gmax , here http://ufoai.ninex.info/wiki/index.php/Modelling/Gmax


(Qualmi) #2

im not yet into gmax, sry :confused:


(shagileo) #3

It’s like you’re writing this with your last (final) breath :smiley:
All respect of course, because you’re using mobile. Sorry can’t help you either


(Kic) #4

No one test these ?


(Kic) #5

Sorry , no one tried ?


(Delirium) #6

Hi, you might not know who i am and i have no idea who anyone here is but thanks to you and google i can export this baby to an .ase instead of a .md3
I come from a game Called Urban Terror :stuck_out_tongue: and i needed this to export a model to put into my map

Thanks heaps!

~Delirium

Edit the only thing was that it was in german i think. but it doesnt matter i got what you were doing.


(bpao) #7

hello,

have start testing Export ASE 2.0… work fine (only animation don’t work for now… but i need more tries)

but the main problem is the F…ing clipboard of GMax.

i do a small script with autoit to avoid many copy/paste

WinWait(“MAXScript Listener”)
WinActivate(“MAXScript Listener”)
$text=ControlGetText(“MAXScript Listener”,"",1001)
if @error Then
MsgBox(0,“Erreur”,"…"&$text)
EndIf
;~ MsgBox(0,“ok”,$text)

$filename=FileOpenDialog(“Select Export Name”,@DesktopDir,“All (.)”,8,“export.ase”)
if @error Then
MsgBox(0,“Erreur”,“file creat error”)
EndIf
$file=FileOpen ($filename,2)
if $file = -1 Then
MsgBox(0,“Erreur”,“creat file error !”)
Else
;~ ecrire fichier
FileWrite($file,$text)

FileClose($file)
MsgBox(0,“ok”,“export ok”)
EndIf

build it with autoit (free) and try it.

open Gmax, export to ASE, open Listener with F11… and run the script, give it the export name…and check it.

i do very low check…i think the script could be better.

have fun.

Olivier