Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to "verify" your details, 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.
Entire forum
➜ SMAUG
➜ SMAUG coding
➜ bool spec guard
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Ithildin
USA (262 posts) Bio
|
Date
| Thu 23 Sep 2004 07:28 PM (UTC) |
Message
| In this bool, what this does is sees if the character is outlawed, crimmed, or aggressive to the race. but if my character is disguised, i want him to bypass taht. i put this in the bool:
if (xIS_AFFECTED (ch, AFFX_DISGUISE))
{
act ("$n intently scans around the room.\n\r", ch, NULL, NULL, TO_ROOM);
return;
}
but it comes up as a warning. i figure i can't put a return in a bool statement? what would i put in then?
here's my warning;
return' with no value, in function returning non-void
so i'm not sure what else i can use. | Top |
|
Posted by
| Nick Cash
USA (626 posts) Bio
|
Date
| Reply #1 on Thu 23 Sep 2004 09:44 PM (UTC) |
Message
| try this:
if (xIS_AFFECTED (ch, AFFX_DISGUISE))
{
act ("$n intently scans around the room.\n\r", ch, NULL, NULL, TO_ROOM);
return FALSE;
}
|
~Nick Cash
http://www.nick-cash.com | Top |
|
Posted by
| David Haley
USA (3,881 posts) Bio
|
Date
| Reply #2 on Fri 24 Sep 2004 12:30 AM (UTC) |
Message
| Yes. The 'bool statement' is actually a function returning a boolean. It's telling you that you shouldn't just return out of the function; you have to return something. |
David Haley aka Ksilyan
Head Programmer,
Legends of the Darkstone
http://david.the-haleys.org | 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.
13,066 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top