Finally managed to strip down Quickmud to the bare bones. Only have the required help files, limbo.are, midgaard.are and hood.are. No errors, only crashed once because I forgot to delete some resets in midgaard. After I take a break and actually do something productive *coughstudy-write-paperscough*, I will try to get rid of Midgaard and try to figure out why Gangland is needed? I know why limbo is needed so no rocket science there.
Now that's a spicy meat-ah-ball!
Oh yeah, and in case any of you *don't* already know, Arthmoor has the most kick ass set up ever! I typed make and was amazed at the speed. Samson, you da man :)



Comments
Gratz! :)
Is Gangland the starting town or something? Is there some mob/object/room in it that's hard coded in Quickmud?
Good to hear. I'd only heard good things about Samson's hosting services to date so no real surprises there though.
hood.are or Gangland has some kind of special progs coded into them. I haven't been able to figure out how I can move them without irreparably breaking something :P As you have heard me say before, I am NOT a coder. I think I can actually remove Midgaard though, as I have most of the #defines in merc.h in limbo.are now. We'll see!
As for Arthmoor, it's sweet :)
I know you're "not a coder", but it really isn't that hard to change the numbers for the defines in merc.h to numbers in the limbo range and then do "make clean" to recompile so that the mud's only looking for stuff in limbo, the hard part is that it could have other hard coded vnum values elsewhere in the code too that also need to be changed and might not even cause a problem until someone happens to cast that wrong spell or ... this is why we try to get rid of all the "magic numbers" like that from code as best we can. (Vnums, levels, etc can all change, but if they're only actually numbers in merc.h (ie, one file) then they're much easier to track down than if they're everywhere.)
I'm glad that Arthmoor is working out so well for you, personally I wouldn't give up self-hosting, but it's not for everyone.
When I was doing my mud (a rom24 bustout) awhile back, I moved all the so called 'prototype' objects/mobs into their own area file, so I could use them anywhere in the game, easily, without worry, only had to code the defines in merc.h
Later on I moved to creating a olc editor for it, so all the info was saved to a dat file. I went quite crazy with the dat files..
Anyways, good luck with the continued effort.