Reply to this subject
Start a new subject
 
Refresh page
| Posted by |
Gasman
(9 posts) bio
|
| Date |
Wed 12 Nov 2003 11:39 PM (UTC) [ quote
] |
| Message |
ok, i want to be able to grat people when they complete a quest, or gain a level. but i want mushclient to do it for me. but i dont want the grat to come right after they complete the quest, so how can i put a time delay in there?
any ideaS? oh and if you need this it would say
"Name has completed a quest!" or "Name has gained a level!"
thanx | top |
|
| Posted by |
Nick Gammon
Australia (18,770 posts) bio
Forum Administrator |
| Date |
Reply #1 on Thu 13 Nov 2003 05:56 AM (UTC) [ quote
] |
| Message |
Good idea. A delay makes it look less automated.
In the trigger, you can "send to script" and in the "send" box put something like this:
DoAfter 10, "%1 has completed a quest!" |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | top |
|
| Posted by |
Magnum
Canada (580 posts) bio
|
| Date |
Reply #2 on Thu 13 Nov 2003 01:17 PM (UTC) [ quote
] Amended on Thu 13 Nov 2003 01:25 PM (UTC) by Magnum
|
| Message |
Put this in your main script file:
Sub DoRand (MinTime, Maxtime, String)
Dim DelayTime
DelayTime = Int(((MaxTime-MinTime+1) * Rnd) + MinTime)
World.DoAfter DelayTime, String
End Sub
...Then you could use that whenever you want to have a delayed send, with random time. For example:
DoRand 5,10, "say Hello" ' Send the line at a random time between 5 and 10 seconds.
DoRand 1,5 "grat " & TargetPlayerName
|
Get my plugins here: http://www.magnumsworld.com/muds/
Constantly proving I don't know what I am doing...
Magnum. | top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
3,113 views.
Reply to this subject
Start a new subject
 
Refresh page
top
Comments to:
Gammon Software support
Forum RSS feed ( http://www.gammon.com.au/rss/forum.xml )