Hello people.
As most of you know I ditched SauerEnhanced before even releasing the Justice Edition port.
The repository has been up all the time so far, there were still some people actually messing with it apparantely.
The reason the project has been dropped is due to many technical problems that came because of poorly written and ported code.
Everything was done "just to get it working" for Justice Edition, but in the end there were still some odd behaviors I simply didn't feel like fixing.
I rather wanted to rewrite everything from scratch.
So, here we are: that's what UPP is going to be, SauerEnhanced done the correct way, rewritten from scratch, less mess in the code and packaging, easier to install on other platforms than Windows and mostly: without most of all the shit SauerEnhanced had. It will also try to keep the theme of Sauerbraten as well. Pure polishment. So, for that I'll skip some of the features SauerEnhanced had like stats or profiles (who wants those anyway?).
Oh well, I might keep the stats, who knows.
So, in regards to that, I need some kind of a list of features I should implement.
Hi, i've read in the changelog that Sauer support ZIP format, ok, but how use zip-files INGAME ???
Okay, so I am trying to compare two lists to see if they contain the same string.
mylist = "aunt uncle grandma"
mylist2 = "fish cheese aunt"
loop i (listlen $mylist) [ loop u (listlen $mylist2) [ if (= (at $mylist $i) (at $mylist2 $u)) [echo Yes] [echo no] ] ]
I thought I could just use a loop to loop through the first list, then compare that to the second one, which I loop through at the same time.