Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ SMAUG
➜ SMAUG coding
➜ "Char title is here before you."
|
"Char title is here before you."
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Svarox
(4 posts) Bio
|
| Date
| Mon 06 Sep 2004 07:14 AM (UTC) |
| Message
| I wanted to remove the player's title from their long desc.
Ex: Player (Title) is here before you.
Does anyone know how to do this or done it before? | | Top |
|
| Posted by
| Spike
(27 posts) Bio
|
| Date
| Reply #1 on Mon 06 Sep 2004 09:38 AM (UTC) |
| Message
| | Did..you look at the code before asking... | | Top |
|
| Posted by
| Zeno
USA (2,871 posts) Bio
|
| Date
| Reply #2 on Mon 06 Sep 2004 03:50 PM (UTC) |
| Message
| | Should be in act_info.c, function show_char_to_char. |
Zeno McDohl,
Owner of Bleached InuYasha Galaxy
http://www.biyg.org | | Top |
|
| Posted by
| Nick Cash
USA (626 posts) Bio
|
| Date
| Reply #3 on Tue 07 Sep 2004 11:40 PM (UTC) |
| Message
| Well, that was kind of vague. I think we are really dealing with a newbie coder here. So here's the solution in a bit more detail.
I actually belive that it is in show_char_to_char_0 (Zeno was right, since show_char_to_char_0 is called from show_char_to_char). Doing a search for title should turn up lines like these:
if ( !IS_NPC(victim) && !IS_SET(ch->act, PLR_BRIEF) )
strcat( buf, victim->pcdata->title );
else
strcat( buf, PERS( victim, ch ) );
People who havent done a config +brief will see the whole title. If you don't care, the easiest and probably best way to fix it is to just do:
if ( !IS_NPC(victim) && !IS_SET(ch->act, PLR_BRIEF) )
strcat( buf, PERS( victim, ch ) );
else
strcat( buf, PERS( victim, ch ) );
You could just eliminate the if and else statements all togeather and just leave it as:
strcat( buf, PERS( victim, ch ) );
PERS will show a characters short description (if its an NPC) or the players name. If the looker cannot see the person, they will get "someone".
Hopefully that may help you more, or someone in the future. Good luck. |
~Nick Cash
http://www.nick-cash.com | | Top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
17,080 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top