Landb4Time Posted February 25, 2012 Posted February 25, 2012 My server have only 3 Emotion Flags . I wonder how can i add more ? Please Help .. I need the sprites. Quote
Aerie Posted February 25, 2012 Posted February 25, 2012 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 ...) Quote
Landb4Time Posted February 25, 2012 Author Posted February 25, 2012 is this Ctrl + 1 and so on ? The Flags ? cause i only have until 3 Quote
Aerie Posted February 25, 2012 Posted February 25, 2012 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 ... Quote
Question
Landb4Time
My server have only 3 Emotion Flags . I wonder how can i add more ?
Please Help .. I need the sprites.
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.