ID:885579
 
(See the best response by Albro1.)
Code:
            winshow(usr,"quest",1)
winset(usr, "quest.quests", "cells = 0x0")
var/obj/quest/Tatvas1/b = new()
usr.Quests += b
for(var/obj/I in usr.Quests)
src<<output(I,"quests:1,[++I]")
src<<output(I,"quests:2,[I.info]")




obj
quest
Tatvas1
name = "Quest 1"
icon = 'Oori.dmi'
icon_state = "south"
info = "Bleh"


Problem description:
I want the Quest Grid to Display the info of the obj, but its not doing it -,..,-. I Clearly defined the variable "[I.info]"

Best response
You're outputting I twice. I is an object, and you are trying to use it as a number.
output(text,"grid:column,row")
Thank you!