And I've come to miss auto-complete a lot. Also currently using windows, some Linux stuff would be nice as well(but isn't as immediate of a concern).
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
(set 'player-states '(
(myself (levels ( (body 100) (focus 100) (will 100))) (status '()) )
(target (levels ( (body 100) (focus 100) (will 100))) (status '()) )
))
(define
(body-level target)
(lookup 'body (lookup '(target levels) player-states)) )
;works and sets body to 110
(setf
(lookup 'body (lookup '(target levels) player-states))
110)
(body-level myself)
;does not set body to 200, how do I get the 'referance' to wind up?
(setf (body-level 'myself) 200)
(body-level myself)