Jump to content
  • 0

Emotion Flags


Landb4Time

Question


  • Group:  Members
  • Topic Count:  32
  • Topics Per Day:  0.01
  • Content Count:  76
  • Reputation:   0
  • Joined:  01/16/12
  • Last Seen:  

My server have only 3 Emotion Flags . I wonder how can i add more ?

Please Help .. I need the sprites.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  383
  • Reputation:   109
  • Joined:  11/11/11
  • Last Seen:  

They may be already in your client but latest shortcuts don't have them. You can use this command for your server for enable all commands :

src/map/atcommand.c

/*==========================================
* @emo by OnNplay
* inspired by Anarchist
* => Displays the emotions without delay
*------------------------------------------
*/
int atcommand_emo(
  const int fd, struct map_session_data* sd,
  const char* command, const char* message)
{
  if (!message || !*message) {
clif_displaymessage(fd, "usage: @emo 1-81");
return -1;
  }
  clif_emotion(&sd->bl, atoi(message));
  return 0;
}

{ "emo",		  0,99,	 atcommand_emo },

Then recompile your server. IG you'll get an new command : @emo and 81 emoticons avaible (maybe more now ... never try to increaze the limit ...)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  32
  • Topics Per Day:  0.01
  • Content Count:  76
  • Reputation:   0
  • Joined:  01/16/12
  • Last Seen:  

is this Ctrl + 1 and so on ? The Flags ? cause i only have until 3

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  383
  • Reputation:   109
  • Joined:  11/11/11
  • Last Seen:  

Only 3 enabled in shortcuts but the client still have other flags but you can only get them by commands. Before a specific diff was recommanded for enable them but it doesn't seems exsting anymore ...

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  32
  • Topics Per Day:  0.01
  • Content Count:  76
  • Reputation:   0
  • Joined:  01/16/12
  • Last Seen:  

T . Y i will test this .

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