if(src.mob.race=="Human")
src.mob.lvl = 1 // WTF this line keeps indenting!?
src.mob.hp = 10
src.mob.hpmax = 10
src.mob.mp = 10
src.mob.mpmax = 10
src.mob.agi = 5
src.mob.wis = 6
src.mob.str = 8
if(src.mob.class=="Warrior")
src.mob.hp += 30
src.mob.hpmax += 30
src.mob.mp -= 5
src.mob.mpmax -= 5
src.mob.agi -= 1
src.mob.wis -= 3
src.mob.str += 4
if(src.mob.class=="Mage")
src.mob.hp -= 2
src.mob.hpmax -= 2
src.mob.mp += 5
src.mob.mpmax += 5
src.mob.agi += 1
src.mob.wis += 5
src.mob.str -= 4
if(src.mob.class=="Scout")
usr <<"you Recieve no Bonuses!"
/* if(src.mob.race=="Neko-jin")
usr <<""*/
Problem description:
usaully i know what im doing right.. but something in my script is causing the script under it to create indentiion errors.. ive tried everything.. i dont know how to make them go away. it makes me made cause the if statements were my last chance of creating the rpg. The procs odnt work. Ill have to ask my friend who made the login.
See if that works for you...