Ok. Now lets discuss.... erm... 
Position(X,X)?
As in how do I use that?
That is part of a text(x,x,x,x) command. Let me show what happens with this:
squeak(player)
text(cyan,0,0,1)
This is text.
position(player,above)
speak_active
endtext
squeak(player)
/ Play
's squeak soundtext(cyan,0,0,1)
Sets the color to cyan, sets coordinates to 0,0, and sets the number of lines that have to be stored to 1This is text.
/ This line is stored in memory, to be used laterposition(player,above)
/ This sets the coordinates to make the box appear above the player (note that the coordinates have been set to 0,0 earlier, but you can't do text(cyan,player,above,1) or something like thatspeak_active
/ Remove all text boxes, and show the text boxendtext
/ Removes all text boxesSo, it sets the coordinates of the text box if you don't want to use exact coordinates. You can't put it above the text(cyan,0,0,1) command, because then it gets overwritten by 0,0 again.
I'm distracted by how many pages of posts there are.
And the fact that its just 3-6 people

For me, this thread has 4 pages, because I have set the maximum number of posts per page (50)
