Search the web
Sign In
New User? Sign Up
dg_scripts · DG scripts
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 552 - 581 of 791   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
552
If you have scripts that use door commands, to open or shut doors or change the doors names or keys. Remember that if a door is changes by a script, and the...
Jamie Nelson
mordecai4d
Offline Send Email
Jan 11, 2004
8:12 am
553
... Från: "Jamie Nelson" <mordecai@...> Till: <dg_scripts@yahoogroups.com> Skickat: den 11 januari 2004 09:14 Ämne: [DG_SCRIPTS] Note About door...
molly.4d
molly.4d@...
Send Email
Jan 11, 2004
9:40 pm
554
I have a question that is seemingly simple. All I want is a script that makes a mob say 'Good morning!' if it is morning, and 'Good evening!' if it is evening....
molly.4d
molly.4d@...
Send Email
Jan 12, 2004
9:35 am
555
if %time.hour% > 12 say good evening! else say Good Morning! end ... From: molly.4d [mailto:molly.4d@...] Sent: Monday, January 12, 2004 10:35 PM To:...
Jamie Nelson
mordecai4d
Offline Send Email
Jan 12, 2004
9:54 am
556
... change ... Not only does the door change stay if the zone is saved by a builder. If the game happens to reboot or crash while the change is in effect, it...
Christian Ejlertsen
macane99
Offline Send Email
Jan 12, 2004
3:07 pm
557
Yo, One of my builders keeps having the triggers in his zone doubbling up on the trigger index. I will show you an example below, sory for the large text...
Jamie Nelson
mordecai4d
Offline Send Email
Jan 17, 2004
1:00 pm
558
... From: "Jamie Nelson" ... the ... edit lib/world/trg/index and remove the duplicate 46.trg line. That should fix it. If not, make sure 46.* is only present...
Welcor
welcor_of_cr...
Offline Send Email
Jan 18, 2004
12:11 am
559
... Woah, so many doubled up index lines. How is this preventable? [Non-text portions of this message have been removed]...
Jamie Nelson
mordecai4d
Offline Send Email
Jan 18, 2004
12:26 am
560
... Well, i havent prevented the duplications, but i have stopped them affecting the mud. in db.c void index_boot(int mode) --snip char buf2[MAX_INPUT_LENGTH];...
Jamie Nelson
mordecai4d
Offline Send Email
Jan 18, 2004
1:22 am
561
... From: "Jamie Nelson" ... affecting ... I've only noticed the problem twice. Neither time was there any indication of why the duplication happened -...
Welcor
welcor_of_cr...
Offline Send Email
Jan 18, 2004
10:37 pm
562
I am wanting to set a room trigger that will lock and unlock a door based on the time of day. Here is what I have done: %echo% %time.hour% Grate is %south%. ...
Ken Ray
kenr86
Offline Send Email
Jan 24, 2004
3:38 pm
563
... From: "Ken Ray" ... This should probably be %self.south% if it's room 3200 this trigger is attached to. ... Exactly. %room.south% and %self.south% return...
Welcor
welcor_of_cr...
Offline Send Email
Jan 24, 2004
4:57 pm
564
... Wonderful. That has solved one problem. However, when I now check the status of the returned string, I want to see if the door is already locked. No...
Ken Ray
kenr86
Offline Send Email
Jan 24, 2004
5:28 pm
565
take the quotation marks off the LOCKED if (!(%self.south% /= "LOCKED")) to if (!(%self.south% /= LOCKED)) [Non-text portions of this message have been...
Jamie Nelson
mordecai4d
Offline Send Email
Jan 24, 2004
10:30 pm
566
... and here is an example. Detta came up with a similiar idea a few weeks ago and this is how we ended up resolving it: Name: 'keep door locked in 2940',...
Nate Winters
wintersn.geo
Offline Send Email
Jan 24, 2004
10:36 pm
567
... Fantastic. Thank you. _________________________________________________________________ High-speed users—be more efficient online with the new MSN...
Ken Ray
kenr86
Offline Send Email
Jan 24, 2004
10:39 pm
568
... That works even better. My next question - since most doors have two sides, I can use two %door% commands to close and lock, or unlock both sides of the...
Ken Ray
kenr86
Offline Send Email
Jan 24, 2004
11:05 pm
569
%zrecho% <roomvnum starting> <roomvnum ending> <message> I don't suppose you have the zone range echo.. :-P If you want the snippit for it, i will paste it in...
Jamie Nelson
mordecai4d
Offline Send Email
Jan 24, 2004
11:25 pm
570
... door? ... One that I always seem to forget and no one every uses is asound. Granted would only work 'properly' at a dead end. But a possibility. %ASOUND%...
Nate Winters
wintersn.geo
Offline Send Email
Jan 24, 2004
11:45 pm
571
... From: Jamie Nelson [mailto:mordecai@...] ... Nice, will add it to Welcor's idea list. Rumble The Builder's Academy enigma.dune.net 9091 [Non-text...
Nate Winters
wintersn.geo
Offline Send Email
Jan 24, 2004
11:47 pm
572
... Cool. That is exactly what I want. Any chance of posting the code somewhere? _________________________________________________________________ Learn how...
Ken Ray
kenr86
Offline Send Email
Jan 24, 2004
11:54 pm
573
Okay, sorry, i am pretty sure this is all of it, i just pulled it together now. Good luck! ... in comm.h add: void send_to_range(room_vnum start, room_vnum...
Jamie
mordecai4d
Offline Send Email
Jan 25, 2004
7:54 am
574
in do_orecho and do_wrecho i have the log functions wrong, it should be obj_log and wld_log respectively instead of mob_log for both. [Non-text portions of...
Jamie Nelson
mordecai4d
Offline Send Email
Jan 25, 2004
8:07 am
575
And another thing, sorry about this guys. all the if (!*msg || !*lower || !*upper) needs to be changed to: if (!*msg || !*start || !*finish)...
Jamie
mordecai4d
Offline Send Email
Jan 25, 2004
8:23 am
576
My first question is, how would i go about check if a door exists in the room? 1) Name : doorcheck 2) Intended for : Objects 3) Trigger types: Command ...
Blitz
blitz_alderisio
Offline Send Email
Jan 27, 2004
5:54 am
577
... the room? ... Always %echo% anything you are trying to match or figure out. Try this: %echo% NORTH: %self.north(bits)% %echo% SOUTH:...
Nate Winters
wintersn.geo
Offline Send Email
Jan 27, 2004
1:08 pm
578
Does mhunt work? Or is it like do_hunt and really doesnt work. Anyone have a fix for this if, like i think, it does not work. Scott...
scmeis1
Offline Send Email
Feb 7, 2004
7:47 pm
579
... Works on TBA. Here is an example: Name: 'Hunt Example', VNum: [ 41], RNum: [ 41] Trigger Intended Assignment: Mobiles Trigger Type: Memory , Numeric...
Nate Winters
wintersn.geo
Offline Send Email
Feb 7, 2004
8:34 pm
580
hi... I had a question regarding dg_cast. Is it supposed to echo the casting to the screen like it does for players? I set up a script using dg_cast and while...
thralen
Offline Send Email
Feb 12, 2004
6:28 pm
581
... From: "thralen" ... You're supposed to put in the text you want displayed in the script. The reason for not letting dg_cast echo a message is to make it ...
Welcor
welcor_of_cr...
Offline Send Email
Feb 12, 2004
11:35 pm
Messages 552 - 581 of 791   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help