Welcome to the Builder Academy

Question spell use TRUE or FALSE

More
21 Mar 2025 17:17 #10602 by JTP
spell use TRUE or FALSE was created by JTP
Im working on a spell that will have a message to caster, one for victim and one for room

But Im unsure when to use TRUE or FALSE

also when to add ch or victim

Here is my examble:

  act("You hit...!", TRUE or FALSE, ch, 0, 0, TO_CHAR);
  act("$n hits you!", TRUE or FALSE, ch, 0, victim, TO_VICT);
  act("$N is hit.", TRUE or FALSE, victim, 0, 0, TO_ROOM);


Hope someone can help me ?

Please Log in or Create an account to join the conversation.

More
21 Mar 2025 17:59 #10603 by ironfist
Replied by ironfist on topic spell use TRUE or FALSE
It is supposed to not display a message to a character who can't see through invisibility or for other reasons.  If it is false then it should show everyone the message.

char * act(const char *str, int hide_invisible, struct char_data *ch, struct obj_data *obj, void *vict_obj, int type);
Code:
  for (; to; to = to->next_in_room) {     if (!SENDOK(to) || (to == ch))       continue;     if (hide_invisible && ch && !CAN_SEE(to, ch))       continue;     if (type != TO_ROOM && to == vict_obj)       continue;     perform_act(str, ch, obj, vict_obj, to);   }

Please Log in or Create an account to join the conversation.

More
21 Mar 2025 18:20 #10604 by JTP
Replied by JTP on topic spell use TRUE or FALSE
So if I use true then they can see without detect invis and False they have to have detect invis ?

Please Log in or Create an account to join the conversation.

More
21 Mar 2025 22:10 #10606 by ironfist
Replied by ironfist on topic spell use TRUE or FALSE
Yes, in theory, but it also covers imm invisibility which the potions wouldn't work on.  You'll still want to test to make sure it works as intended though :)

#define CAN_SEE(sub, obj) (SELF(sub, obj) || \
  ((GET_REAL_LEVEL(sub) >= (IS_NPC(obj) ? 0 : GET_INVIS_LEV(obj))) && \
  IMM_CAN_SEE(sub, obj)))

Please Log in or Create an account to join the conversation.

More
21 Mar 2025 22:12 #10607 by JTP
Replied by JTP on topic spell use TRUE or FALSE
Im still confused what to choose for my spell messages haha

Please Log in or Create an account to join the conversation.

More
21 Mar 2025 23:42 - 21 Mar 2025 23:43 #10610 by ironfist
Replied by ironfist on topic spell use TRUE or FALSE
The act() documentation says: hide_invisible: A TRUE or FALSE value indicating whether or not to hide the entire output from any characters that cannot see the “performing character”

All the fight.c attacks use FALSE, so I would suggest copying that unless it isn't performing how you want it to.  If you are in combat, then you'll probably be knocked visible unless you are an imm (it says an immortal instead of the name) - You'd need to test to make sure.  

from fight.c:
  /* damage message to onlookers */
  buf = replace_string(dam_weapons[msgnum].to_room,
          attack_hit_text[w_type].singular, attack_hit_text[w_type].plural);
  act(buf, FALSE, ch, NULL, victim, TO_NOTVICT);
Last edit: 21 Mar 2025 23:43 by ironfist.
The following user(s) said Thank You: JTP

Please Log in or Create an account to join the conversation.

Time to create page: 0.279 seconds