Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ SMAUG
➜ SMAUG coding
➜ WAIT_STATE & add_timer
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Last
(1 post) Bio
|
| Date
| Tue 25 Feb 2003 04:19 PM (UTC) |
| Message
| Hi, I've been looking at the do_cast function in magic.c for a couple of days now but can't figure out WAIT_STATE. I've fiddled around with it and am trying to make the lag occur in between the start of the cast and end of the cast, instead of after the cast.
So I've sort of modified the code so that we basically have
send_to_char("You start casting.\n\r", ch);
WAIT_STATE(ch, skill->beats);
send_to_char("You stop chanting.\n\r", ch);
but it always ends up with lag occurring even after "You stop chanting". Why does this happen?
I took a look at the vamp part of the code and it uses the add_timer function. What's the difference between using WAIT_STATE and add_timer?
Thanks
Last | | Top |
|
| Posted by
| Nick Gammon
Australia (23,173 posts) Bio
Forum Administrator |
| Date
| Reply #1 on Tue 04 Mar 2003 12:32 AM (UTC) |
| Message
| There have been heaps of posts about doing a wait, try looking for ones by Kris, he tried it a while back.
The simple answer is that the server cannot "wait" in the middle of its code, if it did the other players would hang.
Thus, your code would send "You start casting." and "You stop chanting" in quick succession.
Look at the other posts for other ideas. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | | 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.
10,101 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top