Game Development Community

.DSO files not working properly

by ana torres · in Torque Game Builder · 11/12/2012 (3:16 pm) · 3 replies

Hi, well my problem is that I rewrite something on my .cs file but then it wont make any changes, so I think that the problem is with de .dso file. Anyone knows how to update o recreate them? Thank you!

About the author

Recent Threads


#1
11/12/2012 (3:38 pm)
Double check the console (hit the tilde or ~ key) that there aren't any errors in your code. Finally, if you copy an older ".cs" file over an newer one, the ".dso" doesn't always compile. If that's the case, just delete the ".dso" file and try again!
#2
11/12/2012 (4:27 pm)
:O ok it seems it worked :) thank you
#3
11/14/2012 (10:31 pm)
You really should NOT have a persistent problem with this, but if you do, a CleanDSO.bat used to come with TGB that was something simply like:

@ECHO OFF
del *.dso
REM youll want a del line for each folder that needs to be cleared of
REM compiled scripts.