Search found 2 matches

by Oreolek
Tue Mar 27, 2018 7:29 pm
Forum: Mudlet Mapper
Topic: Generic Mapping Script
Replies: 441
Views: 406232

Re: Generic Mapping Script

Is there a way to make it a manual mapper? Where you'd enter room name and exits manually. That would be much easier to use.
by Oreolek
Mon Mar 19, 2018 1:32 pm
Forum: Scripts & Packages
Topic: rot13 script
Replies: 0
Views: 4474

rot13 script

A rot13 ASCII alias command (actually, it's rot-anything): <regex>^rot(\d+) (.*)</regex> <script> local KEY = matches[2] local line = matches[3] function Rotate(t) return (string.gsub(t, "[%a]", function (char) local bUpper = (char < 'a') local b = string.byte(string.upper(char)) - 65 -- 0...