ID:1970970
 
(See the best response by Kaiochao.)
Code:


Problem description:
Is posible to check in dm, do game now is online/hosted? Without visit website?
also map text support html tags like "< br >"?

world.port and world.reachable

I think maptext supports about the same level of HTML as output elements. Newlines can be made with \n too.
Oh thanks.
I have 2nd one question.
I try to show objs from list on screen.I need show only 8 objs from list. - like inventory. But how to make if i wanna show objs from list. by 4th place to 12 (see only 8). etc. I know i need use copy proc i remember i sow topic like this but i can't finde it.
In response to Marekssj3
Best response
Your inventory typically a subset or equal to your contents var. The list containing the 4th through 12th items would be list.Copy(4, 13). It's 13 because that is the space after the 12th item, and 4 is the space right before the 4th item.
Thanks a lot Kaiochao.