MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | SYNOPSIS |
| 2 | xeval <expression> |
| 3 | |
| 4 | DESCRIPTION |
| 5 | Execute an LPC expression. Inside the <expression>, "me" and "here" are |
| 6 | predefined objects (guess for what :). Here we can also use the function |
| 7 | "get()" to find an object using the object access syntax. If the |
| 8 | Expression returns an object the variable "$result" will be set to this. |
| 9 | xeval includes a private ~/.xtool.h, if it exists, to support user |
| 10 | defined macros. |
| 11 | |
| 12 | |
| 13 | EXAMPLES |
| 14 | Just do it! |
| 15 | xeval users() |
| 16 | xeval getuid(me) |
| 17 | xeval get("$me.xtool") |
| 18 | |