! Zetnet logon script for Psion series 5 ! Written by Tony Walker ! Most of the bits you have to change can be found in Zimacs setup ! or on your registration certificate start: ! Change NAME to your registered name SET username$="NAME" ! Change REGNO to your registration number remembering ! to include the dashes (hyphen/minus). SET regno$="REGNO" ! Change USERNO to your user number SET userno$="USERNO" ! Change PASSWORD to the password you have set up with Zimacs SET pwd$="PASSWORD" ! End of user details WAIT 20 { "ogin" login1 } SEND <0xd> login1: SEND "ZETppp"+<0x0d> WAIT 20 { "ame" login2 } SEND <0xd> login2: SEND username$+<0x0d> WAIT 20 { "umber" password } EXIT KErrTimeOut$ password: SEND regno$+<0x0d> SEND userno$+<0x0d> SEND pwd$+<0x0d> ! End of script