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
➜ Compiling the server
➜ updates, please help
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Matt
(5 posts) Bio
|
| Date
| Wed 08 Aug 2001 01:22 PM (UTC) |
| Message
| i added a function and a stat to my mud called pl, i have it declared and i can get it to appear in the prompt and all that... i have added this to update.c
void pl_update(CHAR_DATA *ch)
{
ch->pl = (ch->max_hit * ch->max_move) / 10;
return;
}
which is the function based on what pl is calculated at... i want it to update every second, but cannot figure out how to do it, would you be able to help me.. i would be very greatful, thanx
matt | | Top |
|
| Posted by
| Nick Gammon
Australia (23,166 posts) Bio
Forum Administrator |
| Date
| Reply #1 on Wed 08 Aug 2001 10:39 PM (UTC) |
| Message
| I would add it to the function char_check, which periodically checks every character:
/*
* Function to check important stuff happening to a player
* This function should take about 5% of mud cpu time
*/
void char_check( void )
{
... [snip] ....
if ( IS_NPC( ch ) )
{
... [snip mob handling stuff] ....
}
else
{
pl_update (ch);
|
- 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.
11,205 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top