ID:264868
 
Code:
var/SuparSmart/SuparSmart
SuparSmart
proc
Begin()
usr << "Hello."


Problem description:
Well, everything compiles fine, but when I call it in any instance, it gives me something like, "Cannot call null.Begin". Any help guys? I'm a little rusty at programming in DM.
When you get a "null.Something" runtime error, it means that the instance doesn't exist. Which makes sense, because you probably haven't created an instance.
 var/SuparSmart/SuparSmart = new() // try creating the instance.
SuparSmart
proc
Begin()
usr << "Hello."