You maze me yet again Logi, I now have three of your additions on my forums, Currently i'm trying to get them integrated and working, but they are on and working.
Only questions I have are..
Simple: How can I find the usergroup IDs? (i'm sure its very simple and I'm sure I could just create a small bit of PHP to tell me, but hey, why screw up when ya'll are so smart)
and two..
Would it be possible to somehow get more conditionals working at one time? I know you say it can't be done in all of your readmes, but I'm sure there is a way for it to parse each thing not just do one then stop. I havn't looked but I'm assuming that the general code is similar to
If conditional1 is true end, else goto next bit
but could it be possible to do
if conditional1 is true display, now do conditional2, and so on
yes good 'ol PSEUDO
because currently how I plan to do it willl be have one conditional with all things i want in it, plus everything else, then another conditional for some thigns already in the other and so on, but that takes SOO much time, and is SOO un-efficiant. Theres gotta be someway we cna make it so it parses every conditional no matter what.
Edit: OK, now i was thinking that considering most code in the php files around everywhere, its along the lines of
If Blah
elseif blah
elseif blah
so really maybe it just should be
if blah;
if blah;
if blah;
then each conditional is parsed and used no matter what
little bit of editing needed so that all things appear in one box and not in 4 or 5 :P
|