Staying Grey
Posted:
Sat Jul 17, 2004 8:14 pm
by Rena
I post this here cause I am using WoD, so I am hoping someone will help me on this one. Okay, I was wondering, is there anyway that it could be made so that alignment could be set? What I mean is, is there a way for people who want to be neautral to be able to run around with their name grey permanetely? and if so, where would this be edited at?
Posted:
Wed Jul 28, 2004 1:07 am
by dw3rby
I'm not sure, but I imagine you could probably use some sort of cprop to flag a char criminal using a dot command.
Posted:
Sat Jul 31, 2004 3:53 am
by Zoram
There is a .grey ( or is that .gray) command bu tthat expires after a timer, you might check that though.
Posted:
Sun Aug 01, 2004 9:27 pm
by dw3rby
I just wrote one for yeh, here it is:
- Code: Select all
use uo;
var criminal := 0;
program criminal_toggle( character )
if (!criminal)
character.criminal := 1;
SendSysMessage (character, "Your are now flagged criminal!");
elseif (criminal)
character.criminal := 0;
SendSysMessage (character, "You are no longer flagged criminal!");
else
SendSysMessage (character, "Jake sucks at scripting!");
endif
endprogram
It can be used as a dot command, or if you want, I could write a gump for it...so as to use it on a stone or somesuch...mebbeh.