MU Soapbox

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Muxify
    • Mustard
    1. Home
    2. Glitch
    • Profile
    • Following 1
    • Followers 4
    • Topics 50
    • Posts 525
    • Best 182
    • Controversial 11
    • Groups 6

    Glitch

    @Glitch

    Coder

    453
    Reputation
    1296
    Profile views
    525
    Posts
    4
    Followers
    1
    Following
    Joined Last Online
    Website musoapbox.net

    Glitch Unfollow Follow
    Politics Play-by-Post Coder Creator Reader Tutorialist

    Best posts made by Glitch

    • RE: Seeking Women for Multi-Game Harem

      Instructions unclear. Sent dickpics.

      posted in Adver-tis-ments
      Glitch
      Glitch
    • Zero to Mux (with wiki)

      Intro

      This is one way to get yourself started with a MUX and a wiki. I'll include a particular hosting company, domain name company and server setup. I do not think this setup is necessarily superior to any other combination of the above, but it is what I use personally, what was used for MSB and for at least one other MUX. Please feel free to substitute out any of the following for your own setup considerations.

      Server

      We use digitalocean.com for MSB and they have a simple server setup that includes mediawiki out of the box. Their smallest plan gets you a good basic setup with plenty of space for $5 bucks. If you decide to use digital ocean, please consider using my referral link: https://www.digitalocean.com/?refcode=cc025ed46a11.

      Once you have an account created, the following tutorial will walk you through setting up your new server and mediawiki: Digital Ocean Mediawiki Tutorial

      Domain

      Now it's time to select a name. I use namecheap.com for my domains, but you can, once again, use any domain hosting service. They offer free whois protection for a year (and then a cheap rate after that). Whois protection keeps your registration information private, such as real name and address. After purchasing a suitable domain, use the following short tutorial to setup the nameservers for your domain: Nameserver setup on namecheap

      For our purposes, you will want to use the following nameservers:

      ns1.digitalocean.com
      ns2.digitalocean.com
      

      If you are not using digital ocean, find out the nameservers offered by your hosting company and use those instead.

      Now back to digital ocean where you will follow this tutorial skipping straight to Step 3 and stopping at A record (unless you plan to add subdomains).

      Server Interlude

      Before we continue, I'd like to get some server stuff out of the way. This step is recommended, but optional.

      If you're running linux, use terminal so we can ssh to your server. If you're on Windows, download a program called kitty which will similarly allow you to ssh to your server. You will use the username and password provided by digital ocean to connect to the IP address of your server (found in your droplets list).

      Once connected, we're going to create a new user that isn't root.

      adduser <username>
      

      This will put you through a simple question/answer creation script. It's unnecessary to fill out any of the information other than the password, but it will create everything you need for a user.

      Next, we want to give this new user sudo permissions. This allows your new user to run commands as root when necessary.

      adduser <username> sudo
      useradd -G www-data <username>
      

      Now, the next time you log in with this user, which you should be using from now on, you will have sudo privileges.

      Wiki Settings

      After your domain is pointing to the right place, you'll want to do the following to make sure the domain name you want shows in the url bar when wiki handles its redirecting:

      Log in to your shell with ssh or kitty, then:

      cd /var/www/html
      vi LocalSettings.php
      

      This will open up an editor called vi. The commands are a little different to use, so you can use whatever editor you might be familiar with. Or follow this directly:

      Hit i to enter insert text mode.

      Go down to the following line (where you will see your own IP):

      $wgServer = "http://104.236.219.143";
      

      And replace it with your domain name:

      $wgServer = "http://atfmux.com";
      

      Once you've done so, hit :wq! (that's colon, then "wq!") and you should be all set with this step!

      PennMUSH

      This is a pennmush install that comes with @Volund's basic build-out, basically a complete game except for chargen. You can check out his repo at github for installing nwod, nwod2 and exalted 3e.

      So you've completed your mediawiki install and you've copied down the mysql root password (it is displayed to you when you first ssh into the server). Ssh into your server and do the following, I'll be using <user> to denote the user created in the Server Interlude section.

      sudo apt-get update
      sudo apt-get install git
      cd /var/www
      sudo git clone https://github.com/pennmush/pennmush.git
      sudo chown -R <user>:<user> pennmush
      

      Now for setup of pennmush itself:

      sudo apt-get install libmysqlclient-dev
      cd pennmush
      ./configure
      make update
      make install
      

      Make update will ask you a couple of questions, you can just hit enter through them.

      Now, because Volund's job system uses mysql, we have to do a little extra tweaking. Log into mysql with root and the password provided to you when you first ssh in to your server.

      mysql -u root -p
      

      This will prompt you for the password. Enter it. If everything is successful you'll see a mysql> prompt. Enter the following commands, but remember to change password to something unique!

      mysql> CREATE database mush;
      mysql> GRANT USAGE ON *.* TO mush_user@localhost IDENTIFIED BY 'password';
      mysql> GRANT ALL PRIVILEGES ON mush.* TO mush_user@localhost;
      

      Just type exit to exit out.

      Now, to get the preinstalled mush db:

      cd game
      wget http://musoapbox.net/volund-penn.tar.gz
      tar xzvf volund-penn.tar.gz
      

      Then edit your mush.cnf file, make sure instead of password, you use the password you just made in mysql:

      mud_name Your MUSH Name
      sql_database mush
      sql_username mush_user
      sql_password password
      

      Finally, do a ./restart and your game is up and running on port 4201!

      Use your favorite telnet client to connect. The code wizard is Three, password is wl9y@tx$he. You should only do code install on this wizard bit. As for the #1 bit, it is One with the password s00telk1!alw.. Make sure to change these!

      TinyMUX

      Okay, your server is up, your domain name is purchased and we've redirected it to your new server. Now we wait for domain name resolution (can take up to 48 hours, but rarely takes that long). While we're waiting, lets setup our MUX.

      As described in the Server Interlude step, open up an ssh connection to your server. Your mediawiki install is in the directory /var/www/html. We'll be putting your mux one level below that. So first, lets install git, which we'll use to grab tinymux:

      sudo apt-get install git
      

      It may ask you for your password (because you're using your newly created user, right?), so go ahead and enter it. After that, your screen will scroll with some info and offer a final [Y/n] option. Hit Y to continue.

      After it's installed:

      cd /var/www
      git clone https://github.com/brazilofmux/tinymux.git
      

      This will make a tinymux folder in /var/www. Next we will install tinymux.

      cd tinymux/src
      ./configure --enable-stubslave --with-mysql-include=/usr/include/mysql --with-mysql-libs=/usr/lib/mysql --enable-inlinesql
      

      There are other configuration options you may include:
      --enable-memorybased See docs/MEMORY.
      --enable-realitylvls See REALITY and REALITY.SETUP.
      --enable-wodrealms See docs/REALMS.
      --enable-ssl See SSL.

      This will take a little time, but once done, then we:

      make depend
      make
      cd ../game
      

      And our final step:

      ./Startmux
      

      Your MUX is now up and running at your IP Address on port 2860. There are many mux configuration changes you can make, but we'll leave that for another tutorial.

      For a starter setup, @Rook has provided an initial setup to make your life easier that can be found here.

      Know how to improve this? Let me know and I'll update it! Questions or Problems? Please let me know!

      posted in How-Tos
      Glitch
      Glitch
    • Google Search

      There's a new google search box in the header. It is not the prettiest thing, but I figured a useful search was more important than the mess that these forums call search.

      posted in Announcements
      Glitch
      Glitch
    • RE: Something Completely Different

      @ganymede You banned @Kanye-Qwest for calling you a thumb, though I do believe she said "fucking thumb" and then you give warnings here about "continuing to personally attack". Your application of your own rules are so uneven that is it even any wonder that people like @RightMeow, who doesn't seemed involved in any way, is still TIPTOEING around in their responses for fear of a ban?

      I didn't really want to respond because I didn't want to provide any more oxygen to this last gasp as I was, at one point, an admin too. However, I well and truly feel like you are going to walk off into the sunset, head held high, thinking that you were right the whole time even as you lost a community. I am not as attached to the name or place as some people, and it is fitting that yet another iteration of these boards goes out in a bang, but it's still a bit sad to see.

      @reimesu You pinky. Gany's reputation. Despite your histrionics about what WORA is and what MSB is, it is still a community. And reputation matters. To what extent depends, of course, and with whom, but it's not nothing.

      I won't dramatically peace out or anything, but @Ganymede I feel like you did a disservice to this community and @Derp, if you had been any sort of thoughtful, you'd have stepped down for the sake of the other mods, if nothing else.

      posted in Mildly Constructive
      Glitch
      Glitch
    • RE: Alternative Formats to MU

      @auspice Yes, your anecdotal evidence is the correct basis for all the factual statements you've made in your posts so far in this thread. The sheer disrespect and dismissiveness of those not in this hobby, but perhaps interested, matched to the misplaced sense of writing superiority, is infuriating. I'm obviously of the belief that telnet is no longer where I'd like to see the hobby go, but when you adamantly state it's not for you, I can't say I'll be sorry if that turns out to be true.

      Someone more even-tempered at the moment might suggest that they hope you're so impressed by new developments that you change your mind, but I think your attitude toward new people will only ever be detrimental. And I'd rather take my chances with them.

      posted in Suggestions & Questions
      Glitch
      Glitch
    • Zero to MUX newbies, thanks!

      So, yesterday credits from the digital ocean referral link came in to the account. Newbie MUX admins that followed the Zero to MUX guide have now earned 5 months of uptime for MSB. So thank you. πŸ™‚

      posted in Announcements
      Glitch
      Glitch
    • RE: Mostly Mage, Partially Descent Mux

      Good thing there is a mage only game where mages can play without dealing with all those overpowered other splats. It just wouldn't be fair for mages otherwise.

      posted in Mildly Constructive
      Glitch
      Glitch
    • Downvotes

      You should now be able to see downvotes on posts by clicking on the vote number between the up and down arrows. It's probably impossible to accurately click it on mobile, but it's at least viewable now.

      posted in Suggestions & Questions
      Glitch
      Glitch
    • Category relevance

      Please keep the majority of vitriol to the Hog Pit. We've tried to stay very hands off, mainly because we don't want to deal with constant requests to remove topics, or constant monitoring of people's crap. We just want to read and participate in the forums too, so help us by keeping your posts relevant to their categories.

      posted in Announcements
      Glitch
      Glitch
    • SomeDude

      This user has been banned.

      posted in Announcements
      Glitch
      Glitch

    Latest posts made by Glitch

    • RE: Something Completely Different

      @ganymede You banned @Kanye-Qwest for calling you a thumb, though I do believe she said "fucking thumb" and then you give warnings here about "continuing to personally attack". Your application of your own rules are so uneven that is it even any wonder that people like @RightMeow, who doesn't seemed involved in any way, is still TIPTOEING around in their responses for fear of a ban?

      I didn't really want to respond because I didn't want to provide any more oxygen to this last gasp as I was, at one point, an admin too. However, I well and truly feel like you are going to walk off into the sunset, head held high, thinking that you were right the whole time even as you lost a community. I am not as attached to the name or place as some people, and it is fitting that yet another iteration of these boards goes out in a bang, but it's still a bit sad to see.

      @reimesu You pinky. Gany's reputation. Despite your histrionics about what WORA is and what MSB is, it is still a community. And reputation matters. To what extent depends, of course, and with whom, but it's not nothing.

      I won't dramatically peace out or anything, but @Ganymede I feel like you did a disservice to this community and @Derp, if you had been any sort of thoughtful, you'd have stepped down for the sake of the other mods, if nothing else.

      posted in Mildly Constructive
      Glitch
      Glitch
    • [Closed] [Commission] Location-based descs

      Filled. Thanks for any interest.

      I'm looking for someone (or a few someones) interested and willing to write location descriptions. I'd like 15 descriptions, ~10 for the space station and ~5 for planet-side. I'll pay $105 for all 15 ($7 each) via paypal.

      I have no idea if this will get any responses or not, but if you'd like to take this on, I would like at least 5 descriptions (for some consistency in writing style), but you can do more if you like.

      Please don't start writing until we agree on a number of locations and the concept for the location. For an idea, these are the loose guidelines for the locations, but if you've got a good idea, I'm open to it. I just want evocative hub locations off of which smaller buildings and locations will exist.

      Space Station (middle eastern and korean influences, slicker, more sterile areas in Core, more cosmopolitan in the Ring).

      Core

      • Academy (5 factions)
      • The spire (central place of govt, 5 factions)
      • (Some other locations, fancy space garden, etc)

      The Ring

      • Spaceport
      • Promenade
      • (Various plazas?)

      The Cellar

      • Upper
      • Lower
      • Well (very bottom)

      Planet-side (industry that feeds the station, better off than those in the cellar but planet-bound, a lot more freedom to decide what goes here).

      • Central city with some areas that don’t duplicate station, advanced mining, space ship parts factory, etc)

      If interested, please DM me with a sample description (from any previous location description, not one from above), and how many you'd like to write.

      posted in Game Development
      Glitch
      Glitch
    • RE: "Flag this post for moderation"

      Flagged posts can be managed through the link in the drop-down menu of the admin's avatar under "Moderation Tools" as "Flagged Content".

      posted in Announcements
      Glitch
      Glitch
    • RE: Mass Effect MU*?

      @ganymede Biotics is pretty much just magic with a sci-fi flare, which we've done some work on. We're on hold for code changes while seeing how the big updates @faraday is in the midsts of pans out. I like where she's heading on all of it, but it does put things in a rather large state of flux.

      posted in MU Questions & Requests
      Glitch
      Glitch
    • RE: Mass Effect MU*?

      @roz As long as everyone consented to go, right? πŸ˜„

      posted in MU Questions & Requests
      Glitch
      Glitch
    • RE: Alternative Formats to MU

      @sparks Right, but I'm talking about core. The essentials of what you get from a "base" install. I definitely think there should be system plugins for all the things.

      posted in Suggestions & Questions
      Glitch
      Glitch
    • RE: Alternative Formats to MU

      @tat I don't think combat resolution is right for a core component. Maybe some universal dice roller, but anything more is just getting in the way, imo.

      posted in Suggestions & Questions
      Glitch
      Glitch
    • RE: Alternative Formats to MU

      @auspice Yes, your anecdotal evidence is the correct basis for all the factual statements you've made in your posts so far in this thread. The sheer disrespect and dismissiveness of those not in this hobby, but perhaps interested, matched to the misplaced sense of writing superiority, is infuriating. I'm obviously of the belief that telnet is no longer where I'd like to see the hobby go, but when you adamantly state it's not for you, I can't say I'll be sorry if that turns out to be true.

      Someone more even-tempered at the moment might suggest that they hope you're so impressed by new developments that you change your mind, but I think your attitude toward new people will only ever be detrimental. And I'd rather take my chances with them.

      posted in Suggestions & Questions
      Glitch
      Glitch
    • RE: Muxify Bug

      @thenomain said in Muxify Bug:

      https://raw.githubusercontent.com/thenomain/GMCCG/master/1 - Data Dictionary/1a - Setup.txt

      I pasted this directly into the left pane with chrome 62.0.3202.94 on a mac and it seemed to work fine. What version of chrome are you running and is it on Windows?

      posted in MU Code
      Glitch
      Glitch
    • RE: Muxify Bug

      What's it doing? Do you have some sample code I can try that isn't behaving as expected?

      posted in MU Code
      Glitch
      Glitch