why wont this send the floats to the other person!!
cls
make object sphere 1,20
do
xpos#=camera position x()
ypos#=camera position y()
zpos#=camera position z()
send net message float 0,xpos#
xpos2#=net message float()
send net message float 0,ypos#
ypos2#=net message float()
send net message float 0,zpos#
zpos2#=net message float()
position object 1,xpos2#,ypos2#,zpos2#
if upkey()=1
pitch camera up 2
endif
if leftkey()=1
turn camera left 3
endif
if rightkey()=1
turn camera right 3
endif
if downkey()=1
pitch camera down 2
endif
if scancode()=30
move camera 2
endif
if scancode()=44
move camera -2
endif
set cursor 0,0
print xpos2#
set cursor 0,30
print xpos#
set cursor 0,60
print ypos2#
set cursor 0,90
print ypos#
set cursor 0,120
print zpos2#
set cursor 0,150
print zpos#
sync
loop