Login
User Name:

Password:



Register

Forgot your password?
do_owhere recursive
Author: Khonsu
Submitted by: Khonsu
Changes list / Addchange
Author: Khonsu
Submitted by: Khonsu
6Dragons mp3 sound pack
Author: Vladaar
Submitted by: Vladaar
AFKMud 2.2.3
Author: AFKMud Team
Submitted by: Samson
SWFOTEFUSS 1.5
Author: Various
Submitted by: Samson
Users Online
Google, Bing, AhrefsBot

Members: 0
Guests: 32
Stats
Files
Topics
Posts
Members
Newest Member
489
3,792
19,646
597
Aileenutz

Today's Birthdays
There are no member birthdays today.
» 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 >>