Jump to content

WhiteEagle

Members
  • Posts

    488
  • Joined

  • Last visited

  • Days Won

    5

WhiteEagle last won the day on February 11

WhiteEagle had the most liked content!

5 Followers

About WhiteEagle

  • Birthday 02/20/1988

Profile Information

  • Gender
    Male
  • Location
    Germany

Recent Profile Visitors

7125 profile views

WhiteEagle's Achievements

Magmaring

Magmaring (7/15)

  • Conversation Starter
  • Problem Solver Rare
  • Reacting Well
  • First Post
  • Collaborator

Recent Badges

68

Reputation

25

Community Answers

  1. You need a client with date 2023+ if im correct.
  2. Yes, I hope that rAthena will also implement this relatively soon. The automated translation alone is interesting.
  3. Another question, can someone recommend a hex editor?
  4. do it manually. It works for me
  5. Thanks for your answer. Unfortunately, now I receive a disconnect and this error message: [Warning]: clif_parse: Unsupported packet received (packet 0x0be9, 6 bytes received), session disconnect #3.
  6. I have noticed that the chat emotes do not work. Is there a solution?
  7. Is there a way to use ^i[984] or mesitemicon in a switch(select( ?
  8. Does anyone know how to set that one storage can only store ETC items, that others can only store equipment or generally install a check, which items are allowed for a specific storage? Example: VIP storage can only store cards. IF anyone could give me a solution... that would be awesome. Thanks
  9. For this i am lookging too since month.
  10. If I am not mistaken, the custom changes must also be entered in the .lua
  11. So this would not lead to errors, but the stats would not match. For example, the def is different and weapons give “fixed” matk instead of matk rate, as is common in pre-renewal. This could confuse the players.^^
  12. You need to use a new ID. Looks like 40000 is already in use. If you want to see your default gm commands, you need to add it manually in your book info.
  13. I am also in favor of this, but I would like to see more information added that would be important for leveling. Such as race, class, size. Nice work btw.
  14. You need to edit in clif.cpp the show_mob_info part: }else if( battle_config.show_mob_info ){ PACKET_ZC_ACK_REQNAMEALL packet = { 0 }; packet.packet_id = HEADER_ZC_ACK_REQNAMEALL; packet.gid = bl->id; safestrncpy( packet.name, md->name, NAME_LENGTH ); char mobhp[50], *str_p = mobhp; if( battle_config.show_mob_info&4 ){ str_p += sprintf( str_p, "Lv. %d | ", md->level ); } if( battle_config.show_mob_info&1 ){ str_p += sprintf( str_p, "HP: %u/%u | ", md->status.hp, md->status.max_hp ); } if( battle_config.show_mob_info&2 ){ str_p += sprintf( str_p, "HP: %u%% | ", get_percentage( md->status.hp, md->status.max_hp ) ); } // Even thought mobhp ain't a name, we send it as one so the client can parse it. [Skotlex] if( str_p != mobhp ){ *(str_p-3) = '\0'; //Remove trailing space + pipe. safestrncpy( packet.party_name, mobhp, NAME_LENGTH ); } clif_send(&packet, sizeof(packet), src, target);
×
×
  • Create New...