Jon Nielsen wrote:
>
> > Hi I was wondering if any one has come accross a way to set automaticaly
> > the colour/color and the autoexits system on? I would be very greatull
> for
> > the help.
> Erm, SET_BIT(PRF_FLAGS(ch), PRF_AUTOEXITS)? If my memory serves
> me. Just put that in the function that is called when a character
> is first made. (in race.c somewhere, surely)
>
I found this, I can not figure out how to actually execute the command in the
code for the character.
#define PRF_TOG_CHK(ch,flag) ((TOGGLE_BIT(PRF_FLAGS(ch), (flag))) & (flag))
ACMD(do_gen_tog)
{
long result;
extern int nameserver_is_slow;
<snip>
case SCMD_AUTOEXIT:
result = PRF_TOG_CHK(ch, PRF_AUTOEXIT);
break;
I am assuming that the autoexit command toggles the prf_autoexit, not set it.
Or is there a way to "SET" it in the code?
--------------
Also with the Color, since there are 4 variables that it checks for, how can
you tell it a specific one?
act.informative.c
ACMD(do_color)
{
int tp;
if (IS_NPC(ch))
return;
<snip>
SET_BIT(PRF_FLAGS(ch), (PRF_COLOR_1 * (tp & 1)) | (PRF_COLOR_2 * (tp & 2)
>> 1));
I am not sure what exactly it is doing here, the "* (tp & 1)" part, could
someone send a brief explanation of what this does? It may be basic to some
of you, but I have not dealt with this yet.
+------------------------------------------------------------+
| Ensure that you have read the CircleMUD Mailing List FAQ: |
| http://democracy.queensu.ca/~fletcher/Circle/list-faq.html |
+------------------------------------------------------------+
This archive was generated by hypermail 2b30 : 12/15/00 PST