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, Baiduspider, Amazonbot, Bing, Google

Members: 0
Guests: 40
Stats
Files
Topics
Posts
Members
Newest Member
512
3,813
19,727
596
MelinaPaws

» SmaugMuds » General » Smaug Snippets » alias snippet fix-like hack
Forum Rules | Mark all | Recent Posts

alias snippet fix-like hack
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Mar 17, 2018 8:14 pm   
Go to the top of the page
Go to the bottom of the page

Vladaar
Apprentice
GroupMembers
Posts57
JoinedNov 24, 2016

 
So alias command stops working after 50 uses ingame. With no way to reset it. That makes it kinda pointless.

This is what I did. I changed check_alias so it resets the ch->cmd_recurse

bool check_alias(CHAR_DATA *ch, char *command, char *argument)
{
  char                    arg[MIL];
  ALIAS_DATA             *alias;

  if((alias = find_alias(ch, command)) == NULL)
    return FALSE;

  if(!alias->cmd || !*alias->cmd)
    return FALSE;

  snprintf(arg, MIL, "%s", alias->cmd);

  if(ch->cmd_recurse == -1 || ++ch->cmd_recurse > 50)
  {
    ch->cmd_recurse = 0;
    interpret(ch, (char *) "alias";);
  }

  if(argument && *argument != '\0')
  {
    mudstrlcat(arg, " ", MSL);
    mudstrlcat(arg, argument, MSL);
  }

  interpret(ch, arg);
  return TRUE;
}

Post is unread #2 Mar 20, 2018 9:13 pm   
Go to the top of the page
Go to the bottom of the page

Vladaar
Apprentice
GroupMembers
Posts57
JoinedNov 24, 2016

 
Ok, don't advise doing that causes ingame crashes after awhile. Need a better fix, than what I offered.

Pages:<< prev 1 next >>