Jump to content
  • 0

clif_specialeffect Target definition?


OscarScorp

Question


  • Group:  Members
  • Topic Count:  62
  • Topics Per Day:  0.02
  • Content Count:  217
  • Reputation:   16
  • Joined:  01/28/15
  • Last Seen:  

Hello, I would like to know if anyone knows every definition of each of the targets to be sent to the client through using clif_specialeffect.
Here's the List from script_constants.hpp.
Does anyone know what each one of these do exactly?
I'm specifically looking for one which can be sent to anyone except from yourself and the members from the party you're in, but it would be nice to have every definition explained.

/* send targets */
	export_constant(ALL_CLIENT);
	export_constant(ALL_SAMEMAP);
	export_constant(AREA); // area, meaning everyone, including yourself will see it.
	export_constant(AREA_WOS); // area, except yourself
	export_constant(AREA_WOC); 
	export_constant(AREA_WOSC);
	export_constant(AREA_CHAT_WOC);
	export_constant(CHAT);
	export_constant(CHAT_WOS);
	export_constant(PARTY);
	export_constant(PARTY_WOS);
	export_constant(PARTY_SAMEMAP);
	export_constant(PARTY_SAMEMAP_WOS);
	export_constant(PARTY_AREA);
	export_constant(PARTY_AREA_WOS);
	export_constant(GUILD);
	export_constant(GUILD_WOS);
	export_constant(GUILD_SAMEMAP);
	export_constant(GUILD_SAMEMAP_WOS);
	export_constant(GUILD_AREA);
	export_constant(GUILD_AREA_WOS);
	export_constant(GUILD_NOBG);
	export_constant(DUEL);
	export_constant(DUEL_WOS);
	export_constant(SELF);
	export_constant(BG);
	export_constant(BG_WOS);
	export_constant(BG_SAMEMAP);
	export_constant(BG_SAMEMAP_WOS);
	export_constant(BG_AREA);
	export_constant(BG_AREA_WOS);
	export_constant(CLAN);

Thank you in advance ?

  • Upvote 1
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  411
  • Reputation:   259
  • Joined:  04/25/12
  • Last Seen:  

There is a comment exactly telling what you needed lul AREA_WOS. The const names are very self explanatory.

What you maybe can have doubts:

WOS = without self 

WOC = Without chatroom

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  62
  • Topics Per Day:  0.02
  • Content Count:  217
  • Reputation:   16
  • Joined:  01/28/15
  • Last Seen:  

On 6/6/2019 at 3:19 PM, Zell said:

There is a comment exactly telling what you needed lul AREA_WOS. The const names are very self explanatory.

What you maybe can have doubts:

WOS = without self 

WOC = Without chatroom

Oh ok, so there's no option for:

To everyone except yourself and your party?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  411
  • Reputation:   259
  • Joined:  04/25/12
  • Last Seen:  

36 minutes ago, OscarScorp said:

Oh ok, so there's no option for:

To everyone except yourself and your party?

This effect came from a script? You could use addrid and make the conditions check to display the effect

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  62
  • Topics Per Day:  0.02
  • Content Count:  217
  • Reputation:   16
  • Joined:  01/28/15
  • Last Seen:  

3 hours ago, Zell said:

This effect came from a script? You could use addrid and make the conditions check to display the effect

I'm showing a visual effect from Source, precisely on Status.cpp. I have a custom Status which shows a special effect very second, but I would like it to be shown only to other players, meaning party members and yourself will not see this effect.
I'm unfamiliar with addrid.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...