mob
var
MaxHealth=0
MaxExp=0
MaxLvl=0
MaxAttack=0
mob/Bulbasaur
icon = 'Kanto Pokemon.dmi'
icon_state = "Bulbasaur"
density = 1
var
Health=5
Exp=0
Lvl=1
Attack=5
lvl=16
proc/Attacks()
if(lvl < 1)
switch(input("Your Bublasaur has learned Tackle"))
proc/Evolve()
if(lvl < 16)
switch(input(src,"Do you wish to evolve Bulbasaur to Ivysaur?","evolve") in list("Yes","No"))
if("Yes")
icon_state = "Ivysaur"
Problem description:
ok im trying to put in attacks on this but i cant figure it out but i just cant get the indenting right.
can some one help this is the probem on lines 21,22
Pokemon.dm:21: Inconsistent indentation.
Pokemon.dm:22: Inconsistent indentation.
1) The DM guide, where you can learn properly.
2) The DM reference, where you learn what each proc does BEFORE you use it.