Jump to content

WhiteEagle

Members
  • Posts

    489
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by WhiteEagle

  1. 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 ❤️

  2. 35 minutes ago, Reloadscript said:

    If you can choose:
    1- Show only icon
    2- Show element name
    3- Show element name+level
    4- Show all

    I would like to comment.

    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.

    • Love 1
  3. 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);

     

    • MVP 1
  4. 4 hours ago, AceofSpades said:

    you can make your own using photoshop..

    Of course, I could create my own icon, but I’m sorry to say I don’t have Photoshop or the skills to pixel or design it myself.
    I really like this icon, which is why I’m asking for it. It’s not like I’m asking for something complicated, like an MVP ranking system or anything like that.
    I believe I’ve contributed a lot over the past 12 years here on rAthena/Discord, sharing resources and helping others far more than I’ve asked for help myself.
    I’m politely asking for this icon, not like some people from the Philippines or Brazil who just PM on Discord with “Make me this and that.” Honestly,
    most of the time I can’t even figure out what they want because their messages are so poorly written. Even Google Translate could do a better job than what some people from the Philippines or Brazil try to write.

    Honestly, if your idea of "helping" is saying things like "check the source," then maybe it’s better not to respond if you don’t actually want to help. It’s pretty clear here—someone asked a question about an icon, and your response was, "make it yourself." That has nothing to do with the question at all.



     

  5. 39 minutes ago, Poring King said:

    Dynamic shop can do both Zeny, Item, Cash Points , Custom cashpoints . If im not mistaken he post this trend in script support so im expecting he needs a script not a MOD which is the extended vending from SRC MOD

    You still talking about NPC Shops. He ask it for Vending what is in the link above provided. ^-^ 

  6. Hello ~,
    I have the problem that when a sound is played with soundeffect and a new sound is played, the sounds overlap.
    I have not found a function to end a started sound and therefore ask if someone is so kind and could share a function for this.
    That would be extremely nice and would really help me.

×
×
  • Create New...