Jump to content

Vykimo

Members
  • Posts

    236
  • Joined

  • Last visited

  • Days Won

    21

Posts posted by Vykimo

  1. 6 hours ago, Shino58 said:

    Hi ! i have 20180813 packetver and Andro didn't work ,, he crash on map server after choose character .

    You can help me ?

    I think AndRO isn't updated for that kind of recent client.. Try with older client

  2. Hi,

    Go in npc.cpp :

    after that :

    	case NPCE_LOGIN:
    		return script_config.login_event_name;

    Add that :

    	case NPCE_USESKILL:
    		return script_config.useskill_event_name;

     

    Go in skill.cpp :

    after that :

    
    	if( sd && sd->autobonus3[0].rate ) {
    		for( i = 0; i < ARRAYLENGTH(sd->autobonus3); i++ ) {
    			if( rnd()%1000 >= sd->autobonus3[i].rate )
    				continue;
    			if( sd->autobonus3[i].atk_type != skill_id )
    				continue;
    			pc_exeautobonus(sd,&sd->autobonus3[i]);
    		}
    	}

    add :

    		npc_script_event(sd, NPCE_USESKILL);

     

     

    It should be enough.

    • Like 1
  3. Unfortunately you cannot increase content in a client packet... Because client won't be able to understand longer packet than usual.

    But if you wanna experience it, go in clif_packetdb.hpp and replace :

    packet(0x01cd,30);

    by :

    packet(0x01cd,54);

    PS : 0x1cd is the packet id.

     

    • Upvote 1
×
×
  • Create New...