Zugg MASTER
Joined: 25 Sep 2000 Posts: 23379 Location: Colorado, USA
|
Posted: Mon Jun 04, 2007 5:21 pm |
The database module is simply ported from zMUD, so it hasn't been integrated with the new CMUD features (like local variables) yet. The #QUERY command is passing it's argument as a string value, which the database module tries to parse. Since the database module doesn't know about local variables, this fails.
A workaround is to use %concat to form the string to be sent to the #QUERY:
Code: |
#QUERY %concat("&Incantation=",$Incnttn) Spells TRUE |
Oh, and I'm not using Delphi 2007 yet. I'm still waiting on some third party components to be updated, and then I need to find a week or so to get everything ported and working. It hasn't been really high on my priority list right now. |
|