ID:178535
 
I want to make it so if the enemy's level is like 5 more than yours, it sez something. Here's what I have:

if (M.level > usr.level)
usr << "They look tougher than you."
Something like:

if(M.level > usr.level + 5)
...

?
In response to Nadrew
like if the enemy is more than five levels above you. I don't want a set number just more than 5.