I made a .zip with a description.txt and a server.cs containing:serverCmd you(%client){messageAll("forget you!");}Do I need a ; after the (%client)? Or what?
Yes, ; Tells it that its the end of the line, without it you get a syntax error.
messageAll('',"forget you!");
function serverCmd
messageAll('',"Piss off," SPC %client.name);
I think you could use %client.name if it's not blocked from use for whatever
I believe client.name just can't be modified, i.e its read-only.
messageAll('',"Piss off," SPC %1); ?
messageClient(%client,'',"Piss off");ORmessageClient(%client,'',"Piss off," SPC %client.name);