When I added 5-9 on the misc.skills list and compiled an error came up and said expected end of statement for statpanel("Skills") and there was another error for that same line it said missing comma',' or right paren. ')'.Then for the if usr.combats = 1 and the other 2 like it, it says and error and it says the error is missing condition.Can anyone fix this?
statpanel("Skills")
stat("-=Major Skills=-")
stat("[usr.mname1]:","[usr.mskill1]")
stat("[usr.mname2]:","[usr.mskill2]")
stat("[usr.mname3]:","[usr.mskill3]")
stat("[usr.mname4]:","[usr.mskill4]")
stat("-=Minor Skills=-")
stat("[usr.miname1]:","[usr.miskill1]")
stat("[usr.miname2]:","[usr.miskill2]")
stat("[usr.miname3]:","[usr.miskill3]")
stat("[usr.miname4]:","[usr.miskill4]")
stat("-=Miscellaneous Skills=-")
stat("[usr.misname1]:","[usr.misskill1]")
stat("[usr.misname2]:","[usr.misskill2]")
stat("[usr.misname3]:","[usr.misskill3]")
stat("[usr.misname4]:","[usr.misskill4]")
stat("[usr.misname5]:","[usr.misskill5]")
stat("[usr.misname6]:","[usr.misskill6]")
stat("[usr.misname7]:","[usr.misskill7]")
stat("[usr.misname8]:","[usr.misskill8]")
stat("[usr.misname9]:","[usr.misskill9]")
statpanel("Inventory")
stat(src.contents)
if usr.combats = 1
usr.strength += 5
usr.defense += 5
usr.medarm += 5
usr.heavyarm += 5
usr.longblade += 5
usr.axe += 5
if usr.magics = 1
usr.bluntweapon += 5
usr.alchemy += 5
usr.unarmored += 5
usr.enchanting += 5
usr.magic += 5
usr.intelligence += 5
if usr.stealths = 1
usr.agility += 5
usr.shortblade += 5
usr.lightarm += 5
usr.speed += 5
usr.defense += 5
if usr.magics = 1Try doing this
if(magics)And if you want it false(also known as ==0)
if(!magics)I learned these not to long ago and as for your problems I don't have time to look at them,mabe someone else could help.