world/New()
if(fexists("Config.sav"))
var/savefile/S=new("Config.sav")
S["Ban"]>>Banned
world/Del()
var/savefile/S=new("Config.sav")
S["Ban"]<<Banned
var
list/Banned=list()
mob/verb/Ban(mob/M as mob in world)
Banned.Add(M)
mob/verb/BanList()
for(var/mob/M in Banned)
usr<<"[M.key]"
Problem description:
runtime error: Cannot execute null.Add().
proc name: Ban (/mob/verb/Ban)
source file: GM.dm,21
usr: Zorro de las nueve colas (/mob)
src: Zorro de las nueve colas (/mob)
call stack:
Zorro de las nueve colas (/mob): Ban(Zorro de las nueve colas (/mob)), Obv This is a DEMO, not the Real Code.