( search forums )
Tee hee, Mods Manager
Soldat Forums - Soldat Fans - Fan Apps
mar77a
February 18, 2006, 10:36 pm
Yeah, another app, this time...Soldat Mods Manager:

how it works
1. the directories in Soldat/Mods are read into the list box
2. when you press "run mod", a shell command is sent with the followind command line: soldat.exe -mod "selectedmod"
3.hai

Screeny:

[IMAGE]


Download

SERIAL KILLeR
February 18, 2006, 10:43 pm
Nice but it doesnt work with names/folders with spaces in.
But this can easely be fixed by making -mod "folder name"

mar77a
February 18, 2006, 11:11 pm
Wops, forgot.

Fixed, redownload.

Thanks sk

a-4-year-old
February 18, 2006, 11:13 pm
soldat mod mixer looks cooler and more "in depth" because you can interchange parts of each mod, but good effort.

edak
February 18, 2006, 11:22 pm
the link doesn't work for me....

BTW thanks 4-year-old, i think i might improve soldat mod mixer too, any suggestions?

Raptor
February 19, 2006, 4:01 am
Really cool and simple app. Nice!
I'll check that Soldat Mod Mixer, sounds nice (a-4-year-old's comment)

GAMEOVER
February 19, 2006, 4:11 am
I know how it works, but itd be nice to see you provide a little more info on how it works. Nice work ill be using, thx.

Deleted User
February 22, 2006, 5:53 pm
did you code that in vb or c++

edak
February 22, 2006, 9:09 pm
delta, does that matter?

mar77a
February 22, 2006, 9:57 pm
he wants to hax it,

it's in vb

Deleted User
February 23, 2006, 3:49 am
wow thank you for the insult and the reason i was asking is because i wanted to know how you managed to read the folders in the mod folder. i'v never been able to figure it out and the way your program looks got me back into working on my own. of couse now that im called a hacker in the forums makes me want to spit on it.

mar77a
February 23, 2006, 12:38 pm
hhhahahh


hahahahhaha

did you take that seriously?

hahahahahah

hahahahahahha


EDIT, and yeah that part was the hardest to code:

[code]Private Sub Form_Load()
If FExists("soldat.exe") = 0 Then
MsgBox "Program must be placed in your main Soldat folder", vbOKOnly + vbCritical, "Soldat Mods Manager"
End
End If
Dim directorios As String
List1.Clear
ChDir ("mods")
directorios = Dir("*", vbDirectory)
Dim posit As Integer
posit = 0
Do While directorios <> ""
If directorios <> "." And directorios <> ".." Then
If (GetAttr(directorios) And vbDirectory) = _
vbDirectory Then
List1.AddItem directorios
posit = 1
End If
End If
directorios = Dir
Loop
If posit = 0 Then
List1.AddItem "No mods."
End If
End Sub
[/code]

rainrider
February 23, 2006, 2:30 pm
lol hardest
things like that i can write in seconds

edak
February 24, 2006, 12:42 pm
that was the easiest addition to my own program, but hey, he has done a good job of it.

Try Soldat Mod Mixer

mar77a
February 24, 2006, 5:22 pm
WEll, i said it was my first VB app. Btw, it's Mod Mixer in your link.

Zero72
February 24, 2006, 7:28 pm
Hell, I might just decide to use this. It's nice and simple and apparently does the job.