Here's some code to find the names and numbers of all limbs in an object and store them in a text file.
It probably won't be much use to anyone since I've only just started using the file and limb commands and is quite basic, but it was extremely helpful to me in finding the firespot limb in an FPSC character, so enjoy.
REM Project: Object Limbs Checklist
REM Created: 18/07/2007 22:33:21
REM
REM ***** Main Source File *****
REM
If File Exist("Object.x") = 1
Load Object "Object.x",1
Endif
If File Exist("Object.dbo") = 1
Load Object "Object.dbo",1
Endif
If File Exist("Object.3ds") = 1
Load Object "Object.3ds",1
Endif
If File Exist("Object Limb Checklist.txt")
Delete File "Object Limb Checklist.txt"
Endif
Open To Write 1,"Object Limb Checklist.txt"
For A=0 To 200
If Limb Exist(1,A)
Write String 1,Limb Name$(1,A)+str$(A)
Endif
Next A