ID:147017
 
Unsummon(mob/M in world)
set name = "Unsummon"
set category = "-GM-"
if(M.summoned == 1) // gotta make sure hes summoned first
M.x = M.xb//his cords where he was befor u summon him
M.y = M.yb//
M.z = M.zb//
M << "Admin [src] has unsummoned you."
summoned = 0
else
src << "[usr] has not been summoned"
Summon(mob/player/M in world)
set category = "-GM-"
M.xb = M.x
M.yb = M.y
M.zb = M.z
M << "Admin [src] has summoned you."
M.x = src:x
M.y = src:y-1
M.z = src:z
M.summoned = 1 // make sure hes summond



Admin.dm:532:error:M.xb:undefined type: M.xb
Admin.dm:532:error:M.x:undefined type: M.x
Admin.dm:533:error:M.yb:undefined type: M.yb
Admin.dm:533:error:M.y:undefined type: M.y
Admin.dm:534:error:M.zb:undefined type: M.zb
Admin.dm:534:error:M.z:undefined type: M.z
Admin.dm:535:error:M:undefined type: M
Admin.dm:536:error:M.x:undefined type: M.x
Admin.dm:537:error:M.y:undefined type: M.y
Admin.dm:538:error:M.z:undefined type: M.z
Admin.dm:539:error:M.summoned:undefined type: M.summoned
new_char_handling.dm:1650:error::invalid expression
Admin.dm:523:error:M.xb:undefined var
Admin.dm:524:error:M.yb:undefined var
Admin.dm:525:error:M.zb:undefined var
Admin.dm:532:error::invalid expression
Go ask in your thread on Newbie Centeral, and give credit to who made it. =/
My guess is that you copied and pasted it...and that it wasn't indented properly. Try indenting it right and see what happens.
In response to N1ghtW1ng
well i thought you were smart annoufe to know how to define a var -_-

mob
var
blablabla = 0

and you need to define Player that is my player var i dont know if it is yours


In response to Dranzer_Solo
Don't assume...you make an ass out of you..and well him..kinda ironic to me though >.>
m.xb/m.yb/m.zb is not the same as saying what their cordinates are...thats isnt a good verb, only reason is because it may be easier to put in a coordinate location verb to send someone to a certain coordinate, thus a simple summon verb should work....