If you don't have ICBM Component: http://oc.cil.li/index.php?/topic/64-mc-164oc-12icbm-component/
I created a server and client recently for my own ICBM use. It may not be perfect but it stores waypoints and can even open a silo door(well, it outputs redstone)
Here is the server, you may want to remove the thing that requires redstone output to fire:
-- explode(seperator, string)
function explode(d,p)
local t, ll
t={}
ll=0
if(#p == 1) then return {p} end
while true do
l=string.find(p,d,ll,true) -- find the next d in the string
if l~=nil then -- if "not not" fo