
Master has given Dobby a doctorate! Dobby is free!
If you set it up right, it shouldn't eat up strings...you need to use a different string for every line, for maximum benefit. Otherwise, despite the similar lines, the entire string won't be the same.
What I'm saying is this:
scenario #1:
Collapse Box

string1:
[1] Objective: Attack Ahli
[2] Enemy Nearby!
[3] 100% HP
Vs. three separate strings
Collapse Box

string 1: Objective: Rape Pedobear
string 2: Enemy Nearby!
string 3: 100% HP
In the first example, every time you want any change at all in the entire string, you need another string...which means you need 99 strings just for your HP, in addition to 99 more strings saying the enemy is distant [for each change in HP], and another set for your objectives [for each change in HP and proximity].
In the second example, every time you get a different % HP, it only needs one more string, for a max of 99. Then, if the enemy is distant, you only need a total of two strings, which you can swap in and out. Picture coming soon, if this is confusing.
As for feedback: I'd enjoy playing a game like this, if my monitor didn't make SC look sucky because of widescreen. I'm still thinking about making an RPG that's gonna be epic, and I might throw something like this in there 
TL;DR: I'm elaborating on how to exploit SCMDraft 2's redundancy-reduction. Pix.

Sorry for being ignorant, but I don't see why having too many strings or going over the numerical string limit(1024) is a problem.

1353 strings. And the map runs fine.
None.
Sorry for being ignorant, but I don't see why having too many strings or going over the numerical string limit(1024) is a problem.

1353 strings. And the map runs fine.
Going over the string number limit is not a problem; going over the string memory usage
is, however (the 72% in your screenshot). If he combines the variable lines into a string each, rather than doing it line by line, he will get there pretty fast.
None.
Sorry for being ignorant, but I don't see why having too many strings or going over the numerical string limit(1024) is a problem.

1353 strings. And the map runs fine.
Going over the string number limit is not a problem; going over the string memory usage
is, however (the 72% in your screenshot). If he combines the variable lines into a string each, rather than doing it line by line, he will get there pretty fast.
Which is exactly why I am only at 42% string usage for my RPG, even though I use an in-game text menu.
None.

Master has given Dobby a doctorate! Dobby is free!
I guess I better get on that diagram...

Edit2: The reason why the string count on the left is so much lower is because the left side allows for many variables, and SCMDraft has a built-in redundancy reducer. The right side only allows for one variable, and if that variable is not met, it requires another string completely.
Post has been edited 2 time(s), last time on Dec 31 2009, 3:40 am by poison_us. Reason: 1: uploaded pix. 2: You lost The Game.