I would love to help.
In what way?
A server is up atm. I think I may start testing shortly, because I keep trying to think of things that need to be done before an actual playtest and nothing comes to mind.Just debugged a ton of code! The basic systems seem to all be in order, now I need to make it pretty, work on how it "feels", add tons of microgames, and then the GUI!
I should compile a list of everything that needs to be done.
Logically, the actual progress is 40% with current plans. If I factored in importance and size of the individual parts, it'd probably be more.
haha decided to make a random word generator for the "Say" microgame, has some pretty funny results. i'll go ahead and post it for funs.
function generateWord(%len)
{
%vowels = "a e i o u ea ee oo ie ei";
%cons = "b c d f g h j k l m n p qu r s t v w x y z bb ll gg tt pp rr ng th ch ph kn pl cl sh rh wh kl mp rk st sp";
%type = getRandom(0, 1);
for(%i = 0; %i < %len; %i++)
{
%lastType = %type;
%type = !%lastType;
switch(%type)
{
case 0: %add = getWord(%vowels, getRandom(0, getWordCount(%vowels) - 1));
case 1: %add = getWord(%cons, getRandom(0, getWordCount(%cons) - 1));
default: %add = getWord(%cons, getRandom(0, getWordCount(%cons) - 1));
}
%word = %word @ %add;
}
return %word;
}
somewhat credit to []----[] because i drifted in and out of a conversation between brian smith and him about this.
some gems:
ploshee
yople
fookloo
woongee
oompash
kaki
rofe
jiba