mob
proc
Load()
var/savefile/client_file = new(Import())
if(client_file)
client_file["usr"] >> mob
return ..()
..()
Problem description:Create.dm:16:error:Import:undefined proc
Create.dm:18:error:mob:undefined var
what is wrong with this ive searched the fourms and this is how almost evrybody else has done it
You don't need return ..() let alone return ..() then ..(). Firstly, once you use return it stops the proc/verb. Also, you have no reason to use ..() since you are defining the proc here and since this is top-level in the parent tree.