In response to Android Data
Android Data wrote:
Evre wrote:
You can't run newly defined DM code at run-time. It needs to be compiled first. The best you're going to get is to be able to dynamically change variables at run-time.

Wrong -- you can make your own scripting language that communicates with your code. i.e. set verbs or call another objects' procs.

Evre was correct; there's no way to run newly-defined DM code at run-time. The rest of what you said was tangential at best. ;-)
In response to Kaiochao2536
Kaiochao2536 wrote:
Data, do you know anyone who can do that? :/

... Yes.

-- Data
In response to Kaiochao2536
It's not very hard.
In response to Nadrew
Nadrew wrote:
>  mob/admin/verb/ChangeVar(atom/a in world)
> var/v = input("Which variable would you like to modify?") as null|anything in a.vars
> if(!v) return
> var/k = input("What would you like to set the variable to?") as text
> if(!k) return
> a.vars[v]=k
>

That's better better.

Suppose you wanted to set a variable to null? :P

Hiead
Page: 1 2