ID:143202
 
Code:
mob
verb
shikai()
set name ="magic"
set category = "magic"
usr.shikai +- 1
usr.firing = 1
usr.health -= 190
usr.underlays+='tousenshikai.dmi'


Problem description:Tech List.dm:1793:error::invalid expression

Bleach.dmb - 1 error, 0 warnings (double-click on an error to jump to it)

you put usr.shikai +- 1 lol
In response to Scizzees
i still get an error when i do that
In response to Naruto0727
because you dont put usr.shikai +- 1. it's an invalid expression.
In response to Scizzees
then how do i fix it.
In response to Naruto0727
what is the var "shikai" doing ?
In response to Scizzees
its suppose to be the release state but all my others work fine.
In response to Naruto0727
That's because all your others have valid expressions, such as X += Y. However, the one you are having trouble with it X +- Y. +- is not a valid operator.
Omg just change
usr.shikai +- 1

To
usr.shikai += 1
In response to Garthor
This topic is a perfect example of how bad poor grammar can be.