Login
User Name:

Password:



Register

Forgot your password?
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
AFKMud 2.5.1
Jan 17, 2025 2:22 pm
By Samson
Array out of bounds ?
Jan 16, 2025 4:48 am
By Remcon
SmaugFUSS 1.9.7
Author: Various
Submitted by: Samson
AFKMud 2.5.1
Author: AFKMud Team
Submitted by: Samson
Kayle's Weather Code for AFKMud
Author: Kayle
Submitted by: Samson
AFKMud 2.5.0
Author: AFKMud Team
Submitted by: Samson
SWFotEFUSS 1.5.2
Author: Various
Submitted by: Samson
Users Online
Anthropic, Bing, AhrefsBot

Members: 0
Guests: 4
Stats
Files
Topics
Posts
Members
Newest Member
503
3,811
19,714
589
xhuul

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