After taking wallet's class, I fell I know alot more about blockland scripting and the torque language, but there are still some things that bug me.
How to i combine two variables into one?
Like if I did
function servercmdCombine(%client, %var1, %var2)
And typed /combine Hi There
How would I make it form a new variable called Hithere?
Another problem I had was servercmds not supporting easy word manipulation. I want to make a command such as /createteam cool club, it would only make the team named cool.
I want it so you do function servercmdCreateteam(%client, %name1, %name2) and it keeps spaces and creates a new string called %name3 by combining name 1 and 2.