Login
User Name:

Password:



Register

Forgot your password?
Overland with Bitmaps
Jul 4, 2025 11:57 pm
By Samson
void nanny_get_new_race -- comm.c
Mar 13, 2025 7:08 am
By Elwood
IPv6
Jan 25, 2025 10:45 pm
By Samson
mudstrlcpy and mudstrlcat
Jan 18, 2025 5:23 pm
By Samson
I3 and IMC
Jan 17, 2025 9:35 pm
By Samson
SWFotEFUSS 1.5.3
Author: Various
Submitted by: Samson
SWRFUSS 1.4.3
Author: Various
Submitted by: Samson
SmaugFUSS 1.9.8
Author: Various
Submitted by: Samson
AFKMud 2.5.2
Author: AFKMud Team
Submitted by: Samson
SmaugFUSS 1.9.7
Author: Various
Submitted by: Samson
Users Online
Anthropic, AhrefsBot, Bing, DotBot

Members: 0
Guests: 5
Stats
Files
Topics
Posts
Members
Newest Member
507
3,812
19,725
594
Bardecome

» SmaugMuds » Bugfix Lists » LoP Bugfix List » nifty_is_name issue
Forum Rules | Mark all | Recent Posts

nifty_is_name issue
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Jan 27, 2012 8:20 pm   
Go to the top of the page
Go to the bottom of the page

Remcon
Geomancer
GroupAdministrators
Posts1,992
JoinedJul 26, 2005

 
The old nifty_is_name seems to not work like it should in some cases.
Take an exit and set it with the keywords 'Iron Gate' (Since you want it to show iron gate when opening, closing etc...)
If you don't put the 's around it, then iron and gate will work, but it will only show iron when opening, closing etc...
After you do that flag the exit as isdoor and closed and then try the keywords iron, gate, iron gate, 'iron gate' and none of them will work...

After taking a bit of time to play around with nifty_is_name I suggest making it look like this:
/* Checks if str is a name in namelist supporting multiple keywords - Thoric */
bool nifty_is_name( char *str, char *namelist )
{
   char name[MIL], strname[MIL];

   /* Exact match is good */
   if( str && str[0] != '\0' && namelist && namelist[0] != '\0' )
   {
      if( is_name2( str, namelist ) )
         return true;
   }

   while( namelist && namelist[0] != '\0' )
   {
      namelist = one_argument2( namelist, name );

      while( str && str[0] != '\0' )
      {
         str = one_argument2( str, strname );
         if( is_name2( strname, name ) )
            return true;
      }
   }
   return false;
}

After doing so it makes 'iron gate', iron, gate all work.

Pages:<< prev 1 next >>