Using Maxscript to load x,y,z position data across 1000+ frames?

I successfully used this method for loading rotation data:

with animate on

(

at time 0 $box.rotation.y_rotation = 1.527525443
at time 1 $box.rotation.y_rotation = 1.527525442
at time 2 $box.rotation.y_rotation = 1.529930785
at time 3 $box.rotation.y_rotation = 1.529727759
...
at time 1029 $box.rotation.y_rotation = -20.16730374

)

I feel like this would be super easy for someone with Maxscript abilities, but not for me.

Can someone point me in the direction of the correct Maxscript syntax for loading this data:

t[sec], x [m], y [m], z [m]
0.00, 19, -0, 7620,
0.10, 38, -0, 7620,
0.20, 57, -0, 7620,
0.30, 76, -0, 7620,
...

Thanks in advance.