local identity = getidentity() print("Current identity is", identity) if identity < 1 then print("WARNING: Identity is less than 1. [ MESSAGE ].") --YOUR MESSAGE elseif identity < 3 then print("NOTICE: Identity is less than 3. [ MESSAGE ]") --YOUR MESSAGE elseif identity < 5 then print("INFO: Identity is less than 5. [ MESSAGE ]") --YOUR MESSAGE elseif identity < 7 then print("NOTE: Identity is less than 7. [ MESSAGE ]") --YOUR MESSAGE elseif identity < 8 then print("CAUTION: Identity is less than 8. [ MESSAGE ]") --YOUR MESSAGE end