ID:261465
 
Were can I get a summon code from, say I want to summon someone to me.
That's pretty easy to do.

To summon any mob in the world to your exact location:

<code>mob/verb/Summon(mob/M as mob in world) M.loc = usr.loc</code>

...or...

To summon any mob in the world to specific coordinates:

<code>mob/verb/SummonTo(mob/M as mob in world, X as num, Y as num, Z as num) M.loc = locate(X,Y,Z)</code>
In response to Foomer
Will I be the only one with this verb, or will everyone else have it to?
In response to Lord Bahamut
Unless you tell the game to only give the verbs to you, everyone will have it. Click here to see how to only give them to yourself.
In response to Foomer
ok thanks