... Actually nevermind, its something to keep in mind but again, thanks to the bilinguality of nakedmud I suppose its just as easy to use the python api and...
Oops, meant to reply to this topic but I don't think I ever did. In short, no. It is a convenience for few but an inconvenience for many to make such a change;...
I completely agree with the stand-aloneness concept. In fact, I was (and still am) hesitant about using MySQL for this same reason. Ultimately, though I just...
Okay, I've been using cygwin, on winxp. To make linking possible, I used the makefile settings from this mailing list, and I also moved all of the files from...
... DIR represents a directory in C. So you'll want to figure out what C header has this definition and then include it at the top of pyplugs.c. Or, probably...
No idea. I believe Hera has done a pretty large addition to the current helpfiles. I have no idea where in internet space they are at the moment, though. If...
Sorry for yet another question, but just wondering how would one go about deleting an item? Say through a junk command, so that said item doesn't sit there...
consider looking at the "purge" command -- it is written in Python in the latest release. If you want a C version of it, look back a couple releases....
correction. I thought I rewrote the purge command in Python, but it is one of the builder commands I moved into the olc module. So look there for it in C. If...
Can someone please explain the char_vars module a little more clearly for me? I've been basically coding things in my modules in this order: 1. define the...
The char_vars module was designed with temporary, on-the-fly creation of variables in mind. So, mainly for use with triggers. If you tried very hard, you could...
... Hera's helpfiles were on the group yahoo page but I don't see them now. Hera did you want to post yours again? If not I'll be more than happy to put mine...
Well, I have a question, I used the auxiliary_exmaple as a guide to adding some character specific info, for example an integer value. However, when I saved,...
... Triggers are Python scripts attached to objects, mobiles, rooms, etc... that 'trigger' when certain events happen (e.g. a character entering the room, an...
... Well, one quide I can offer is how to add more wearspots. OR I could just provide the module I used, and zip it all up, and then its done that way *shrugs*...
Well, what happened was I had setrpp, and getrpp. I setrpp 10 and then, saved, quit, came back in, and typed getrpp. The value showed up as zero.The code is...
Hi, I'm not Geoff's caliber but I am a pretty good C and Python coder. #1 - Geoff, is all this correctly fixed for Python? #2 - I did not see your attachment....
Here it is, sorry about that.<pre>"""cmd_emote override. Also has the class rppholder, trpp etc."""from mud import *from inform import *from mudsys import...
One problem I see is that cmd_setrpp is treating arg as a string, but you are trying to store/read it as an int. That will cause problems. You need something...
I'm getting the following error. I haven't touched the say command. So I'm wondering if anyone else is seeing the same thing: All I type is say or ' with...
Ah, I found that bug. send_to_char is undefined, you need to use message(ch, None, None, None, False, "to_char", "But say what?!") instead. send_to_char is in...
... Well, right now, anything we can get our hands on that doesn't already have a guide written (or that does, but a poor guide as is). Things that I think are...