The version history now contains all of the releases tagged and uploaded, which is pretty cool. Thanks to Doug Miller for that. The next step, imo, is porting...
a beginner coder with not much experience on cygwin so having a bit of trouble. using 3.6 on the latest cygwin and while it compiled, just one warning in...
a beginner coder with not much experience on cygwin so having a bit of trouble. using 3.6 on the latest cygwin and while it compiled, just one warning in...
It seems like you did "../NakedMud" rather than "./NakedMud". Try again with a single period, it should work -- I've run NakedMud in Cygwin a couple of times...
That's what I thought too. And it turns out you're right but still not working that I can see i get a [1] 2948 no idea what that means ... From: Patrick...
I'm not sure how well daemonizing servers works on cygwin. So try it with ./NakedMud 1234 and then try telnetting to localhost 1234 ... From: Jeremy Cook...
tried that too. it does nothing at all when i do it like that. can't even get a prompt. ... From: DaftPun <daftpun@...> To: nakedmud@yahoogroups.com ...
Okay, can you post a copy of the commands you are executing and what directories you are executing them in? Maybe a copy of the logfile the nakedmud creates....
Just as a quick follow up. A break point on init_socials() and stepping through would be a good place to start. Assuming that returns just fine, I'd start...
Ok, I have no idea what you said or how to do it. I'll google how tomorrow unless you have a tutorial. This is what I get for learning about computer with a...
Hello, In helping out Jeremy tonight I found some missing information in the default 3.6 release. It appears that the default worn commands are not included...
still unable to connect after compiling, going to try an older version. ... From: Doug Miller <d.orkim@...> To: nakedmud@yahoogroups.com Sent: Friday,...
I thought I'd post this here incase anyone was interested in seeing what we're doing with NM as a base. The full blurb is below, but the server is at ...
Hey all. I have some simple yet probably stupid questions. I have managed to get a race module installed and everything works great. However, I am not...
... Yeah, through the , though charStore. Just make the appropriate change to the casing of the race. Though I'd suggest you nip the problem at its source, and...
Thanks for the quick reply. I will probably go with the C option since I do not know Python. Then again there is no time like the present to learn! :) Thanks...
Hi there. I am currently working on building a Mud with the Nakedmud codebase. I figured out how to get mobs to gen using the Room Reset Trigger, where the...
That's because genmob is just the string "target@training" or "target2@training". You need to use load_mob to get the actual mobile object, eg. summobs =...
oh and here is the final code for the trigger for all interested parties. summobs = count_mobs("target@training") + \ count_mobs("target2@training") if summobs...