ID:143035
 
Code:
obj/HELP
icon = 'Books.dmi'
icon_state = "green"
verb //verb for the object (verb it's what you do)
Get()
set category = "Actions"
set src in oview(1)
usr.contents += src
read()
set category = "Actions"
switch(alert("what do you Wantna read?",,"The Holy Sages","The Gods","Manny"))
if(usr.Intelligence<=1)
usr << "You Try to Read But You Dont UnderStand Any Of It."
return
if("The Holy Sages")
if(usr.Intelligence>=2)
usr << ""
usr.Intelligence += 1
else
usr << "You Try to Read But You Dont UnderStand Any Of It"
if("The Gods")
if(usr.Intelligence>=3)
usr << ""
usr.Intelligence += 1
else
usr << "You Try to Read But You Dont UnderStand Any Of It"
if("Manny")
if(usr.Intelligence>=4)
usr << ""
usr.Intelligence += 1
else
usr << "You Try to Read But You Dont UnderStand Any Of It"


Problem description:

the format and every thing is weird and can someone edit so dat it works plz.
Sorry, please post more in formation, whats wrong about it, what is it erroring?

Inconsistent Indentation
Object does not exist
Something is just wrong

just what does the error say?
Yeah, it does look like it has a lot of bad indentations.
In response to Kaiochao2536
go back and tab everything manually by hand, because i can tell u even if u did it by hand the first time, it could be messed up, and a 99% of messed up if u copied it from somewhere.
obj/HELP
icon = 'Books.dmi'
icon_state = "green"
verb //verb for the object (verb it's what you do)
Get()
set category = "Actions"
set src in oview(1)
usr.contents += src
read()
set category = "Actions"
switch(alert("what do you Wantna read?",,"The Holy Sages","The Gods","Manny"))
if("The Holy Sages")
if(usr.Intelligence<=1){usr<<"You Try to Read But You Dont UnderStand Any Of It.";return}
if(usr.Intelligence>=2)
usr << "You seem to understand and have gained stat bonus"
usr.Intelligence += 1
if("The Gods")
if(usr.Intelligence<=2){usr<<"You Try to Read But You Dont UnderStand Any Of It.";return}
if(usr.Intelligence>=3)
usr << "You seem to understand and have gained stat bonus"
usr.Intelligence += 1
if("Manny")
if(usr.Intelligence<=3){usr<<"You Try to Read But You Dont UnderStand Any Of It.";return}
if(usr.Intelligence>=4)
usr << "You seem to understand and have gained stat bonus"
usr.Intelligence += 1
mob/var/Intelligence=0


Errors where 2 indents/1 inconst.

Fixed errors 3/3 Bugs known 0
Current Completion = 100% Good Luck, Curzon.