Reply to this subject
Start a new subject
 
Refresh page
| Posted by |
Ithildin
USA (262 posts) bio
|
| Date |
Thu 23 Sep 2004 07:28 PM (UTC) [ quote
] |
| 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) [ quote
] |
| 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
Moderator |
| Date |
Reply #2 on Fri 24 Sep 2004 12:30 AM (UTC) [ quote
] |
| 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.
2,432 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 )