g sand

Results 22 comments of g sand

@DevNerd This is now semi possible by editing that line to include all the command line arguments you want. https://github.com/mcdevs/mark2/blob/master/mk2/resources/mark2.default.properties#L75

open scripts.txt insert the following line: ``` # Runs the tps command every 5 minutes */5 * * * * /tps ```

ah, how did you install it? through pip? or did you clone the repo?

Try installing it through pip: pip install mark2

You have to edit the chat regex in your local mark2.properties file.

That's happening due to the slight chat format change in this commit for 1.7 support: https://github.com/mcdevs/mark2/commit/c783ae14ca0012d69689e3c1cf4a8adecd46cc57 Revert it if you want mark2 to work for minecraft server softwares that were...

My latest pull request has dual support.

The current github version has support for both versions.

Hi, Open /usr/mark2/mk2/events/server.py then change line 7 to ``` r'(\d{4}-\d{2}-\d{2} |)(\d{2}:\d{2}:\d{2}) \[([A-Z]+)\] (?:%s)?(.*)') ``` The reason for this is because the current output expression is for minecraft 1.7, which is...

yes, actually changing line 7 to the following will make it backwards and forwards compatible ``` r'(?P\[)?((?:\d{4}-\d{2}-\d{2} )?)(\d{2}:\d{2}:\d{2})(?(b)\]) \[(?:[^/\]]*/)?([A-Z]+)\]:? (.*)') ```