I obviously did this wrong... What did I do wrong?
function servercmdnote(%client, %note1, %note2, %note3, %note4, %note5, %note6, %note7, %note8, %note9, %note10, %note11, %note12, %note13, %note14, %note15, %note16, %note17, %note18, %note19, %note20, %note21, %note22)
{
%note = %note1 SPC %note2 SPC %note3 SPC %note4 SPC %note5 SPC %note6 SPC %note7 SPC %note8 SPC %note9 SPC %note10 SPC %note11 SPC %note12 SPC %note13 SPC %note14 SPC %note15 SPC %note16 SPC %note17 SPC %note18 SPC %note19 SPC %note20 SPC %note21 SPC %note22;
%notes = new fileobject();
%notes.openforappend("./Servernotes.txt");
%notes.writeLine(%note);
}
function servercmdnotes(%client)
{
while(!%notes.isEOF())
{
%noteread = %notes.readline();
messageclient(%client, '', %noteread);
}
}