ID:262468
 
Code:
    verb/Ultima()
var/obj/SPELLS/Ultima/U = new /obj/SPELLS/Ultima(usr.x+1)
new U(usr.x+2)
new U(usr.x+3)
new U(usr.x+4)
new U(usr.x+5)
new U(usr.y+2)
new U(usr.y+3)
new U(usr.y+4)
new U(usr.y+5)
new U(usr.y+1)


Problem description:
runtime error: Cannot create objects of type /obj/SPELLS/Ultima.
proc name: Ultima (/mob/verb/Ultima)
source file: Fantasy.dm,141
usr: Dead_Demon (/mob/c)
src: Dead_Demon (/mob/c)
call stack:
Dead_Demon (/mob/c): Ultima()




No what you want is:

    verb/Ultima()
var/obj/SPELLS/Ultima/U //don't create U.
new U.type(locate(usr.x+2,usr.y,usr.z))
//And so on
In response to DeathAwaitsU
Now I got this error.

runtime error: Cannot read null.type
proc name: Ultima (/mob/verb/Ultima)
source file: Fantasy.dm,141
usr: Dead_Demon (/mob/c)
src: Dead_Demon (/mob/c)
call stack:
Dead_Demon (/mob/c): Ultima()
In response to Dead_Demon
Oh sorry, it should be var/obj/SPELLS/Ultima/U = new.

It is 4:30am -_-
In response to DeathAwaitsU
Oh, thanx