Output names entity

Hi! Can u help please, how i can make output only 1-3-5 string from names in cfg? i dont wanna see names of prefabs..thanks a lot

Not possible without a massive rewrite. The issue is that the plugin is not checking against the BaseEntity, it's checking the Construction.

I'll have a look if I can, but as my part of the world currently has only power 12 hours out of a day, time is tight for work on a computer.

 

Is it possible to somehow specify in this block that the output be odd in number of lines? sorry, im bad know code) thanks

 

var text1 = string.Empty;
var text2 = string.Empty;

foreach (var pair in limitsGlobal)
{
text1 += pair.Key + " x" + pair.Value + "\n";
}

foreach (var pair in limitsBuilding)
{
text2 += pair.Key + " x" + pair.Value + "\n";
}

SendMessage(player, MessageType.LimitsList, "{global}", text1, "{building}", text2);