Editors Note: Unsure if there is a list of statistics.
Functions Documentation
View Function Edit Function
Name plyGetStat
Syntax (plyGetStat player stat) -> value
Argument List player: the player
stat: the game statistic
Returns value: the value of the statistic
Category player
Description Used to get statistics.
Example Taken from intGetGlobalAchievements
; Conducts
(setq systemData (plyGetStat gPlayer "systemData"))
(setq neverBacktracked 
(not (filter systemData theData 
(not (eq (item theData 1) (item theData 2))))))
(setq friendlyShipsDestroyed (plyGetStat gPlayer 
"friendlyShipsDestroyed"))
(setq friendlyStationsDestroyed (plyGetStat gPlayer 
"friendlyStationsDestroyed"))
Comment