Login
User Name:

Password:



Register

Forgot your password?
do_advance
Jun 27, 2026 10:32 am
By Remcon
Time spamming LOP1.6
Jun 17, 2026 4:03 pm
By Remcon
A Bash Startup Script
Feb 7, 2026 3:49 pm
By eldhamud
Force Skills
Jan 1, 2026 3:58 pm
By Elwood
Overland with Bitmaps
Jul 4, 2025 11:57 pm
By Samson
SillyMUD 1.2a
Author: J. Brothers, J. Sievert, et al
Submitted by: Samson
SillyMUD 1.1b
Author: J. Brothers, J. Sievert, et al
Submitted 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
Users Online
Anthropic, Bing, Amazonbot

Members: 0
Guests: 31
Stats
Files
Topics
Posts
Members
Newest Member
512
3,813
19,727
593
TrinidadTr

» 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,991
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 >>