Quote: |
Should really allow loading of old .set files too. Just leave blank, or set default values, into the unassigned variables. |
Quote: |
Scrolling side-by-side view of all the ship variables would be nice too. |
Quote: |
Or maybe in the case of speed/thrusters, could have a hovering-tip include the % faster/slower than the total average of all ship's speed. So if all ships but the Warbird's max speed was 1500, and the Warbird's was 1700, it would show in the hover-tip +11%, while all the other ships would show -2%. Would give a nice feel for how much better the ship was than everything else. |
Quote: |
With the installer, give the option of where you'd like to place the icons of the program. I hate programs that force it to the desktop, and really hate it when it places it in the main start-menu listing. Forcing into the Program's start menu is fine (which for some reason, you don't do), but those other places I like to keep clean and I'm sure others do too. If you are having problems with the installer and adding these options, give NSIS a try. I love their installation system, and they have many third party GUIs for designing an installer very quickly. |
Quote: |
Should really allow loading of old .set files too |
Smong wrote: |
For me the links have been broken for a day now. |
Smong wrote: |
All of them, http://www.telefonica.net/ cannot be found or some such error.
Edit: Hrm seems to work now. |
Quote: |
For me the links have been broken for a day now. |
xor eax wrote: |
Also, forum moderators should get the new version and re-link it at top. |
Maverick wrote: |
maybe it would be better if the original template.sss is renamed to template.sss.org or template.sss.bak. I think thats what people usually use as extension. |
xor eax wrote: |
the components are already registered in your system |
Cyan~Fire wrote: |
You're adding registry keys? Please don't, just use an INI. |
Cyan~Fire wrote: |
You're adding registry keys? Please don't, just use an INI. |
Mine GO BOOM wrote: |
Actually, its a whole bunch of VB dlls and such that make it so bloated and require the installer to verify that they are all there. |
Cyan~Fire wrote: |
I just included the link to the MS site for the necessary DLLs. |
Cyan~Fire wrote: |
Well, there's always diff or windiff. |
Code: Show/Hide File1: server.cfg File2: somefile.set List of differences: Bomb:BombAliveTime (6000 / 3000) Brick:BrickTime (12000 / 8000) Bullet:ExactDamage (0 / <not found>) Flag:CarryFlags (1 / <error>) Differences: 4 Warning: somefile.set contains errors. |
Code: Show/Hide Changed properties: File1.cfg File2.cfg BulletAliveTime 100 200 SpawnSave 5000 3000 |
Code: Show/Hide ================================================================
1. Comparing (1) F:\vb\SubSet\server.cfg (2) F:\vb\SubSet\server3.set Files are equal ================================================================ ================================================================ 2. Comparing (1) F:\vb\SubSet\server.cfg (2) F:\vb\SubSet\server7.cfg Warning: File (2) contains errors Differences: 8 Setting (1) (2) -------------------------------------- ----------- ----------- Bomb:BombDamageLevel.................. ........750 ........600 Bomb:BombAliveTime.................... .......6000 ......12000 Bomb:BombExplodeDelay................. ........150 ........250 Bomb:BombExplodePixels................ .........80 .........55 Bomb:ProximityDistance................ ..........3 ..........2 Bomb:JitterTime....................... .........72 .........15 Bullet:BulletAliveTime................ ........550 ........450 Leviathan:InitialEnergy............... .......1000 .......1700 ================================================================ |
xor eax wrote: |
SubSet v1.5 is at top |
xor eax wrote: |
So... I'll try to cool down and put here more complete versions only. |
Cyan~Fire wrote: |
I would always come up with a cool feature and release immediately, only later realizing it crashed whenever you saved or something |
Cyan~Fire wrote: |
in C++ it's just a window style to add a scroll bar, no code necessary even. It's not just one of the form's properties? |
A380 wrote: |
Wow, how many versions are you going to do? |
Cyan~Fire wrote: |
A coding project is never finished. |
Maverick wrote: |
You can't remove a single file from the "With Files (x)" field on the "Compare CFG/SET Files" window |
Maverick wrote: |
Misc:PeriodicMessage - length can be longer then 99 |
Maverick wrote: |
Textfields are cut on the right |
Code: Show/Hide -You edit your server.set file and set it like this: Misc:PeriodicMessage0:<imagine 150 chars in here>:::Info about this... blah blah -Then you send it to server using "?setsettings server.set" command. The file server.cfg gets correctly updated. -Then you use ?getsettings from the client to retrieve the SET file again. Misc:PeriodicMessage0 is corrupt in the SET file. It looks like: Misc:PeriodicMessage0:<imagine 99 chars in here>PeriodicMessage1:::Info about this... blah blah |
Code: Show/Hide Notes:SettingName (255) Notes:Maker (255) Notes:CoMaker (255) Notes:MapName (255) Notes:Mapper (255) Notes:Note1 (255) Notes:Note2 (255) Notes:Note3 (255) Notes:Note4 (255) Notes:Note5 (255) Misc:SheepMessage (159) *see notes below Misc:GreetMessage (158) *see notes below Misc:PeriodicMessage0 (159) *see notes below Misc:PeriodicMessage1 (159) *see notes below Misc:PeriodicMessage2 (159) *see notes below Misc:PeriodicMessage3 (159) *see notes below Misc:PeriodicMessage4 (159) *see notes below Misc:LevelFiles (255) Owner:Name (255) Maker:Maker (255) |
Code: Show/Hide Misc:PeriodicMessage0:1 1 <159 chars goes in here> and Misc:PeriodicMessage0:15 15 <159 chars goes in here> are both valid settings, but Misc:PeriodicMessage0:1 1 <160 chars goes in here> is not valid, the last character of the message won't be shown |