Functions Documentation
View Function Edit Function
Name sysGetNodes
Syntax (sysGetNodes) -> list of nodeIDs
Argument List none
Returns list of nodeID's
Category system
Description Returns a list of all the nodes in the game.
Example taken from &ssHuaramarca;
; Pick a random system in Huari space to have a gateway to Huaramarca
(setq gateway
(random
(filter (sysGetNodes) theNode
(and (sysHasAttribute theNode 'ungoverned)
(geq (sysGetLevel theNode) 5))
)))
Comment