Jump to content
  • 0
Landb4Time

Emotion Flags

Question

4 answers to this question

Recommended Posts

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

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

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

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.