(Edited post)
Thought all night about my problem and it's solution... Just was one thought that dev's of mysensors plugin can't make mistake in old tested plugin) Reviewed plugin code once again and understood it's logic. So first we get called Presentation function which stores new devices in array and than we should get command from gateway about finished inclusion process and plugin start to add devices to Vera. So the problem is: when we don't use radio and only local sensors we don't get message about inclusion finish! )
Solution is to send this message manually from gateway right after presentation processes. Should look like 0;255;3;0;5;0
So I have added this lines to my Arduino sketch in presentation function:
Serial.print("0;255;3;0;5;0");
Serial.print("\n");
This solution will work without coding to existing Vera plugin
(Sorry, didn't found any other way to send this message like with MyMessage container)